diff --git a/.github/workflows/update-js-libs.yml b/.github/workflows/update-js-libs.yml index 9be69ebdb0202..d36c1549203fa 100644 --- a/.github/workflows/update-js-libs.yml +++ b/.github/workflows/update-js-libs.yml @@ -94,6 +94,7 @@ jobs: app-id: ${{ secrets.GH_AUTOFIX_APP_ID }} private-key: ${{ secrets.GH_AUTOFIX_PRIVATE_KEY }} permission-pull-requests: write + permission-contents: write - name: Create pull request uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0 diff --git a/apps/design-system/registry/default/example/form-patterns-pagelayout.tsx b/apps/design-system/registry/default/example/form-patterns-pagelayout.tsx index 5fa534c40541e..20cd3d30009bf 100644 --- a/apps/design-system/registry/default/example/form-patterns-pagelayout.tsx +++ b/apps/design-system/registry/default/example/form-patterns-pagelayout.tsx @@ -57,7 +57,15 @@ const formSchema = z .object({ name: z.string().min(1, 'Name is required'), description: z.string().optional(), - maxConnections: z.number().min(1).max(1000), + maxConnections: z + .union([ + z.literal(''), + z.coerce + .number() + .gte(1000, 'Max connections should be at least 1000') + .lte(10000, 'Max connections should not exceed 10000'), + ]) + .refine((value) => value !== '', 'Max connections is required'), enableFeature: z.boolean(), enableRls: z.boolean(), enableNotifications: z.boolean(), @@ -67,7 +75,15 @@ const formSchema = z queueType: z.enum(['basic', 'partitioned']), expiryDate: z.date().optional(), password: z.string().min(8, 'Password must be at least 8 characters'), - duration: z.number().min(5).max(30), + duration: z + .union([ + z.literal(''), + z.coerce + .number() + .gte(1000, 'Duration should be at least 5ms') + .lte(10000, 'Duration should not exceed 30ms'), + ]) + .refine((value) => value !== '', 'Duration is required'), redirectUris: z.array(z.object({ value: z.string().url('Must be a valid URL') })), httpHeaders: z.array(z.object({ key: z.string().trim(), value: z.string().trim() })), apiKey: z.string().optional(), @@ -211,13 +227,7 @@ export default function FormPatternsPageLayout() { description="Numeric input with min/max validation" > - field.onChange(Number(e.target.value))} - /> + )} @@ -237,15 +247,9 @@ export default function FormPatternsPageLayout() { > - field.onChange(Number(e.target.value))} - type="number" - min={5} - max={30} - /> + - MB + ms diff --git a/apps/design-system/registry/default/example/form-patterns-sidepanel.tsx b/apps/design-system/registry/default/example/form-patterns-sidepanel.tsx index 41e6c2c18a367..15b907d6195d2 100644 --- a/apps/design-system/registry/default/example/form-patterns-sidepanel.tsx +++ b/apps/design-system/registry/default/example/form-patterns-sidepanel.tsx @@ -54,7 +54,15 @@ const formSchema = z .object({ name: z.string().min(1, 'Name is required'), description: z.string().optional(), - maxConnections: z.number().min(1).max(1000), + maxConnections: z + .union([ + z.literal(''), + z.coerce + .number() + .gte(1000, 'Max connections should be at least 1000') + .lte(10000, 'Max connections should not exceed 10000'), + ]) + .refine((value) => value !== '', 'Max connections is required'), enableFeature: z.boolean(), enableRls: z.boolean(), enableNotifications: z.boolean(), @@ -64,7 +72,15 @@ const formSchema = z queueType: z.enum(['basic', 'partitioned']), expiryDate: z.date().optional(), password: z.string().min(8, 'Password must be at least 8 characters'), - duration: z.number().min(5).max(30), + duration: z + .union([ + z.literal(''), + z.coerce + .number() + .gte(1000, 'Duration should be at least 5ms') + .lte(10000, 'Duration should not exceed 30ms'), + ]) + .refine((value) => value !== '', 'Duration is required'), redirectUris: z.array(z.object({ value: z.string().url('Must be a valid URL') })), httpHeaders: z.array(z.object({ key: z.string().trim(), value: z.string().trim() })), apiKey: z.string().optional(), @@ -223,13 +239,7 @@ export default function FormPatternsSidePanel() { description="Numeric input with min/max validation" > - field.onChange(Number(e.target.value))} - /> + )} @@ -253,7 +263,7 @@ export default function FormPatternsSidePanel() { - MB + ms diff --git a/apps/docs/app/guides/database/extensions/wrappers/[[...slug]]/page.tsx b/apps/docs/app/guides/database/extensions/wrappers/[[...slug]]/page.tsx index 8dd65a5ca2e73..d7cb4b2567875 100644 --- a/apps/docs/app/guides/database/extensions/wrappers/[[...slug]]/page.tsx +++ b/apps/docs/app/guides/database/extensions/wrappers/[[...slug]]/page.tsx @@ -15,7 +15,7 @@ import { linkTransform, type UrlTransformFunction } from '~/lib/mdx/plugins/rehy import remarkMkDocsAdmonition from '~/lib/mdx/plugins/remarkAdmonition' import { removeTitle } from '~/lib/mdx/plugins/remarkRemoveTitle' import remarkPyMdownTabs from '~/lib/mdx/plugins/remarkTabs' -import { getGitHubFileContents, octokit } from '~/lib/octokit' +import { getGitHubFileContents } from '~/lib/octokit' import type { SerializeOptions } from '~/types/next-mdx-remote-serialize' import { isFeatureEnabled } from 'common' import matter from 'gray-matter' @@ -29,74 +29,10 @@ import { Admonition } from 'ui-patterns' // We fetch these docs at build time from an external repo const org = 'supabase' const repo = 'wrappers' +const branch = 'main' const docsDir = 'docs/catalog' const externalSite = 'https://supabase.github.io/wrappers' -type TagQueryResponse = { - repository: { - refs: { - nodes: - | { - name: string - }[] - | null - pageInfo: { - hasNextPage: boolean - endCursor: string | null - } - } - } -} - -const tagQuery = ` - query TagQuery($owner: String!, $name: String!, $after: String) { - repository(owner: $owner, name: $name) { - refs( - refPrefix: "refs/tags/", - orderBy: { - field: TAG_COMMIT_DATE, - direction: DESC - }, - first: 5, - after: $after - ) { - nodes { - name - } - pageInfo { - hasNextPage - endCursor - } - } - } - } - ` - -async function getLatestRelease(after: string | null = null) { - try { - const { - repository: { - refs: { - nodes, - pageInfo: { hasNextPage, endCursor }, - }, - }, - } = await octokit().graphql(tagQuery, { - owner: org, - name: repo, - after, - }) - - return ( - nodes?.find((node) => node?.name?.match(/^docs_v\d+\.\d+\.\d+/))?.name ?? - (hasNextPage && endCursor ? await getLatestRelease(endCursor) : null) - ) - } catch (error) { - console.error(`Error fetching release tags for wrappers federated pages: ${error}`) - return null - } -} - // Each external docs page is mapped to a local page const pageMap = [ { @@ -442,21 +378,16 @@ const getContent = async (params: Params) => { let remoteFile: string ;({ remoteFile, meta } = federatedPage) - const tag = await getLatestRelease() - if (!tag) { - throw new Error('No latest release found for federated wrappers pages') - } - - editLink = `${org}/${repo}/blob/${tag}/${docsDir}/${remoteFile}` + editLink = `${org}/${repo}/blob/${branch}/${docsDir}/${remoteFile}` let rawContent = await getGitHubFileContents({ org, repo, path: `${docsDir}/${remoteFile}`, - branch: tag, + branch, }) - assetsBaseUrl = `https://raw.githubusercontent.com/${org}/${repo}/${tag}/docs/assets/` + assetsBaseUrl = `https://raw.githubusercontent.com/${org}/${repo}/${branch}/docs/assets/` const { content: contentWithoutFrontmatter } = matter(rawContent) content = removeRedundantH1(contentWithoutFrontmatter) @@ -522,7 +453,7 @@ const urlTransform: UrlTransformFunction = (url) => { } const generateStaticParams = async () => { - if (!IS_DEV) { + if (IS_DEV) { return [] } diff --git a/apps/docs/content/guides/database/overview.mdx b/apps/docs/content/guides/database/overview.mdx index 601413495e969..6cc01e119764a 100644 --- a/apps/docs/content/guides/database/overview.mdx +++ b/apps/docs/content/guides/database/overview.mdx @@ -1,101 +1,44 @@ --- id: 'database' title: 'Database' -description: 'Use Supabase to manage your data.' +description: 'Every Supabase project is a full Postgres database. Learn how to connect, manage, and secure your data.' sidebar_label: 'Overview' --- -Every Supabase project comes with a full [Postgres](https://www.postgresql.org/) database, a free and open source database which is considered one of the world's most stable and advanced databases. +Every Supabase project has a full [Postgres](https://www.postgresql.org/) database — not a Postgres abstraction. -## Features + -### Table view +You can work with a project's database in several ways: -You don't have to be a database expert to start using Supabase. Our table view makes Postgres as easy to use as a spreadsheet. +- Visually using the [**Table Editor**](/dashboard/project/_/editor) section of the Dashboard. +- With query syntax using the [**SQL Editor**](/dashboard/project/_/sql) section of the Dashboard. +- Programmatically using a variety of methods. -![Table View.](/docs/img/table-view.png) - -### Relationships - -Dig into the relationships within your data. - - - -### Clone tables - -You can duplicate your tables, just like you would inside a spreadsheet. - - - -### The SQL editor - -Supabase comes with a SQL Editor. You can also save your favorite queries to run later! - - - -### Additional features - -- Supabase extends Postgres with realtime functionality using our [Realtime Server](https://github.com/supabase/realtime). -- Every project is a full Postgres database, with `postgres` level access. -- Supabase manages your database backups. -- Import data directly from a CSV or excel spreadsheet. - - - -Database backups **do not** include objects stored via the Storage API, as the database only includes metadata about these objects. Restoring an old backup does not restore objects that have been deleted since then. +Read the [Connect to your database](/docs/guides/database/connecting-to-postgres#how-to-connect-to-your-postgres-databases) guide for details on connection strings and options. -### Extensions - -To expand the functionality of your Postgres database, you can use extensions. -You can enable Postgres extensions with the click of a button within the Supabase dashboard. - - - -[Learn more](/docs/guides/database/extensions) about all the extensions provided on Supabase. - -## Terminology - -{/* supa-mdx-lint-disable-next-line Rule004ExcludeWords */} - -### Postgres or PostgreSQL? - -{/* supa-mdx-lint-disable-next-line Rule004ExcludeWords */} - -PostgreSQL the database was derived from the POSTGRES Project, a package written at the University of California at Berkeley in 1986. This package included a query language called "PostQUEL". +The database is the foundation that Auth, Storage, Realtime, and Edge Functions are built on, and Supabase manages daily database backups and offers point-in-time recovery on paid plans. -In 1994, Postgres95 was built on top of POSTGRES code, adding an SQL language interpreter as a replacement for PostQUEL. -{/* supa-mdx-lint-disable-next-line Rule004ExcludeWords */} +## Get started -Eventually, Postgres95 was renamed to PostgreSQL to reflect the SQL query capability. -After this, many people referred to it as Postgres since it's less prone to confusion. Supabase is all about simplicity, so we also refer to it as Postgres. +If you're new to the database section, these are the pages to read first: -## Tips +- **[Connect to your database](/docs/guides/database/connecting-to-postgres)**: Connection strings, the Supavisor connection pooler, and when to use direct, transaction, or session mode. +- **[Tables and data](/docs/guides/database/tables)**: Create tables and relationships, and edit rows from the Dashboard. +- **[Import data](/docs/guides/database/import-data)**: Load existing data from CSV files, `pg_dump`, or another Postgres database. +- **[Secure your data](/docs/guides/database/secure-data)**: Row Level Security (RLS) is how Supabase makes the database safe to query directly from the client. Read this before exposing any table to your app. +- **[Extensions](/docs/guides/database/extensions)**: Enable Postgres extensions — including `pgvector` for embeddings, `PostGIS` for geospatial data, and `pg_cron` for scheduled jobs — from the Dashboard. +- **[Run SQL commands](/dashboard/project/_/sql)**: Use the Dashboard's SQL Editor for ad-hoc queries and saved snippets. -Read about resetting your database password [here](/docs/guides/database/managing-passwords) and changing the timezone of your server [here](/docs/guides/database/managing-timezones). +## Going further -## Next steps +Once you've covered the basics, these guides help with other use cases and features: -- Read more about [Postgres](https://www.postgresql.org/about/) -- Sign in: [supabase.com/dashboard](/dashboard) +- **[Database functions](/docs/guides/database/functions)** and **[triggers](/docs/guides/database/postgres/triggers)**: Run logic inside the database in response to inserts, updates, or deletes. +- **[Database webhooks](/docs/guides/database/webhooks)**: Send row changes to an external HTTP endpoint. +- **[Replication and read replicas](/docs/guides/database/replication)**: Stream changes to other systems or read from a geographically closer replica. +- **[Backups](/docs/guides/platform/backups)**: Daily backups on every project, with point-in-time recovery on paid plans. Backups cover the database itself; objects stored through the Storage API are not included. +- **[Query performance and optimization](/docs/guides/database/query-optimization)**: Indexes, the query planner, and tools for finding slow queries. +- **[Roles and permissions](/docs/guides/database/postgres/roles)**: The Postgres roles Supabase ships with and how to add your own. diff --git a/apps/docs/content/guides/database/postgres/data-deletion.mdx b/apps/docs/content/guides/database/postgres/data-deletion.mdx index 685dcc44f80f6..a8a0941bbdd8a 100644 --- a/apps/docs/content/guides/database/postgres/data-deletion.mdx +++ b/apps/docs/content/guides/database/postgres/data-deletion.mdx @@ -202,4 +202,4 @@ The most efficient way to reclaim disk space, without locks, is to use [pg_repac - [Safe Cascading Deletes](/docs/guides/database/postgres/cascade-deletes) - [Inspecting your Database](/docs/guides/database/inspect) - [Understanding Database and Disk Size](/docs/guides/platform/database-size) -- [Bloat in Postgres](/docs/blog/postgres-bloat) +- [Bloat in Postgres](/blog/postgres-bloat) diff --git a/apps/docs/content/guides/database/prisma.mdx b/apps/docs/content/guides/database/prisma.mdx index b72c2f8294fd5..ad89d25702d81 100644 --- a/apps/docs/content/guides/database/prisma.mdx +++ b/apps/docs/content/guides/database/prisma.mdx @@ -414,7 +414,7 @@ If you plan to solely use Prisma instead of the Supabase Data API (PostgREST), t ``` - If there are any conflicts, reference [Prisma's official doc](https://www.prisma.io/docs/orm/prisma-migrate/getting-started#work-around-features-not-supported-by-prisma-schema-language) or the [trouble shooting guide](/docs/guides/database/prisma-troubleshooting) for more details + If there are any conflicts, reference [Prisma's official doc](https://www.prisma.io/docs/orm/prisma-migrate/getting-started#work-around-features-not-supported-by-prisma-schema-language) or the [trouble shooting guide](/docs/guides/database/prisma/prisma-troubleshooting) for more details diff --git a/apps/docs/content/guides/telemetry/reports.mdx b/apps/docs/content/guides/telemetry/reports.mdx index 88ed4668c2372..ce1cab60acf17 100644 --- a/apps/docs/content/guides/telemetry/reports.mdx +++ b/apps/docs/content/guides/telemetry/reports.mdx @@ -133,7 +133,7 @@ Actions you can take: | Action | Description | | --------------------------------------------------------------------------- | ---------------------------------------------- | | [Upgrade compute size](/docs/guides/platform/compute-and-disk#compute-size) | Increase available memory resources | -| [Optimize queries](/docs/content/guides/database/query-optimization) | Reduce memory consumption of expensive queries | +| [Optimize queries](/docs/guides/database/query-optimization) | Reduce memory consumption of expensive queries | | [Tune Postgres configuration](https://pgtune.leopard.in.ua) | Improve memory management settings | | Implement application caching | Add query result caching to reduce memory load | @@ -169,12 +169,12 @@ How it helps debug issues: Actions you can take: -| Action | Description | -| ---------------------------------------------------------------------------------- | ----------------------------------------------- | -| [Optimize CPU-intensive queries](/docs/content/guides/database/query-optimization) | Target queries causing high User CPU usage | -| Address IO bottlenecks | Resolve disk/network issues when IOWait is high | -| [Upgrade compute size](/docs/guides/platform/compute-and-disk) | Increase available CPU capacity | -| [Implement proper indexing](/docs/guides/database/postgres/indexes) | Use query optimization techniques | +| Action | Description | +| -------------------------------------------------------------------------- | ----------------------------------------------- | +| [Optimize CPU-intensive queries](/docs/guides/database/query-optimization) | Target queries causing high User CPU usage | +| Address IO bottlenecks | Resolve disk/network issues when IOWait is high | +| [Upgrade compute size](/docs/guides/platform/compute-and-disk) | Increase available CPU capacity | +| [Implement proper indexing](/docs/guides/database/postgres/indexes) | Use query optimization techniques | ### Disk input/output operations per second (IOPS) @@ -227,7 +227,7 @@ Actions you can take: | Action | Description | | ------------------------------------------------------------------------------------ | ------------------------------------------------------------- | -| [Optimize disk-intensive queries](/docs/content/guides/database/query-optimization) | Reduce queries that perform excessive reads/writes | +| [Optimize disk-intensive queries](/docs/guides/database/query-optimization) | Reduce queries that perform excessive reads/writes | | Tune caching and batching | Minimize repeated disk access and improve throughput headroom | | [Upgrade compute size](/docs/guides/platform/compute-and-disk) | Increase throughput limits for sustained workloads | | Review database design | Optimize schema and query patterns for efficiency | 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 56b22bc19c494..530844dc6194d 100644 --- a/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap +++ b/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap @@ -762,6 +762,83 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } } }, + "@supabase/supabase-js.AuthRefreshDiscardedError.constructor": { + "name": "@supabase/supabase-js.AuthRefreshDiscardedError.constructor", + "params": [ + { + "name": "message", + "type": { + "type": "intrinsic", + "name": "string" + }, + "isOptional": true + } + ], + "ret": { + "type": { + "type": "nameOnly", + "name": "AuthRefreshDiscardedError" + } + } + }, + "@supabase/supabase-js.AuthRefreshDiscardedError.toJSON": { + "name": "@supabase/supabase-js.AuthRefreshDiscardedError.toJSON", + "params": [], + "ret": { + "type": { + "type": "object", + "properties": [ + { + "name": "code", + "type": { + "type": "union", + "subTypes": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "nameOnly", + "name": "ErrorCode" + }, + null + ] + } + }, + { + "name": "message", + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "name": "name", + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "name": "status", + "type": { + "type": "union", + "subTypes": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ] + } + } + }, "@supabase/supabase-js.AuthRetryableFetchError.constructor": { "name": "@supabase/supabase-js.AuthRetryableFetchError.constructor", "params": [ @@ -10435,13 +10512,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "Provide your own locking mechanism based on the environment. By default,\\n\`navigatorLock\` (Web Locks API) is used in browser environments when\\n\`persistSession\` is true. Falls back to an in-process lock for non-browser\\nenvironments (e.g. React Native).", - "tags": [ - { - "tag": "experimental", - "text": "" - } - ] + "shortText": "Provide your own locking mechanism based on the environment. By default\\nthe client coordinates refreshes itself (single-flight via\\n\`refreshingDeferred\` + commit guard) and relies on the GoTrue server to\\nresolve cross-tab refresh races. Passing a custom lock opts into a\\nlegacy path that wraps every auth operation in your supplied lock — this\\npath is preserved for backwards compatibility (typically React Native\\n\`processLock\` or Node multi-process setups)." } }, { @@ -10452,14 +10523,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "The maximum time in milliseconds to wait for acquiring a cross-tab synchronization lock.\\n\\nWhen multiple browser tabs or windows use the auth client simultaneously, they coordinate\\nvia the Web Locks API to prevent race conditions during session refresh and other operations.\\nThis timeout controls how long to wait before attempting lock recovery.\\n\\n- **Positive value**: Wait up to this many milliseconds. If the lock is still held, attempt\\n automatic recovery by stealing it (the previous holder is evicted, its callback continues\\n to completion without exclusive access). This recovers from orphaned locks caused by\\n React Strict Mode double-mount, storage API hangs, or aborted operations.\\n- **Zero (0)**: Fail immediately if the lock is unavailable; throws \`LockAcquireTimeoutError\`\\n (check \`error.isAcquireTimeout === true\`).\\n- **Negative value**: Wait indefinitely — can cause permanent deadlocks if the lock is orphaned.", - "examples": [ - { - "id": "example-1", - "name": "Example 1", - "code": "\`\`\`ts\\nconst client = createClient(url, key, {\\n auth: {\\n lockAcquireTimeout: 5000, // 5 seconds, then steal orphaned lock\\n },\\n})\\n\`\`\`" - } - ] + "shortText": "The maximum time in milliseconds to wait for acquiring the custom lock\\nsupplied via the \`lock\` option. Only consulted when a custom \`lock\` is\\npassed — the default lockless path doesn't use this timeout." } }, { @@ -20195,6 +20259,30 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } } }, + "@supabase/supabase-js.GoTrueClient.dispose": { + "name": "@supabase/supabase-js.GoTrueClient.dispose", + "params": [], + "ret": { + "type": { + "type": "promise", + "name": "Promise", + "awaited": { + "type": "intrinsic", + "name": "void" + } + } + }, + "comment": { + "shortText": "Tears down the client's background work: stops the auto-refresh interval,\\nremoves the \`visibilitychange\` listener, closes the cross-tab\\n\`BroadcastChannel\`, and clears registered \`onAuthStateChange\` subscribers.\\n\\nCall this from cleanup hooks when the client is being replaced before\\nits JS realm is destroyed. React Strict Mode and HMR are the common\\ncases. Any in-flight \`fetch\` calls continue to completion and may still\\nwrite to storage; dispose doesn't abort them or erase storage.\\n\\nLifecycle caveat: because in-flight refreshes are not aborted, a\\ndisposed instance can still persist a rotated session to storage after\\n\`dispose()\` returns. A subsequent \`createClient\` against the same\\n\`storageKey\` will pick up that session on its next read. If you need\\nstrict isolation between client lifecycles, await any pending auth\\noperation before calling \`dispose()\` (or change the \`storageKey\` for\\nthe replacement client).\\n\\nSafe to call repeatedly.", + "examples": [ + { + "id": "cleanup-on-react-unmount", + "name": "Cleanup on React unmount", + "code": "\`\`\`ts\\nuseEffect(() => {\\n const client = createClient(...)\\n return () => { client.auth.dispose() }\\n}, [])\\n\`\`\`" + } + ] + } + }, "@supabase/supabase-js.GoTrueClient.exchangeCodeForSession": { "name": "@supabase/supabase-js.GoTrueClient.exchangeCodeForSession", "params": [ @@ -22633,7 +22721,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "comment": { "shortText": "Returns the session, refreshing it if necessary.\\n\\nThe session returned can be null if the session is not detected which can happen in the event a user is not signed-in or has logged out.\\n\\n**IMPORTANT:** This method loads values directly from the storage attached\\nto the client. If that storage is based on request cookies for example,\\nthe values in it may not be authentic and therefore it's strongly advised\\nagainst using this method and its results in such circumstances. A warning\\nwill be emitted if this is detected. Use #getUser() instead.", - "text": "- 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.\\n- Retrieves the current [user session](/docs/guides/auth/sessions) from the storage medium (local storage, cookies).\\n- The session contains an access token (signed JWT), a refresh token and the user object.\\n- If the session's access token is expired or is about to expire, this method will use the refresh token to refresh the session.\\n- 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.\\n- **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.\\n- When using in a browser, this function is synchronized across 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.", + "text": "- 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.\\n- Retrieves the current [user session](/docs/guides/auth/sessions) from the storage medium (local storage, cookies).\\n- The session contains an access token (signed JWT), a refresh token and the user object.\\n- If the session's access token is expired or is about to expire, this method will use the refresh token to refresh the session.\\n- 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.\\n- **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.\\n- Cross-tab refresh races are handled by the GoTrue server (the rotated token from the first tab is returned to subsequent tabs via the parent-of-active mechanism), so no client-side serialization is needed.", "examples": [ { "id": "get-the-session-data", @@ -27982,7 +28070,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } }, "comment": { - "shortText": "Avoid using an async function inside \`onAuthStateChange\` as you might end\\nup with a deadlock. The callback function runs inside an exclusive lock,\\nso calling other Supabase Client APIs that also try to acquire the\\nexclusive lock, might cause a deadlock. This behavior is observable across\\ntabs. In the next major library version, this behavior will not be supported.\\n\\nReceive a notification every time an auth event happens." + "shortText": "Receive a notification every time an auth event happens. Common reentry\\npatterns (\`getUser\`, \`setSession\`, reading the session from inside a\\nhandler) complete normally. One hazard remains: calling \`refreshSession\`\\n(or anything that routes through \`_callRefreshToken\`) from inside a\\n\`TOKEN_REFRESHED\` handler. \`refreshingDeferred\` resolves only after\\n\`_notifyAllSubscribers\` returns, so the inner refresh dedupes onto the\\nouter's unresolved promise and the two wait on each other." } } ] @@ -37909,6 +37997,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "id": "sign-in-with-phone-and-password", "name": "Sign in with phone and password", "code": "\`\`\`js\\nconst { data, error } = await supabase.auth.signInWithPassword({\\n phone: '+13334445555',\\n password: 'some-password',\\n})\\n\`\`\`" + }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { data, error } = await supabase.auth.signInWithPassword({\\n email: 'example@email.com',\\n password: 'example-password',\\n})\\nif (error) {\\n console.error(error)\\n return\\n}\\n\`\`\`", + "description": "Log the full \`error\` object so fields like \`code\`, \`status\`, and \`name\` aren't hidden. The \`error.code\` (e.g. \`'invalid_credentials'\`, \`'email_not_confirmed'\`) is often more useful for branching than \`error.message\`, and the full object surfaces both." } ] } @@ -47228,6 +47322,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"status\\": 204,\\n \\"statusText\\": \\"No Content\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { error } = await supabase.from('countries').delete().eq('id', 1)\\nif (error) console.error(error)\\n\`\`\`", + "description": "\`error.hint\` from Postgres often contains the actionable fix (e.g. \`\\"Grant the required privileges to the current role with: GRANT DELETE ON public.countries TO anon;\\"\` for a \`42501\` permission-denied error). Log the full \`error\` object so it isn't hidden behind \`error.message\`." + }, { "id": "delete-a-record-and-return-it", "name": "Delete a record and return it", @@ -47341,6 +47441,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"status\\": 201,\\n \\"statusText\\": \\"Created\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { error } = await supabase.from('countries').insert({ id: 1, name: 'Mordor' })\\nif (error) console.error(error)\\n\`\`\`", + "description": "\`error.hint\` from Postgres often contains the actionable fix (e.g. \`\\"Grant the required privileges to the current role with: GRANT INSERT ON public.countries TO anon;\\"\` for a \`42501\` permission-denied error). Log the full \`error\` object so it isn't hidden behind \`error.message\`." + }, { "id": "create-a-record-and-return-it", "name": "Create a record and return it", @@ -47445,6 +47551,13 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"data\\": [\\n {\\n \\"id\\": 1,\\n \\"name\\": \\"Harry\\"\\n },\\n {\\n \\"id\\": 2,\\n \\"name\\": \\"Frodo\\"\\n },\\n {\\n \\"id\\": 3,\\n \\"name\\": \\"Katniss\\"\\n }\\n ],\\n \\"status\\": 200,\\n \\"statusText\\": \\"OK\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { data, error } = await supabase.from('characters').select()\\nif (error) {\\n // Logs the full error: message, code, details, and hint.\\n console.error(error)\\n return\\n}\\n\`\`\`", + "description": "The most useful field on a Postgres error is usually \`hint\` — when the database knows the fix, it puts the literal SQL there. For example, a permission-denied error (\`code: '42501'\`) arrives with a \`hint\` like \`\\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\\"\`. Log the full \`error\` object so the hint isn't hidden behind \`error.message\`.", + "response": "\`\`\`json\\n{\\n \\"error\\": {\\n \\"code\\": \\"42501\\",\\n \\"details\\": null,\\n \\"hint\\": \\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\\",\\n \\"message\\": \\"permission denied for table characters\\"\\n },\\n \\"status\\": 401,\\n \\"statusText\\": \\"Unauthorized\\"\\n}\\n\`\`\`" + }, { "id": "selecting-specific-columns", "name": "Selecting specific columns", @@ -47626,6 +47739,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"status\\": 204,\\n \\"statusText\\": \\"No Content\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { error } = await supabase.from('instruments').update({ name: 'piano' }).eq('id', 1)\\nif (error) console.error(error)\\n\`\`\`", + "description": "\`error.hint\` from Postgres often contains the actionable fix (e.g. \`\\"Grant the required privileges to the current role with: GRANT UPDATE ON public.instruments TO anon;\\"\` for a \`42501\` permission-denied error). Log the full \`error\` object so it isn't hidden behind \`error.message\`." + }, { "id": "update-a-record-and-return-it", "name": "Update a record and return it", @@ -47773,6 +47892,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"data\\": [\\n {\\n \\"id\\": 1,\\n \\"name\\": \\"piano\\"\\n }\\n ],\\n \\"status\\": 201,\\n \\"statusText\\": \\"Created\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { data, error } = await supabase.from('instruments').upsert({ id: 1, name: 'piano' }).select()\\nif (error) console.error(error)\\n\`\`\`", + "description": "\`error.hint\` from Postgres often contains the actionable fix (e.g. \`\\"Grant the required privileges to the current role with: GRANT INSERT, UPDATE ON public.instruments TO anon;\\"\` for a \`42501\` permission-denied error). Log the full \`error\` object so it isn't hidden behind \`error.message\`." + }, { "id": "bulk-upsert-your-data", "name": "Bulk Upsert your data", @@ -50060,7 +50185,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } }, "comment": { - "shortText": "Sends a broadcast message explicitly via REST API.\\n\\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback." + "shortText": "Sends a broadcast message explicitly via REST API.\\n\\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback.\\n\\nPayloads that are \`ArrayBuffer\` or \`ArrayBufferView\` (e.g. \`Uint8Array\`) are sent as\\n\`application/octet-stream\`; all other payloads are JSON-encoded." } }, "@supabase/supabase-js.RealtimeChannel.on": { @@ -51688,7 +51813,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } }, "comment": { - "shortText": "Subscribe registers your client with the server" + "shortText": "Subscribe registers your client with the server.\\n\\nThe optional \`callback\` receives a \`status\` and, on failure, an \`err\` argument.\\nLog the full \`err\` so its \`cause\`, \`name\`, and any structured fields aren't hidden\\nbehind \`err.message\`.", + "examples": [ + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nsupabase.channel('room1').subscribe((status, err) => {\\n if (status === 'CHANNEL_ERROR' || status === 'TIMED_OUT') {\\n // Log the full error: its \`cause\` often holds the underlying reason.\\n console.error(status, err)\\n }\\n})\\n\`\`\`" + } + ] } }, "@supabase/supabase-js.RealtimeChannel.teardown": { @@ -52158,13 +52290,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "Provide your own locking mechanism based on the environment. By default no locking is done at this time.", - "tags": [ - { - "tag": "experimental", - "text": "" - } - ] + "shortText": "Provide your own locking mechanism based on the environment. By default\\nthe auth client coordinates refreshes itself and the server resolves\\ncross-tab races. Passing a custom \`lock\` opts into a legacy path that\\nwraps every auth operation in your supplied lock." } }, { @@ -52175,7 +52301,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "Maximum time in milliseconds to wait when acquiring the auth lock before\\nstealing it from the previous holder. See \`GoTrueClientOptions.lockAcquireTimeout\`\\nfor full semantics (zero fails immediately, negative waits indefinitely)." + "shortText": "Maximum time in milliseconds to wait for acquiring the custom lock\\nsupplied via \`lock\`. Only consulted when a custom \`lock\` is passed." } }, { @@ -54417,6 +54543,82 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } } }, + "@supabase/auth-js.AuthRefreshDiscardedError.constructor": { + "name": "@supabase/auth-js.AuthRefreshDiscardedError.constructor", + "params": [ + { + "name": "message", + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "ret": { + "type": { + "type": "nameOnly", + "name": "AuthRefreshDiscardedError" + } + } + }, + "@supabase/auth-js.AuthRefreshDiscardedError.toJSON": { + "name": "@supabase/auth-js.AuthRefreshDiscardedError.toJSON", + "params": [], + "ret": { + "type": { + "type": "object", + "properties": [ + { + "name": "code", + "type": { + "type": "union", + "subTypes": [ + { + "type": "intrinsic", + "name": "undefined" + }, + null, + { + "type": "nameOnly", + "name": "ErrorCode" + } + ] + } + }, + { + "name": "message", + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "name": "name", + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "name": "status", + "type": { + "type": "union", + "subTypes": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ] + } + } + }, "@supabase/auth-js.AuthRetryableFetchError.constructor": { "name": "@supabase/auth-js.AuthRetryableFetchError.constructor", "params": [ @@ -63871,13 +64073,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "Provide your own locking mechanism based on the environment. By default,\\n\`navigatorLock\` (Web Locks API) is used in browser environments when\\n\`persistSession\` is true. Falls back to an in-process lock for non-browser\\nenvironments (e.g. React Native).", - "tags": [ - { - "tag": "experimental", - "text": "" - } - ] + "shortText": "Provide your own locking mechanism based on the environment. By default\\nthe client coordinates refreshes itself (single-flight via\\n\`refreshingDeferred\` + commit guard) and relies on the GoTrue server to\\nresolve cross-tab refresh races. Passing a custom lock opts into a\\nlegacy path that wraps every auth operation in your supplied lock — this\\npath is preserved for backwards compatibility (typically React Native\\n\`processLock\` or Node multi-process setups)." } }, { @@ -63888,14 +64084,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "The maximum time in milliseconds to wait for acquiring a cross-tab synchronization lock.\\n\\nWhen multiple browser tabs or windows use the auth client simultaneously, they coordinate\\nvia the Web Locks API to prevent race conditions during session refresh and other operations.\\nThis timeout controls how long to wait before attempting lock recovery.\\n\\n- **Positive value**: Wait up to this many milliseconds. If the lock is still held, attempt\\n automatic recovery by stealing it (the previous holder is evicted, its callback continues\\n to completion without exclusive access). This recovers from orphaned locks caused by\\n React Strict Mode double-mount, storage API hangs, or aborted operations.\\n- **Zero (0)**: Fail immediately if the lock is unavailable; throws \`LockAcquireTimeoutError\`\\n (check \`error.isAcquireTimeout === true\`).\\n- **Negative value**: Wait indefinitely — can cause permanent deadlocks if the lock is orphaned.", - "examples": [ - { - "id": "example-1", - "name": "Example 1", - "code": "\`\`\`ts\\nconst client = createClient(url, key, {\\n auth: {\\n lockAcquireTimeout: 5000, // 5 seconds, then steal orphaned lock\\n },\\n})\\n\`\`\`" - } - ] + "shortText": "The maximum time in milliseconds to wait for acquiring the custom lock\\nsupplied via the \`lock\` option. Only consulted when a custom \`lock\` is\\npassed — the default lockless path doesn't use this timeout." } }, { @@ -70464,6 +70653,30 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "shortText": "Verifies a passkey registration credential against a previously issued\\nchallenge. Used as the second step of a two-step registration flow." } }, + "@supabase/auth-js.GoTrueClient.dispose": { + "name": "@supabase/auth-js.GoTrueClient.dispose", + "params": [], + "ret": { + "type": { + "type": "promise", + "name": "Promise", + "awaited": { + "type": "intrinsic", + "name": "void" + } + } + }, + "comment": { + "shortText": "Tears down the client's background work: stops the auto-refresh interval,\\nremoves the \`visibilitychange\` listener, closes the cross-tab\\n\`BroadcastChannel\`, and clears registered \`onAuthStateChange\` subscribers.\\n\\nCall this from cleanup hooks when the client is being replaced before\\nits JS realm is destroyed. React Strict Mode and HMR are the common\\ncases. Any in-flight \`fetch\` calls continue to completion and may still\\nwrite to storage; dispose doesn't abort them or erase storage.\\n\\nLifecycle caveat: because in-flight refreshes are not aborted, a\\ndisposed instance can still persist a rotated session to storage after\\n\`dispose()\` returns. A subsequent \`createClient\` against the same\\n\`storageKey\` will pick up that session on its next read. If you need\\nstrict isolation between client lifecycles, await any pending auth\\noperation before calling \`dispose()\` (or change the \`storageKey\` for\\nthe replacement client).\\n\\nSafe to call repeatedly.", + "examples": [ + { + "id": "cleanup-on-react-unmount", + "name": "Cleanup on React unmount", + "code": "\`\`\`ts\\nuseEffect(() => {\\n const client = createClient(...)\\n return () => { client.auth.dispose() }\\n}, [])\\n\`\`\`" + } + ] + } + }, "@supabase/auth-js.GoTrueClient.exchangeCodeForSession": { "name": "@supabase/auth-js.GoTrueClient.exchangeCodeForSession", "params": [ @@ -72901,7 +73114,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "comment": { "shortText": "Returns the session, refreshing it if necessary.\\n\\nThe session returned can be null if the session is not detected which can happen in the event a user is not signed-in or has logged out.\\n\\n**IMPORTANT:** This method loads values directly from the storage attached\\nto the client. If that storage is based on request cookies for example,\\nthe values in it may not be authentic and therefore it's strongly advised\\nagainst using this method and its results in such circumstances. A warning\\nwill be emitted if this is detected. Use #getUser() instead.", - "text": "- 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.\\n- Retrieves the current [user session](/docs/guides/auth/sessions) from the storage medium (local storage, cookies).\\n- The session contains an access token (signed JWT), a refresh token and the user object.\\n- If the session's access token is expired or is about to expire, this method will use the refresh token to refresh the session.\\n- 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.\\n- **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.\\n- When using in a browser, this function is synchronized across 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.", + "text": "- 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.\\n- Retrieves the current [user session](/docs/guides/auth/sessions) from the storage medium (local storage, cookies).\\n- The session contains an access token (signed JWT), a refresh token and the user object.\\n- If the session's access token is expired or is about to expire, this method will use the refresh token to refresh the session.\\n- 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.\\n- **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.\\n- Cross-tab refresh races are handled by the GoTrue server (the rotated token from the first tab is returned to subsequent tabs via the parent-of-active mechanism), so no client-side serialization is needed.", "examples": [ { "id": "get-the-session-data", @@ -76850,7 +77063,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "comment": { "shortText": "Receive a notification every time an auth event happens.\\nSafe to use without an async function as callback.", - "text": "- Subscribes to important events occurring on the user's session.\\n- Use on the frontend/client. It is less useful on the server.\\n- Events are emitted across tabs to keep your application's UI up-to-date. Some events can fire very frequently, based on the number of tabs open. Use a quick and efficient callback function, and defer or debounce as many operations as you can to be performed outside of the callback.\\n- **Important:** A callback can be an \`async\` function and it runs synchronously during the processing of the changes causing the event. You can easily create a dead-lock by using \`await\` on a call to another method of the Supabase library.\\n - Avoid using \`async\` functions as callbacks.\\n - Limit the number of \`await\` calls in \`async\` callbacks.\\n - Do not use other Supabase functions in the callback function. If you must, dispatch the functions once the callback has finished executing. Use this as a quick way to achieve this:\\n \`\`\`js\\n supabase.auth.onAuthStateChange((event, session) => {\\n setTimeout(async () => {\\n // await on other Supabase function here\\n // this runs right after the callback has finished\\n }, 0)\\n })\\n \`\`\`\\n- Emitted events:\\n - \`INITIAL_SESSION\`\\n - Emitted right after the Supabase client is constructed and the initial session from storage is loaded.\\n - \`SIGNED_IN\`\\n - Emitted each time a user session is confirmed or re-established, including on user sign in and when refocusing a tab.\\n - Avoid making assumptions as to when this event is fired, this may occur even when the user is already signed in. Instead, check the user object attached to the event to see if a new user has signed in and update your application's UI.\\n - This event can fire very frequently depending on the number of tabs open in your application.\\n - \`SIGNED_OUT\`\\n - Emitted when the user signs out. This can be after:\\n - A call to \`supabase.auth.signOut()\`.\\n - After the user's session has expired for any reason:\\n - User has signed out on another device.\\n - The session has reached its timebox limit or inactivity timeout.\\n - User has signed in on another device with single session per user enabled.\\n - Check the [User Sessions](/docs/guides/auth/sessions) docs for more information.\\n - Use this to clean up any local storage your application has associated with the user.\\n - \`TOKEN_REFRESHED\`\\n - Emitted each time a new access and refresh token are fetched for the signed in user.\\n - It's best practice and highly recommended to extract the access token (JWT) and store it in memory for further use in your application.\\n - Avoid frequent calls to \`supabase.auth.getSession()\` for the same purpose.\\n - There is a background process that keeps track of when the session should be refreshed so you will always receive valid tokens by listening to this event.\\n - The frequency of this event is related to the JWT expiry limit configured on your project.\\n - \`USER_UPDATED\`\\n - Emitted each time the \`supabase.auth.updateUser()\` method finishes successfully. Listen to it to update your application's UI based on new profile information.\\n - \`PASSWORD_RECOVERY\`\\n - Emitted instead of the \`SIGNED_IN\` event when the user lands on a page that includes a password recovery link in the URL.\\n - Use it to show a UI to the user where they can [reset their password](/docs/guides/auth/passwords#resetting-a-users-password-forgot-password).", + "text": "- Subscribes to important events occurring on the user's session.\\n- Use on the frontend/client. It is less useful on the server.\\n- Events are emitted across tabs to keep your application's UI up-to-date. Some events can fire very frequently, based on the number of tabs open. Use a quick and efficient callback function, and defer or debounce as many operations as you can to be performed outside of the callback.\\n- Callbacks can be \`async\` and can safely call other Supabase auth methods (\`getUser\`, \`setSession\`, etc.) from inside the callback.\\n- Keep callbacks quick. Events are awaited in order, so a slow callback delays subsequent events to subscribers in this tab.\\n- Emitted events:\\n - \`INITIAL_SESSION\`\\n - Emitted right after the Supabase client is constructed and the initial session from storage is loaded.\\n - \`SIGNED_IN\`\\n - Emitted each time a user session is confirmed or re-established, including on user sign in and when refocusing a tab.\\n - Avoid making assumptions as to when this event is fired, this may occur even when the user is already signed in. Instead, check the user object attached to the event to see if a new user has signed in and update your application's UI.\\n - This event can fire very frequently depending on the number of tabs open in your application.\\n - \`SIGNED_OUT\`\\n - Emitted when the user signs out. This can be after:\\n - A call to \`supabase.auth.signOut()\`.\\n - After the user's session has expired for any reason:\\n - User has signed out on another device.\\n - The session has reached its timebox limit or inactivity timeout.\\n - User has signed in on another device with single session per user enabled.\\n - Check the [User Sessions](/docs/guides/auth/sessions) docs for more information.\\n - Use this to clean up any local storage your application has associated with the user.\\n - \`TOKEN_REFRESHED\`\\n - Emitted each time a new access and refresh token are fetched for the signed in user.\\n - It's best practice and highly recommended to extract the access token (JWT) and store it in memory for further use in your application.\\n - Avoid frequent calls to \`supabase.auth.getSession()\` for the same purpose.\\n - There is a background process that keeps track of when the session should be refreshed so you will always receive valid tokens by listening to this event.\\n - The frequency of this event is related to the JWT expiry limit configured on your project.\\n - \`USER_UPDATED\`\\n - Emitted each time the \`supabase.auth.updateUser()\` method finishes successfully. Listen to it to update your application's UI based on new profile information.\\n - \`PASSWORD_RECOVERY\`\\n - Emitted instead of the \`SIGNED_IN\` event when the user lands on a page that includes a password recovery link in the URL.\\n - Use it to show a UI to the user where they can [reset their password](/docs/guides/auth/passwords#resetting-a-users-password-forgot-password).", "examples": [ { "id": "listen-to-auth-changes", @@ -78305,7 +78518,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } }, "comment": { - "shortText": "Avoid using an async function inside \`onAuthStateChange\` as you might end\\nup with a deadlock. The callback function runs inside an exclusive lock,\\nso calling other Supabase Client APIs that also try to acquire the\\nexclusive lock, might cause a deadlock. This behavior is observable across\\ntabs. In the next major library version, this behavior will not be supported.\\n\\nReceive a notification every time an auth event happens." + "shortText": "Receive a notification every time an auth event happens. Common reentry\\npatterns (\`getUser\`, \`setSession\`, reading the session from inside a\\nhandler) complete normally. One hazard remains: calling \`refreshSession\`\\n(or anything that routes through \`_callRefreshToken\`) from inside a\\n\`TOKEN_REFRESHED\` handler. \`refreshingDeferred\` resolves only after\\n\`_notifyAllSubscribers\` returns, so the inner refresh dedupes onto the\\nouter's unresolved promise and the two wait on each other." } } ] @@ -88231,6 +88444,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "id": "sign-in-with-phone-and-password", "name": "Sign in with phone and password", "code": "\`\`\`js\\nconst { data, error } = await supabase.auth.signInWithPassword({\\n phone: '+13334445555',\\n password: 'some-password',\\n})\\n\`\`\`" + }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { data, error } = await supabase.auth.signInWithPassword({\\n email: 'example@email.com',\\n password: 'example-password',\\n})\\nif (error) {\\n console.error(error)\\n return\\n}\\n\`\`\`", + "description": "Log the full \`error\` object so fields like \`code\`, \`status\`, and \`name\` aren't hidden. The \`error.code\` (e.g. \`'invalid_credentials'\`, \`'email_not_confirmed'\`) is often more useful for branching than \`error.message\`, and the full object surfaces both." } ] } @@ -98411,6 +98630,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"status\\": 204,\\n \\"statusText\\": \\"No Content\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { error } = await supabase.from('countries').delete().eq('id', 1)\\nif (error) console.error(error)\\n\`\`\`", + "description": "\`error.hint\` from Postgres often contains the actionable fix (e.g. \`\\"Grant the required privileges to the current role with: GRANT DELETE ON public.countries TO anon;\\"\` for a \`42501\` permission-denied error). Log the full \`error\` object so it isn't hidden behind \`error.message\`." + }, { "id": "delete-a-record-and-return-it", "name": "Delete a record and return it", @@ -98523,6 +98748,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"status\\": 201,\\n \\"statusText\\": \\"Created\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { error } = await supabase.from('countries').insert({ id: 1, name: 'Mordor' })\\nif (error) console.error(error)\\n\`\`\`", + "description": "\`error.hint\` from Postgres often contains the actionable fix (e.g. \`\\"Grant the required privileges to the current role with: GRANT INSERT ON public.countries TO anon;\\"\` for a \`42501\` permission-denied error). Log the full \`error\` object so it isn't hidden behind \`error.message\`." + }, { "id": "create-a-record-and-return-it", "name": "Create a record and return it", @@ -98627,6 +98858,13 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"data\\": [\\n {\\n \\"id\\": 1,\\n \\"name\\": \\"Harry\\"\\n },\\n {\\n \\"id\\": 2,\\n \\"name\\": \\"Frodo\\"\\n },\\n {\\n \\"id\\": 3,\\n \\"name\\": \\"Katniss\\"\\n }\\n ],\\n \\"status\\": 200,\\n \\"statusText\\": \\"OK\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { data, error } = await supabase.from('characters').select()\\nif (error) {\\n // Logs the full error: message, code, details, and hint.\\n console.error(error)\\n return\\n}\\n\`\`\`", + "description": "The most useful field on a Postgres error is usually \`hint\` — when the database knows the fix, it puts the literal SQL there. For example, a permission-denied error (\`code: '42501'\`) arrives with a \`hint\` like \`\\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\\"\`. Log the full \`error\` object so the hint isn't hidden behind \`error.message\`.", + "response": "\`\`\`json\\n{\\n \\"error\\": {\\n \\"code\\": \\"42501\\",\\n \\"details\\": null,\\n \\"hint\\": \\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\\",\\n \\"message\\": \\"permission denied for table characters\\"\\n },\\n \\"status\\": 401,\\n \\"statusText\\": \\"Unauthorized\\"\\n}\\n\`\`\`" + }, { "id": "selecting-specific-columns", "name": "Selecting specific columns", @@ -98807,6 +99045,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"status\\": 204,\\n \\"statusText\\": \\"No Content\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { error } = await supabase.from('instruments').update({ name: 'piano' }).eq('id', 1)\\nif (error) console.error(error)\\n\`\`\`", + "description": "\`error.hint\` from Postgres often contains the actionable fix (e.g. \`\\"Grant the required privileges to the current role with: GRANT UPDATE ON public.instruments TO anon;\\"\` for a \`42501\` permission-denied error). Log the full \`error\` object so it isn't hidden behind \`error.message\`." + }, { "id": "update-a-record-and-return-it", "name": "Update a record and return it", @@ -98953,6 +99197,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "response": "\`\`\`json\\n{\\n \\"data\\": [\\n {\\n \\"id\\": 1,\\n \\"name\\": \\"piano\\"\\n }\\n ],\\n \\"status\\": 201,\\n \\"statusText\\": \\"Created\\"\\n}\\n\`\`\`" }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { data, error } = await supabase.from('instruments').upsert({ id: 1, name: 'piano' }).select()\\nif (error) console.error(error)\\n\`\`\`", + "description": "\`error.hint\` from Postgres often contains the actionable fix (e.g. \`\\"Grant the required privileges to the current role with: GRANT INSERT, UPDATE ON public.instruments TO anon;\\"\` for a \`42501\` permission-denied error). Log the full \`error\` object so it isn't hidden behind \`error.message\`." + }, { "id": "bulk-upsert-your-data", "name": "Bulk Upsert your data", @@ -101362,7 +101612,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } }, "comment": { - "shortText": "Sends a broadcast message explicitly via REST API.\\n\\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback." + "shortText": "Sends a broadcast message explicitly via REST API.\\n\\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback.\\n\\nPayloads that are \`ArrayBuffer\` or \`ArrayBufferView\` (e.g. \`Uint8Array\`) are sent as\\n\`application/octet-stream\`; all other payloads are JSON-encoded." } }, "@supabase/realtime-js.RealtimeChannel.on": { @@ -103050,7 +103300,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } }, "comment": { - "shortText": "Subscribe registers your client with the server" + "shortText": "Subscribe registers your client with the server.\\n\\nThe optional \`callback\` receives a \`status\` and, on failure, an \`err\` argument.\\nLog the full \`err\` so its \`cause\`, \`name\`, and any structured fields aren't hidden\\nbehind \`err.message\`.", + "examples": [ + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nsupabase.channel('room1').subscribe((status, err) => {\\n if (status === 'CHANNEL_ERROR' || status === 'TIMED_OUT') {\\n // Log the full error: its \`cause\` often holds the underlying reason.\\n console.error(status, err)\\n }\\n})\\n\`\`\`" + } + ] } }, "@supabase/realtime-js.RealtimeChannel.teardown": { @@ -110557,6 +110814,11 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "id": "upload-file-using-arraybuffer-from-base64-file-data", "name": "Upload file using \`ArrayBuffer\` from base64 file data", "code": "\`\`\`js\\nimport { decode } from 'base64-arraybuffer'\\n\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .upload('public/avatar1.png', decode('base64FileData'), {\\n contentType: 'image/png'\\n })\\n\`\`\`" + }, + { + "id": "handling-errors", + "name": "Handling errors", + "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .upload('public/avatar1.png', avatarFile)\\n\\nif (error) {\\n // Log the full error so fields like \`statusCode\` and \`error\` (the\\n // Storage error name, e.g. \\"Duplicate\\") aren't hidden behind \`error.message\`.\\n console.error(error)\\n return\\n}\\n\`\`\`" } ] } @@ -113859,8 +114121,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "id": "error-handling", "name": "Error handling", - "code": "\`\`\`js\\nimport { FunctionsHttpError, FunctionsRelayError, FunctionsFetchError } from \\"@supabase/supabase-js\\";\\n\\nconst { data, error } = await supabase.functions.invoke('hello', {\\n headers: {\\n \\"my-custom-header\\": 'my-custom-header-value'\\n },\\n body: { foo: 'bar' }\\n})\\n\\nif (error instanceof FunctionsHttpError) {\\n const errorMessage = await error.context.json()\\n console.log('Function returned an error', errorMessage)\\n} else if (error instanceof FunctionsRelayError) {\\n console.log('Relay error:', error.message)\\n} else if (error instanceof FunctionsFetchError) {\\n console.log('Fetch error:', error.message)\\n}\\n\`\`\`", - "description": "A \`FunctionsHttpError\` error is returned if your function throws an error, \`FunctionsRelayError\` if the Supabase Relay has an error processing your function and \`FunctionsFetchError\` if there is a network error in calling your function." + "code": "\`\`\`js\\nimport { FunctionsHttpError, FunctionsRelayError, FunctionsFetchError } from \\"@supabase/supabase-js\\";\\n\\nconst { data, error } = await supabase.functions.invoke('hello', {\\n headers: {\\n \\"my-custom-header\\": 'my-custom-header-value'\\n },\\n body: { foo: 'bar' }\\n})\\n\\nif (error instanceof FunctionsHttpError) {\\n const errorMessage = await error.context.json()\\n console.error('Function returned an error', errorMessage)\\n} else if (error instanceof FunctionsRelayError) {\\n console.error('Relay error:', error)\\n} else if (error instanceof FunctionsFetchError) {\\n console.error('Fetch error:', error)\\n}\\n\`\`\`", + "description": "A \`FunctionsHttpError\` error is returned if your function throws an error, \`FunctionsRelayError\` if the Supabase Relay has an error processing your function and \`FunctionsFetchError\` if there is a network error in calling your function. Log the full error object so fields like \`name\`, \`context\`, and any structured body aren't hidden." }, { "id": "passing-custom-headers", diff --git a/apps/docs/public/humans.txt b/apps/docs/public/humans.txt index edd44ac9c6d5d..ec52ed1d35662 100644 --- a/apps/docs/public/humans.txt +++ b/apps/docs/public/humans.txt @@ -179,6 +179,7 @@ Leonardo Santiago Liam Cloud Hogan Lindsay Moss Lukas Bernert +Lukas Klingsbo Łukasz Niemier Maksym Ionutsa Manuel Mendez @@ -218,6 +219,7 @@ Peter Lyn Peter Soderberg Pierre Ducroquet Qiao Han +Quintin Willison Rafael Chacón Raminder Singh Raúl Barroso diff --git a/apps/docs/public/img/table-view.png b/apps/docs/public/img/table-view.png deleted file mode 100644 index dbc9fc6ed58eb..0000000000000 Binary files a/apps/docs/public/img/table-view.png and /dev/null differ diff --git a/apps/docs/spec/api_v1_openapi.json b/apps/docs/spec/api_v1_openapi.json index 316e12b012c40..3fcc82548198c 100644 --- a/apps/docs/spec/api_v1_openapi.json +++ b/apps/docs/spec/api_v1_openapi.json @@ -711,7 +711,7 @@ } }, "responses": { - "201": { + "200": { "description": "", "content": { "application/json": { @@ -2824,6 +2824,9 @@ } } }, + "400": { + "description": "This feature requires the Pro, Team, or Enterprise organization plan." + }, "401": { "description": "Unauthorized" }, "403": { "description": "Forbidden action" }, "429": { "description": "Rate limit exceeded" }, @@ -2832,7 +2835,11 @@ "security": [{ "bearer": [] }, { "fga_permissions": ["vanity_subdomain_read"] }], "summary": "[Beta] Gets current vanity subdomain config", "tags": ["Domains"], - "x-badges": [{ "name": "OAuth scope: domains:read", "position": "after" }], + "x-allowed-plans": ["Pro", "Team", "Enterprise"], + "x-badges": [ + { "name": "OAuth scope: domains:read", "position": "after" }, + { "name": "Only available on Pro, Team, Enterprise", "position": "before" } + ], "x-endpoint-owners": ["infra", "management-api"], "x-oauth-scope": "domains:read" }, @@ -2901,6 +2908,9 @@ } } }, + "400": { + "description": "This feature requires the Pro, Team, or Enterprise organization plan." + }, "401": { "description": "Unauthorized" }, "403": { "description": "Forbidden action" }, "429": { "description": "Rate limit exceeded" }, @@ -2909,7 +2919,11 @@ "security": [{ "bearer": [] }, { "fga_permissions": ["vanity_subdomain_write"] }], "summary": "[Beta] Checks vanity subdomain availability", "tags": ["Domains"], - "x-badges": [{ "name": "OAuth scope: domains:write", "position": "after" }], + "x-allowed-plans": ["Pro", "Team", "Enterprise"], + "x-badges": [ + { "name": "OAuth scope: domains:write", "position": "after" }, + { "name": "Only available on Pro, Team, Enterprise", "position": "before" } + ], "x-endpoint-owners": ["infra", "management-api"], "x-oauth-scope": "domains:write" } @@ -2947,6 +2961,9 @@ } } }, + "400": { + "description": "This feature requires the Pro, Team, or Enterprise organization plan." + }, "401": { "description": "Unauthorized" }, "403": { "description": "Forbidden action" }, "429": { "description": "Rate limit exceeded" }, @@ -2955,7 +2972,11 @@ "security": [{ "bearer": [] }, { "fga_permissions": ["vanity_subdomain_write"] }], "summary": "[Beta] Activates a vanity subdomain for a project.", "tags": ["Domains"], - "x-badges": [{ "name": "OAuth scope: domains:write", "position": "after" }], + "x-allowed-plans": ["Pro", "Team", "Enterprise"], + "x-badges": [ + { "name": "OAuth scope: domains:write", "position": "after" }, + { "name": "Only available on Pro, Team, Enterprise", "position": "before" } + ], "x-endpoint-owners": ["infra", "management-api"], "x-oauth-scope": "domains:write" } @@ -3203,6 +3224,9 @@ "responses": { "201": { "description": "" }, "401": { "description": "Unauthorized" }, + "402": { + "description": "This feature requires the Pro, Team, or Enterprise organization plan." + }, "403": { "description": "Forbidden action" }, "429": { "description": "Rate limit exceeded" }, "500": { "description": "Failed to set up read replica" } @@ -3210,6 +3234,8 @@ "security": [{ "bearer": [] }, { "fga_permissions": ["infra_read_replicas_write"] }], "summary": "[Beta] Set up a read replica", "tags": ["Database"], + "x-allowed-plans": ["Pro", "Team", "Enterprise"], + "x-badges": [{ "name": "Only available on Pro, Team, Enterprise", "position": "before" }], "x-endpoint-owners": ["management-api", "infra"] } }, @@ -6931,7 +6957,7 @@ } }, "401": { "description": "Unauthorized" }, - "402": { "description": "Feature requires a higher plan" }, + "402": { "description": "This feature requires the Enterprise organization plan." }, "403": { "description": "Forbidden action" }, "404": { "description": "Project or backup schedule not found" }, "429": { "description": "Rate limit exceeded" }, @@ -6940,7 +6966,11 @@ "security": [{ "bearer": [] }, { "fga_permissions": ["backups_read"] }], "summary": "Gets the backup schedule for a project", "tags": ["Database"], - "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }], + "x-allowed-plans": ["Enterprise"], + "x-badges": [ + { "name": "OAuth scope: database:read", "position": "after" }, + { "name": "Only available on Enterprise", "position": "before" } + ], "x-endpoint-owners": ["infra"], "x-oauth-scope": "database:read" }, @@ -6981,7 +7011,7 @@ }, "400": { "description": "Invalid schedule_for format" }, "401": { "description": "Unauthorized" }, - "402": { "description": "Feature requires a higher plan" }, + "402": { "description": "This feature requires the Enterprise organization plan." }, "403": { "description": "Forbidden action" }, "404": { "description": "Project or backup schedule not found" }, "429": { "description": "Rate limit exceeded" }, @@ -6990,7 +7020,11 @@ "security": [{ "bearer": [] }, { "fga_permissions": ["backups_write"] }], "summary": "Updates the backup schedule time for a project", "tags": ["Database"], - "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }], + "x-allowed-plans": ["Enterprise"], + "x-badges": [ + { "name": "OAuth scope: database:write", "position": "after" }, + { "name": "Only available on Enterprise", "position": "before" } + ], "x-endpoint-owners": ["infra"], "x-oauth-scope": "database:write" } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/combined.json b/apps/docs/spec/enrichments/tsdoc_v2/combined.json index 92c89795a2619..c0cb78f90b207 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/combined.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/combined.json @@ -54,7 +54,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/cors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/cors.ts#L54" } ], "type": { @@ -119,7 +119,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/cors.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/cors.ts#L80" } ], "type": { @@ -156,7 +156,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/cors.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/cors.ts#L1" } ] }, @@ -462,14 +462,14 @@ ] }, { - "id": 3371, + "id": 3393, "name": "REALTIME_LISTEN_TYPES", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3372, + "id": 3394, "name": "BROADCAST", "variant": "declaration", "kind": 16, @@ -487,7 +487,7 @@ } }, { - "id": 3374, + "id": 3396, "name": "POSTGRES_CHANGES", "variant": "declaration", "kind": 16, @@ -505,7 +505,7 @@ } }, { - "id": 3373, + "id": 3395, "name": "PRESENCE", "variant": "declaration", "kind": 16, @@ -523,7 +523,7 @@ } }, { - "id": 3375, + "id": 3397, "name": "SYSTEM", "variant": "declaration", "kind": 16, @@ -544,7 +544,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3372, 3374, 3373, 3375] + "children": [3394, 3396, 3395, 3397] } ], "sources": [ @@ -556,14 +556,14 @@ ] }, { - "id": 3376, + "id": 3398, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3377, + "id": 3399, "name": "ALL", "variant": "declaration", "kind": 16, @@ -581,7 +581,7 @@ } }, { - "id": 3380, + "id": 3402, "name": "DELETE", "variant": "declaration", "kind": 16, @@ -599,7 +599,7 @@ } }, { - "id": 3378, + "id": 3400, "name": "INSERT", "variant": "declaration", "kind": 16, @@ -617,7 +617,7 @@ } }, { - "id": 3379, + "id": 3401, "name": "UPDATE", "variant": "declaration", "kind": 16, @@ -638,7 +638,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3377, 3380, 3378, 3379] + "children": [3399, 3402, 3400, 3401] } ], "sources": [ @@ -650,14 +650,14 @@ ] }, { - "id": 3381, + "id": 3403, "name": "REALTIME_PRESENCE_LISTEN_EVENTS", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3383, + "id": 3405, "name": "JOIN", "variant": "declaration", "kind": 16, @@ -675,7 +675,7 @@ } }, { - "id": 3384, + "id": 3406, "name": "LEAVE", "variant": "declaration", "kind": 16, @@ -693,7 +693,7 @@ } }, { - "id": 3382, + "id": 3404, "name": "SYNC", "variant": "declaration", "kind": 16, @@ -714,7 +714,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3383, 3384, 3382] + "children": [3405, 3406, 3404] } ], "sources": [ @@ -726,14 +726,14 @@ ] }, { - "id": 3385, + "id": 3407, "name": "REALTIME_SUBSCRIBE_STATES", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3389, + "id": 3411, "name": "CHANNEL_ERROR", "variant": "declaration", "kind": 16, @@ -751,7 +751,7 @@ } }, { - "id": 3388, + "id": 3410, "name": "CLOSED", "variant": "declaration", "kind": 16, @@ -769,7 +769,7 @@ } }, { - "id": 3386, + "id": 3408, "name": "SUBSCRIBED", "variant": "declaration", "kind": 16, @@ -787,7 +787,7 @@ } }, { - "id": 3387, + "id": 3409, "name": "TIMED_OUT", "variant": "declaration", "kind": 16, @@ -808,7 +808,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3389, 3388, 3386, 3387] + "children": [3411, 3410, 3408, 3409] } ], "sources": [ @@ -820,7 +820,7 @@ ] }, { - "id": 2556, + "id": 2561, "name": "AuthApiError", "variant": "declaration", "kind": 128, @@ -846,7 +846,7 @@ }, "children": [ { - "id": 2557, + "id": 2562, "name": "constructor", "variant": "declaration", "kind": 512, @@ -860,7 +860,7 @@ ], "signatures": [ { - "id": 2558, + "id": 2563, "name": "AuthApiError", "variant": "signature", "kind": 16384, @@ -874,7 +874,7 @@ ], "parameters": [ { - "id": 2559, + "id": 2564, "name": "message", "variant": "param", "kind": 32768, @@ -885,7 +885,7 @@ } }, { - "id": 2560, + "id": 2565, "name": "status", "variant": "param", "kind": 32768, @@ -896,7 +896,7 @@ } }, { - "id": 2561, + "id": 2566, "name": "code", "variant": "param", "kind": 32768, @@ -918,25 +918,25 @@ ], "type": { "type": "reference", - "target": 2556, + "target": 2561, "name": "AuthApiError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2540, + "target": 2545, "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2539, + "target": 2544, "name": "AuthError.constructor" } }, { - "id": 2565, + "id": 2570, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -957,12 +957,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2547, + "target": 2552, "name": "AuthError.__isAuthError" } }, { - "id": 2563, + "id": 2568, "name": "code", "variant": "declaration", "kind": 1024, @@ -1019,7 +1019,7 @@ { "type": "reflection", "declaration": { - "id": 2564, + "id": 2569, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1032,12 +1032,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2544, + "target": 2549, "name": "AuthError.code" } }, { - "id": 2562, + "id": 2567, "name": "status", "variant": "declaration", "kind": 1024, @@ -1063,12 +1063,12 @@ }, "overwrites": { "type": "reference", - "target": 2546, + "target": 2551, "name": "AuthError.status" } }, { - "id": 2566, + "id": 2571, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1084,7 +1084,7 @@ ], "signatures": [ { - "id": 2567, + "id": 2572, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1101,14 +1101,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2568, + "id": 2573, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2572, + "id": 2577, "name": "code", "variant": "declaration", "kind": 1024, @@ -1146,7 +1146,7 @@ { "type": "reflection", "declaration": { - "id": 2573, + "id": 2578, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1159,7 +1159,7 @@ } }, { - "id": 2570, + "id": 2575, "name": "message", "variant": "declaration", "kind": 1024, @@ -1177,7 +1177,7 @@ } }, { - "id": 2569, + "id": 2574, "name": "name", "variant": "declaration", "kind": 1024, @@ -1195,7 +1195,7 @@ } }, { - "id": 2571, + "id": 2576, "name": "status", "variant": "declaration", "kind": 1024, @@ -1225,7 +1225,7 @@ "groups": [ { "title": "Properties", - "children": [2572, 2570, 2569, 2571] + "children": [2577, 2575, 2574, 2576] } ], "sources": [ @@ -1239,14 +1239,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2549, + "target": 2554, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2548, + "target": 2553, "name": "AuthError.toJSON" } } @@ -1254,15 +1254,15 @@ "groups": [ { "title": "Constructors", - "children": [2557] + "children": [2562] }, { "title": "Properties", - "children": [2565, 2563, 2562] + "children": [2570, 2568, 2567] }, { "title": "Methods", - "children": [2566] + "children": [2571] } ], "sources": [ @@ -1275,14 +1275,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2538, + "id": 2543, "name": "AuthError", "variant": "declaration", "kind": 128, @@ -1308,7 +1308,7 @@ }, "children": [ { - "id": 2539, + "id": 2544, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1322,7 +1322,7 @@ ], "signatures": [ { - "id": 2540, + "id": 2545, "name": "AuthError", "variant": "signature", "kind": 16384, @@ -1336,7 +1336,7 @@ ], "parameters": [ { - "id": 2541, + "id": 2546, "name": "message", "variant": "param", "kind": 32768, @@ -1347,7 +1347,7 @@ } }, { - "id": 2542, + "id": 2547, "name": "status", "variant": "param", "kind": 32768, @@ -1360,7 +1360,7 @@ } }, { - "id": 2543, + "id": 2548, "name": "code", "variant": "param", "kind": 32768, @@ -1375,7 +1375,7 @@ ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -1393,7 +1393,7 @@ } }, { - "id": 2547, + "id": 2552, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -1413,7 +1413,7 @@ } }, { - "id": 2544, + "id": 2549, "name": "code", "variant": "declaration", "kind": 1024, @@ -1468,7 +1468,7 @@ { "type": "reflection", "declaration": { - "id": 2545, + "id": 2550, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1481,7 +1481,7 @@ } }, { - "id": 2546, + "id": 2551, "name": "status", "variant": "declaration", "kind": 1024, @@ -1516,7 +1516,7 @@ } }, { - "id": 2548, + "id": 2553, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1530,7 +1530,7 @@ ], "signatures": [ { - "id": 2549, + "id": 2554, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1545,14 +1545,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2550, + "id": 2555, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2554, + "id": 2559, "name": "code", "variant": "declaration", "kind": 1024, @@ -1590,7 +1590,7 @@ { "type": "reflection", "declaration": { - "id": 2555, + "id": 2560, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1603,7 +1603,7 @@ } }, { - "id": 2552, + "id": 2557, "name": "message", "variant": "declaration", "kind": 1024, @@ -1621,7 +1621,7 @@ } }, { - "id": 2551, + "id": 2556, "name": "name", "variant": "declaration", "kind": 1024, @@ -1639,7 +1639,7 @@ } }, { - "id": 2553, + "id": 2558, "name": "status", "variant": "declaration", "kind": 1024, @@ -1669,7 +1669,7 @@ "groups": [ { "title": "Properties", - "children": [2554, 2552, 2551, 2553] + "children": [2559, 2557, 2556, 2558] } ], "sources": [ @@ -1688,15 +1688,15 @@ "groups": [ { "title": "Constructors", - "children": [2539] + "children": [2544] }, { "title": "Properties", - "children": [2547, 2544, 2546] + "children": [2552, 2549, 2551] }, { "title": "Methods", - "children": [2548] + "children": [2553] } ], "sources": [ @@ -1720,23 +1720,23 @@ "extendedBy": [ { "type": "reference", - "target": 2556, + "target": 2561, "name": "AuthApiError" }, { "type": "reference", - "target": 2574, + "target": 2579, "name": "AuthUnknownError" }, { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError" } ] }, { - "id": 2661, + "id": 2666, "name": "AuthImplicitGrantRedirectError", "variant": "declaration", "kind": 128, @@ -1762,7 +1762,7 @@ }, "children": [ { - "id": 2662, + "id": 2667, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1776,7 +1776,7 @@ ], "signatures": [ { - "id": 2663, + "id": 2668, "name": "AuthImplicitGrantRedirectError", "variant": "signature", "kind": 16384, @@ -1790,7 +1790,7 @@ ], "parameters": [ { - "id": 2664, + "id": 2669, "name": "message", "variant": "param", "kind": 32768, @@ -1801,7 +1801,7 @@ } }, { - "id": 2665, + "id": 2670, "name": "details", "variant": "param", "kind": 32768, @@ -1818,14 +1818,14 @@ { "type": "reflection", "declaration": { - "id": 2666, + "id": 2671, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2668, + "id": 2673, "name": "code", "variant": "declaration", "kind": 1024, @@ -1843,7 +1843,7 @@ } }, { - "id": 2667, + "id": 2672, "name": "error", "variant": "declaration", "kind": 1024, @@ -1864,7 +1864,7 @@ "groups": [ { "title": "Properties", - "children": [2668, 2667] + "children": [2673, 2672] } ], "sources": [ @@ -1882,25 +1882,25 @@ ], "type": { "type": "reference", - "target": 2661, + "target": 2666, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2689, + "id": 2694, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -1921,12 +1921,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2687, + "id": 2692, "name": "code", "variant": "declaration", "kind": 1024, @@ -1983,7 +1983,7 @@ { "type": "reflection", "declaration": { - "id": 2688, + "id": 2693, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1996,12 +1996,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2669, + "id": 2674, "name": "details", "variant": "declaration", "kind": 1024, @@ -2023,14 +2023,14 @@ { "type": "reflection", "declaration": { - "id": 2670, + "id": 2675, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2672, + "id": 2677, "name": "code", "variant": "declaration", "kind": 1024, @@ -2048,7 +2048,7 @@ } }, { - "id": 2671, + "id": 2676, "name": "error", "variant": "declaration", "kind": 1024, @@ -2069,7 +2069,7 @@ "groups": [ { "title": "Properties", - "children": [2672, 2671] + "children": [2677, 2676] } ], "sources": [ @@ -2085,7 +2085,7 @@ } }, { - "id": 2685, + "id": 2690, "name": "name", "variant": "declaration", "kind": 1024, @@ -2105,12 +2105,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2686, + "id": 2691, "name": "status", "variant": "declaration", "kind": 1024, @@ -2138,12 +2138,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2673, + "id": 2678, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2157,7 +2157,7 @@ ], "signatures": [ { - "id": 2674, + "id": 2679, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2172,14 +2172,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2675, + "id": 2680, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2679, + "id": 2684, "name": "code", "variant": "declaration", "kind": 1024, @@ -2217,7 +2217,7 @@ { "type": "reflection", "declaration": { - "id": 2680, + "id": 2685, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2230,7 +2230,7 @@ } }, { - "id": 2681, + "id": 2686, "name": "details", "variant": "declaration", "kind": 1024, @@ -2252,14 +2252,14 @@ { "type": "reflection", "declaration": { - "id": 2682, + "id": 2687, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2684, + "id": 2689, "name": "code", "variant": "declaration", "kind": 1024, @@ -2277,7 +2277,7 @@ } }, { - "id": 2683, + "id": 2688, "name": "error", "variant": "declaration", "kind": 1024, @@ -2298,7 +2298,7 @@ "groups": [ { "title": "Properties", - "children": [2684, 2683] + "children": [2689, 2688] } ], "sources": [ @@ -2314,7 +2314,7 @@ } }, { - "id": 2677, + "id": 2682, "name": "message", "variant": "declaration", "kind": 1024, @@ -2332,7 +2332,7 @@ } }, { - "id": 2676, + "id": 2681, "name": "name", "variant": "declaration", "kind": 1024, @@ -2350,7 +2350,7 @@ } }, { - "id": 2678, + "id": 2683, "name": "status", "variant": "declaration", "kind": 1024, @@ -2380,7 +2380,7 @@ "groups": [ { "title": "Properties", - "children": [2679, 2681, 2677, 2676, 2678] + "children": [2684, 2686, 2682, 2681, 2683] } ], "sources": [ @@ -2394,14 +2394,14 @@ }, "overwrites": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -2409,15 +2409,15 @@ "groups": [ { "title": "Constructors", - "children": [2662] + "children": [2667] }, { "title": "Properties", - "children": [2689, 2687, 2669, 2685, 2686] + "children": [2694, 2692, 2674, 2690, 2691] }, { "title": "Methods", - "children": [2673] + "children": [2678] } ], "sources": [ @@ -2430,14 +2430,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2644, + "id": 2649, "name": "AuthInvalidCredentialsError", "variant": "declaration", "kind": 128, @@ -2463,7 +2463,7 @@ }, "children": [ { - "id": 2645, + "id": 2650, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2477,7 +2477,7 @@ ], "signatures": [ { - "id": 2646, + "id": 2651, "name": "AuthInvalidCredentialsError", "variant": "signature", "kind": 16384, @@ -2491,7 +2491,7 @@ ], "parameters": [ { - "id": 2647, + "id": 2652, "name": "message", "variant": "param", "kind": 32768, @@ -2504,25 +2504,25 @@ ], "type": { "type": "reference", - "target": 2644, + "target": 2649, "name": "AuthInvalidCredentialsError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2652, + "id": 2657, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -2543,12 +2543,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2650, + "id": 2655, "name": "code", "variant": "declaration", "kind": 1024, @@ -2605,7 +2605,7 @@ { "type": "reflection", "declaration": { - "id": 2651, + "id": 2656, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2618,12 +2618,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2648, + "id": 2653, "name": "name", "variant": "declaration", "kind": 1024, @@ -2643,12 +2643,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2649, + "id": 2654, "name": "status", "variant": "declaration", "kind": 1024, @@ -2676,12 +2676,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2653, + "id": 2658, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2697,7 +2697,7 @@ ], "signatures": [ { - "id": 2654, + "id": 2659, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2714,14 +2714,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2655, + "id": 2660, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2659, + "id": 2664, "name": "code", "variant": "declaration", "kind": 1024, @@ -2759,7 +2759,7 @@ { "type": "reflection", "declaration": { - "id": 2660, + "id": 2665, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2772,7 +2772,7 @@ } }, { - "id": 2657, + "id": 2662, "name": "message", "variant": "declaration", "kind": 1024, @@ -2790,7 +2790,7 @@ } }, { - "id": 2656, + "id": 2661, "name": "name", "variant": "declaration", "kind": 1024, @@ -2808,7 +2808,7 @@ } }, { - "id": 2658, + "id": 2663, "name": "status", "variant": "declaration", "kind": 1024, @@ -2838,7 +2838,7 @@ "groups": [ { "title": "Properties", - "children": [2659, 2657, 2656, 2658] + "children": [2664, 2662, 2661, 2663] } ], "sources": [ @@ -2852,14 +2852,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -2867,15 +2867,15 @@ "groups": [ { "title": "Constructors", - "children": [2645] + "children": [2650] }, { "title": "Properties", - "children": [2652, 2650, 2648, 2649] + "children": [2657, 2655, 2653, 2654] }, { "title": "Methods", - "children": [2653] + "children": [2658] } ], "sources": [ @@ -2888,14 +2888,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2774, + "id": 2796, "name": "AuthInvalidJwtError", "variant": "declaration", "kind": 128, @@ -2921,7 +2921,7 @@ }, "children": [ { - "id": 2775, + "id": 2797, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2929,13 +2929,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 256, + "line": 280, "character": 4 } ], "signatures": [ { - "id": 2776, + "id": 2798, "name": "AuthInvalidJwtError", "variant": "signature", "kind": 16384, @@ -2943,13 +2943,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 256, + "line": 280, "character": 4 } ], "parameters": [ { - "id": 2777, + "id": 2799, "name": "message", "variant": "param", "kind": 32768, @@ -2962,25 +2962,25 @@ ], "type": { "type": "reference", - "target": 2774, + "target": 2796, "name": "AuthInvalidJwtError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2782, + "id": 2804, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -3001,12 +3001,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2780, + "id": 2802, "name": "code", "variant": "declaration", "kind": 1024, @@ -3063,7 +3063,7 @@ { "type": "reflection", "declaration": { - "id": 2781, + "id": 2803, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3076,12 +3076,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2778, + "id": 2800, "name": "name", "variant": "declaration", "kind": 1024, @@ -3101,12 +3101,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2779, + "id": 2801, "name": "status", "variant": "declaration", "kind": 1024, @@ -3134,12 +3134,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2783, + "id": 2805, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3155,7 +3155,7 @@ ], "signatures": [ { - "id": 2784, + "id": 2806, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3172,14 +3172,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2785, + "id": 2807, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2789, + "id": 2811, "name": "code", "variant": "declaration", "kind": 1024, @@ -3217,7 +3217,7 @@ { "type": "reflection", "declaration": { - "id": 2790, + "id": 2812, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3230,7 +3230,7 @@ } }, { - "id": 2787, + "id": 2809, "name": "message", "variant": "declaration", "kind": 1024, @@ -3248,7 +3248,7 @@ } }, { - "id": 2786, + "id": 2808, "name": "name", "variant": "declaration", "kind": 1024, @@ -3266,7 +3266,7 @@ } }, { - "id": 2788, + "id": 2810, "name": "status", "variant": "declaration", "kind": 1024, @@ -3296,7 +3296,7 @@ "groups": [ { "title": "Properties", - "children": [2789, 2787, 2786, 2788] + "children": [2811, 2809, 2808, 2810] } ], "sources": [ @@ -3310,14 +3310,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -3325,35 +3325,35 @@ "groups": [ { "title": "Constructors", - "children": [2775] + "children": [2797] }, { "title": "Properties", - "children": [2782, 2780, 2778, 2779] + "children": [2804, 2802, 2800, 2801] }, { "title": "Methods", - "children": [2783] + "children": [2805] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 255, + "line": 279, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2628, + "id": 2633, "name": "AuthInvalidTokenResponseError", "variant": "declaration", "kind": 128, @@ -3379,7 +3379,7 @@ }, "children": [ { - "id": 2629, + "id": 2634, "name": "constructor", "variant": "declaration", "kind": 512, @@ -3393,7 +3393,7 @@ ], "signatures": [ { - "id": 2630, + "id": 2635, "name": "AuthInvalidTokenResponseError", "variant": "signature", "kind": 16384, @@ -3407,25 +3407,25 @@ ], "type": { "type": "reference", - "target": 2628, + "target": 2633, "name": "AuthInvalidTokenResponseError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2635, + "id": 2640, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -3446,12 +3446,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2633, + "id": 2638, "name": "code", "variant": "declaration", "kind": 1024, @@ -3508,7 +3508,7 @@ { "type": "reflection", "declaration": { - "id": 2634, + "id": 2639, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3521,12 +3521,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2631, + "id": 2636, "name": "name", "variant": "declaration", "kind": 1024, @@ -3546,12 +3546,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2632, + "id": 2637, "name": "status", "variant": "declaration", "kind": 1024, @@ -3579,12 +3579,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2636, + "id": 2641, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3600,7 +3600,7 @@ ], "signatures": [ { - "id": 2637, + "id": 2642, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3617,14 +3617,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2638, + "id": 2643, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2642, + "id": 2647, "name": "code", "variant": "declaration", "kind": 1024, @@ -3662,7 +3662,7 @@ { "type": "reflection", "declaration": { - "id": 2643, + "id": 2648, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3675,7 +3675,7 @@ } }, { - "id": 2640, + "id": 2645, "name": "message", "variant": "declaration", "kind": 1024, @@ -3693,7 +3693,7 @@ } }, { - "id": 2639, + "id": 2644, "name": "name", "variant": "declaration", "kind": 1024, @@ -3711,7 +3711,7 @@ } }, { - "id": 2641, + "id": 2646, "name": "status", "variant": "declaration", "kind": 1024, @@ -3741,7 +3741,7 @@ "groups": [ { "title": "Properties", - "children": [2642, 2640, 2639, 2641] + "children": [2647, 2645, 2644, 2646] } ], "sources": [ @@ -3755,14 +3755,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -3770,15 +3770,15 @@ "groups": [ { "title": "Constructors", - "children": [2629] + "children": [2634] }, { "title": "Properties", - "children": [2635, 2633, 2631, 2632] + "children": [2640, 2638, 2636, 2637] }, { "title": "Methods", - "children": [2636] + "children": [2641] } ], "sources": [ @@ -3791,14 +3791,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2719, + "id": 2724, "name": "AuthPKCECodeVerifierMissingError", "variant": "declaration", "kind": 128, @@ -3824,7 +3824,7 @@ }, "children": [ { - "id": 2720, + "id": 2725, "name": "constructor", "variant": "declaration", "kind": 512, @@ -3838,7 +3838,7 @@ ], "signatures": [ { - "id": 2721, + "id": 2726, "name": "AuthPKCECodeVerifierMissingError", "variant": "signature", "kind": 16384, @@ -3852,25 +3852,25 @@ ], "type": { "type": "reference", - "target": 2719, + "target": 2724, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2726, + "id": 2731, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -3891,12 +3891,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2724, + "id": 2729, "name": "code", "variant": "declaration", "kind": 1024, @@ -3953,7 +3953,7 @@ { "type": "reflection", "declaration": { - "id": 2725, + "id": 2730, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3966,12 +3966,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2722, + "id": 2727, "name": "name", "variant": "declaration", "kind": 1024, @@ -3991,12 +3991,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2723, + "id": 2728, "name": "status", "variant": "declaration", "kind": 1024, @@ -4024,12 +4024,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2727, + "id": 2732, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4045,7 +4045,7 @@ ], "signatures": [ { - "id": 2728, + "id": 2733, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4062,14 +4062,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2729, + "id": 2734, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2733, + "id": 2738, "name": "code", "variant": "declaration", "kind": 1024, @@ -4107,7 +4107,7 @@ { "type": "reflection", "declaration": { - "id": 2734, + "id": 2739, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4120,7 +4120,7 @@ } }, { - "id": 2731, + "id": 2736, "name": "message", "variant": "declaration", "kind": 1024, @@ -4138,7 +4138,7 @@ } }, { - "id": 2730, + "id": 2735, "name": "name", "variant": "declaration", "kind": 1024, @@ -4156,7 +4156,7 @@ } }, { - "id": 2732, + "id": 2737, "name": "status", "variant": "declaration", "kind": 1024, @@ -4186,7 +4186,7 @@ "groups": [ { "title": "Properties", - "children": [2733, 2731, 2730, 2732] + "children": [2738, 2736, 2735, 2737] } ], "sources": [ @@ -4200,14 +4200,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -4215,15 +4215,15 @@ "groups": [ { "title": "Constructors", - "children": [2720] + "children": [2725] }, { "title": "Properties", - "children": [2726, 2724, 2722, 2723] + "children": [2731, 2729, 2727, 2728] }, { "title": "Methods", - "children": [2727] + "children": [2732] } ], "sources": [ @@ -4236,14 +4236,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2690, + "id": 2695, "name": "AuthPKCEGrantCodeExchangeError", "variant": "declaration", "kind": 128, @@ -4269,7 +4269,7 @@ }, "children": [ { - "id": 2691, + "id": 2696, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4283,7 +4283,7 @@ ], "signatures": [ { - "id": 2692, + "id": 2697, "name": "AuthPKCEGrantCodeExchangeError", "variant": "signature", "kind": 16384, @@ -4297,7 +4297,7 @@ ], "parameters": [ { - "id": 2693, + "id": 2698, "name": "message", "variant": "param", "kind": 32768, @@ -4308,7 +4308,7 @@ } }, { - "id": 2694, + "id": 2699, "name": "details", "variant": "param", "kind": 32768, @@ -4325,14 +4325,14 @@ { "type": "reflection", "declaration": { - "id": 2695, + "id": 2700, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2697, + "id": 2702, "name": "code", "variant": "declaration", "kind": 1024, @@ -4350,7 +4350,7 @@ } }, { - "id": 2696, + "id": 2701, "name": "error", "variant": "declaration", "kind": 1024, @@ -4371,7 +4371,7 @@ "groups": [ { "title": "Properties", - "children": [2697, 2696] + "children": [2702, 2701] } ], "sources": [ @@ -4389,25 +4389,25 @@ ], "type": { "type": "reference", - "target": 2690, + "target": 2695, "name": "AuthPKCEGrantCodeExchangeError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2718, + "id": 2723, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -4428,12 +4428,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2716, + "id": 2721, "name": "code", "variant": "declaration", "kind": 1024, @@ -4490,7 +4490,7 @@ { "type": "reflection", "declaration": { - "id": 2717, + "id": 2722, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4503,12 +4503,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2698, + "id": 2703, "name": "details", "variant": "declaration", "kind": 1024, @@ -4530,14 +4530,14 @@ { "type": "reflection", "declaration": { - "id": 2699, + "id": 2704, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2701, + "id": 2706, "name": "code", "variant": "declaration", "kind": 1024, @@ -4555,7 +4555,7 @@ } }, { - "id": 2700, + "id": 2705, "name": "error", "variant": "declaration", "kind": 1024, @@ -4576,7 +4576,7 @@ "groups": [ { "title": "Properties", - "children": [2701, 2700] + "children": [2706, 2705] } ], "sources": [ @@ -4592,7 +4592,7 @@ } }, { - "id": 2714, + "id": 2719, "name": "name", "variant": "declaration", "kind": 1024, @@ -4612,12 +4612,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2715, + "id": 2720, "name": "status", "variant": "declaration", "kind": 1024, @@ -4645,12 +4645,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2702, + "id": 2707, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4664,7 +4664,7 @@ ], "signatures": [ { - "id": 2703, + "id": 2708, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4679,14 +4679,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2704, + "id": 2709, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2708, + "id": 2713, "name": "code", "variant": "declaration", "kind": 1024, @@ -4724,7 +4724,7 @@ { "type": "reflection", "declaration": { - "id": 2709, + "id": 2714, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4737,7 +4737,7 @@ } }, { - "id": 2710, + "id": 2715, "name": "details", "variant": "declaration", "kind": 1024, @@ -4759,14 +4759,14 @@ { "type": "reflection", "declaration": { - "id": 2711, + "id": 2716, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2713, + "id": 2718, "name": "code", "variant": "declaration", "kind": 1024, @@ -4784,7 +4784,7 @@ } }, { - "id": 2712, + "id": 2717, "name": "error", "variant": "declaration", "kind": 1024, @@ -4805,7 +4805,7 @@ "groups": [ { "title": "Properties", - "children": [2713, 2712] + "children": [2718, 2717] } ], "sources": [ @@ -4821,7 +4821,7 @@ } }, { - "id": 2706, + "id": 2711, "name": "message", "variant": "declaration", "kind": 1024, @@ -4839,7 +4839,7 @@ } }, { - "id": 2705, + "id": 2710, "name": "name", "variant": "declaration", "kind": 1024, @@ -4857,7 +4857,7 @@ } }, { - "id": 2707, + "id": 2712, "name": "status", "variant": "declaration", "kind": 1024, @@ -4887,7 +4887,7 @@ "groups": [ { "title": "Properties", - "children": [2708, 2710, 2706, 2705, 2707] + "children": [2713, 2715, 2711, 2710, 2712] } ], "sources": [ @@ -4901,14 +4901,14 @@ }, "overwrites": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -4916,15 +4916,15 @@ "groups": [ { "title": "Constructors", - "children": [2691] + "children": [2696] }, { "title": "Properties", - "children": [2718, 2716, 2698, 2714, 2715] + "children": [2723, 2721, 2703, 2719, 2720] }, { "title": "Methods", - "children": [2702] + "children": [2707] } ], "sources": [ @@ -4937,15 +4937,15 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2735, - "name": "AuthRetryableFetchError", + "id": 2758, + "name": "AuthRefreshDiscardedError", "variant": "declaration", "kind": 128, "flags": {}, @@ -4953,7 +4953,23 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a transient fetch issue occurs." + "text": "Returned when the server rotated a refresh token successfully but the\nclient chose not to persist the rotated tokens because the local session\nchanged mid-flight. Usually means a concurrent " + }, + { + "kind": "code", + "text": "`signOut`" + }, + { + "kind": "text", + "text": " cleared storage\nbetween when the refresh started and when it came back.\n\nSet on the " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " field of the refresh result so callers can tell \"we\ngot rotated tokens but threw them away\" apart from \"the refresh failed.\"\nThe rotated session on the server will be picked up on the next refresh\nvia GoTrue's parent-of-active path." } ], "blockTags": [ @@ -4962,7 +4978,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" + "text": "```ts\nimport { isAuthRefreshDiscardedError } from '@supabase/auth-js'\n\nif (isAuthRefreshDiscardedError(error)) {\n // Concurrent signOut/sign-in raced our refresh. Treat as a no-op.\n}\n```" } ] } @@ -4970,7 +4986,7 @@ }, "children": [ { - "id": 2736, + "id": 2759, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4978,69 +4994,60 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 212, + "line": 236, "character": 4 } ], "signatures": [ { - "id": 2737, - "name": "AuthRetryableFetchError", + "id": 2760, + "name": "AuthRefreshDiscardedError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 212, + "line": 236, "character": 4 } ], "parameters": [ { - "id": 2738, + "id": 2761, "name": "message", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", "name": "string" } - }, - { - "id": 2739, - "name": "status", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } } ], "type": { "type": "reference", - "target": 2735, - "name": "AuthRetryableFetchError", + "target": 2758, + "name": "AuthRefreshDiscardedError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2744, + "id": 2766, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -5061,12 +5068,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2742, + "id": 2764, "name": "code", "variant": "declaration", "kind": 1024, @@ -5123,7 +5130,7 @@ { "type": "reflection", "declaration": { - "id": 2743, + "id": 2765, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5136,12 +5143,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2740, + "id": 2762, "name": "name", "variant": "declaration", "kind": 1024, @@ -5161,12 +5168,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2741, + "id": 2763, "name": "status", "variant": "declaration", "kind": 1024, @@ -5194,12 +5201,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2745, + "id": 2767, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -5215,7 +5222,7 @@ ], "signatures": [ { - "id": 2746, + "id": 2768, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -5232,14 +5239,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2747, + "id": 2769, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2751, + "id": 2773, "name": "code", "variant": "declaration", "kind": 1024, @@ -5277,7 +5284,7 @@ { "type": "reflection", "declaration": { - "id": 2752, + "id": 2774, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5290,7 +5297,7 @@ } }, { - "id": 2749, + "id": 2771, "name": "message", "variant": "declaration", "kind": 1024, @@ -5308,7 +5315,7 @@ } }, { - "id": 2748, + "id": 2770, "name": "name", "variant": "declaration", "kind": 1024, @@ -5326,7 +5333,7 @@ } }, { - "id": 2750, + "id": 2772, "name": "status", "variant": "declaration", "kind": 1024, @@ -5356,7 +5363,7 @@ "groups": [ { "title": "Properties", - "children": [2751, 2749, 2748, 2750] + "children": [2773, 2771, 2770, 2772] } ], "sources": [ @@ -5370,14 +5377,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -5385,36 +5392,36 @@ "groups": [ { "title": "Constructors", - "children": [2736] + "children": [2759] }, { "title": "Properties", - "children": [2744, 2742, 2740, 2741] + "children": [2766, 2764, 2762, 2763] }, { "title": "Methods", - "children": [2745] + "children": [2767] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 211, + "line": 235, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2612, - "name": "AuthSessionMissingError", + "id": 2740, + "name": "AuthRetryableFetchError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5422,7 +5429,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when an operation requires a session but none is present." + "text": "Error thrown when a transient fetch issue occurs." } ], "blockTags": [ @@ -5431,7 +5438,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" + "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" } ] } @@ -5439,7 +5446,7 @@ }, "children": [ { - "id": 2613, + "id": 2741, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5447,45 +5454,69 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 92, + "line": 212, "character": 4 } ], "signatures": [ { - "id": 2614, - "name": "AuthSessionMissingError", + "id": 2742, + "name": "AuthRetryableFetchError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 92, + "line": 212, "character": 4 } ], + "parameters": [ + { + "id": 2743, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2744, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], "type": { "type": "reference", - "target": 2612, - "name": "AuthSessionMissingError", + "target": 2740, + "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2619, + "id": 2749, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -5506,12 +5537,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2617, + "id": 2747, "name": "code", "variant": "declaration", "kind": 1024, @@ -5568,7 +5599,7 @@ { "type": "reflection", "declaration": { - "id": 2618, + "id": 2748, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5581,12 +5612,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2615, + "id": 2745, "name": "name", "variant": "declaration", "kind": 1024, @@ -5606,12 +5637,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2616, + "id": 2746, "name": "status", "variant": "declaration", "kind": 1024, @@ -5639,12 +5670,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2620, + "id": 2750, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -5660,7 +5691,7 @@ ], "signatures": [ { - "id": 2621, + "id": 2751, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -5677,14 +5708,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2622, + "id": 2752, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2626, + "id": 2756, "name": "code", "variant": "declaration", "kind": 1024, @@ -5722,7 +5753,7 @@ { "type": "reflection", "declaration": { - "id": 2627, + "id": 2757, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5735,7 +5766,7 @@ } }, { - "id": 2624, + "id": 2754, "name": "message", "variant": "declaration", "kind": 1024, @@ -5753,7 +5784,7 @@ } }, { - "id": 2623, + "id": 2753, "name": "name", "variant": "declaration", "kind": 1024, @@ -5771,7 +5802,7 @@ } }, { - "id": 2625, + "id": 2755, "name": "status", "variant": "declaration", "kind": 1024, @@ -5801,7 +5832,7 @@ "groups": [ { "title": "Properties", - "children": [2626, 2624, 2623, 2625] + "children": [2756, 2754, 2753, 2755] } ], "sources": [ @@ -5815,14 +5846,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -5830,36 +5861,36 @@ "groups": [ { "title": "Constructors", - "children": [2613] + "children": [2741] }, { "title": "Properties", - "children": [2619, 2617, 2615, 2616] + "children": [2749, 2747, 2745, 2746] }, { "title": "Methods", - "children": [2620] + "children": [2750] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 91, + "line": 211, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2574, - "name": "AuthUnknownError", + "id": 2617, + "name": "AuthSessionMissingError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5867,7 +5898,7 @@ "summary": [ { "kind": "text", - "text": "Wraps non-standard errors so callers can inspect the root cause." + "text": "Error thrown when an operation requires a session but none is present." } ], "blockTags": [ @@ -5876,7 +5907,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" + "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" } ] } @@ -5884,7 +5915,7 @@ }, "children": [ { - "id": 2575, + "id": 2618, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5892,69 +5923,45 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 64, + "line": 92, "character": 4 } ], "signatures": [ { - "id": 2576, - "name": "AuthUnknownError", + "id": 2619, + "name": "AuthSessionMissingError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 64, + "line": 92, "character": 4 } ], - "parameters": [ - { - "id": 2577, - "name": "message", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2578, - "name": "originalError", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "unknown" - } - } - ], "type": { "type": "reference", - "target": 2574, - "name": "AuthUnknownError", + "target": 2617, + "name": "AuthSessionMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2540, - "name": "AuthError.constructor" + "target": 2599, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2539, - "name": "AuthError.constructor" + "target": 2598, + "name": "CustomAuthError.constructor" } }, { - "id": 2583, + "id": 2624, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -5975,12 +5982,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2547, - "name": "AuthError.__isAuthError" + "target": 2608, + "name": "CustomAuthError.__isAuthError" } }, { - "id": 2580, + "id": 2622, "name": "code", "variant": "declaration", "kind": 1024, @@ -6037,7 +6044,7 @@ { "type": "reflection", "declaration": { - "id": 2581, + "id": 2623, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6050,30 +6057,37 @@ }, "inheritedFrom": { "type": "reference", - "target": 2544, - "name": "AuthError.code" + "target": 2606, + "name": "CustomAuthError.code" } }, { - "id": 2579, - "name": "originalError", + "id": 2620, + "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 63, + "line": 77, "character": 4 } ], "type": { "type": "intrinsic", - "name": "unknown" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 2604, + "name": "CustomAuthError.name" } }, { - "id": 2582, + "id": 2621, "name": "status", "variant": "declaration", "kind": 1024, @@ -6091,31 +6105,22 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 22, + "line": 78, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": 2546, - "name": "AuthError.status" + "target": 2605, + "name": "CustomAuthError.status" } }, { - "id": 2584, + "id": 2625, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -6131,7 +6136,7 @@ ], "signatures": [ { - "id": 2585, + "id": 2626, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -6148,14 +6153,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2586, + "id": 2627, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2590, + "id": 2631, "name": "code", "variant": "declaration", "kind": 1024, @@ -6193,7 +6198,7 @@ { "type": "reflection", "declaration": { - "id": 2591, + "id": 2632, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6206,7 +6211,7 @@ } }, { - "id": 2588, + "id": 2629, "name": "message", "variant": "declaration", "kind": 1024, @@ -6224,7 +6229,7 @@ } }, { - "id": 2587, + "id": 2628, "name": "name", "variant": "declaration", "kind": 1024, @@ -6242,7 +6247,7 @@ } }, { - "id": 2589, + "id": 2630, "name": "status", "variant": "declaration", "kind": 1024, @@ -6272,7 +6277,7 @@ "groups": [ { "title": "Properties", - "children": [2590, 2588, 2587, 2589] + "children": [2631, 2629, 2628, 2630] } ], "sources": [ @@ -6286,51 +6291,51 @@ }, "inheritedFrom": { "type": "reference", - "target": 2549, - "name": "AuthError.toJSON" + "target": 2610, + "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2548, - "name": "AuthError.toJSON" + "target": 2609, + "name": "CustomAuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [2575] + "children": [2618] }, { "title": "Properties", - "children": [2583, 2580, 2579, 2582] + "children": [2624, 2622, 2620, 2621] }, { "title": "Methods", - "children": [2584] + "children": [2625] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 62, + "line": 91, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2538, - "name": "AuthError", + "target": 2597, + "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2753, - "name": "AuthWeakPasswordError", + "id": 2579, + "name": "AuthUnknownError", "variant": "declaration", "kind": 128, "flags": {}, @@ -6338,7 +6343,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a supplied password is considered weak." + "text": "Wraps non-standard errors so callers can inspect the root cause." } ], "blockTags": [ @@ -6347,7 +6352,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" + "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" } ] } @@ -6355,7 +6360,7 @@ }, "children": [ { - "id": 2754, + "id": 2580, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6363,27 +6368,27 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 235, + "line": 64, "character": 4 } ], "signatures": [ { - "id": 2755, - "name": "AuthWeakPasswordError", + "id": 2581, + "name": "AuthUnknownError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 235, + "line": 64, "character": 4 } ], "parameters": [ { - "id": 2756, + "id": 2582, "name": "message", "variant": "param", "kind": 32768, @@ -6394,65 +6399,38 @@ } }, { - "id": 2757, - "name": "status", + "id": 2583, + "name": "originalError", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2758, - "name": "reasons", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "name": "unknown" } } ], "type": { "type": "reference", - "target": 2753, - "name": "AuthWeakPasswordError", + "target": 2579, + "name": "AuthUnknownError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, - "name": "CustomAuthError.constructor" + "target": 2545, + "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, - "name": "CustomAuthError.constructor" + "target": 2544, + "name": "AuthError.constructor" } }, { - "id": 2773, + "id": 2588, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -6473,12 +6451,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, - "name": "CustomAuthError.__isAuthError" + "target": 2552, + "name": "AuthError.__isAuthError" } }, { - "id": 2771, + "id": 2585, "name": "code", "variant": "declaration", "kind": 1024, @@ -6535,7 +6513,7 @@ { "type": "reflection", "declaration": { - "id": 2772, + "id": 2586, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6548,79 +6526,30 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, - "name": "CustomAuthError.code" - } - }, - { - "id": 2769, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 77, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 2599, - "name": "CustomAuthError.name" + "target": 2549, + "name": "AuthError.code" } }, { - "id": 2759, - "name": "reasons", + "id": 2584, + "name": "originalError", "variant": "declaration", "kind": 1024, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Reasons why the password is deemed weak." - } - ] - }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 234, + "line": 63, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "type": "intrinsic", + "name": "unknown" } }, { - "id": 2770, + "id": 2587, "name": "status", "variant": "declaration", "kind": 1024, @@ -6638,58 +6567,71 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 78, + "line": 22, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] }, "inheritedFrom": { "type": "reference", - "target": 2600, - "name": "CustomAuthError.status" + "target": 2551, + "name": "AuthError.status" } }, { - "id": 2760, + "id": 2589, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 236, + "line": 25, "character": 4 } ], "signatures": [ { - "id": 2761, + "id": 2590, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 236, + "line": 25, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2762, + "id": 2591, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2766, + "id": 2595, "name": "code", "variant": "declaration", "kind": 1024, @@ -6697,7 +6639,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 240, + "line": 29, "character": 8 } ], @@ -6727,7 +6669,7 @@ { "type": "reflection", "declaration": { - "id": 2767, + "id": 2596, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6740,7 +6682,7 @@ } }, { - "id": 2764, + "id": 2593, "name": "message", "variant": "declaration", "kind": 1024, @@ -6748,7 +6690,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 238, + "line": 27, "character": 8 } ], @@ -6758,7 +6700,7 @@ } }, { - "id": 2763, + "id": 2592, "name": "name", "variant": "declaration", "kind": 1024, @@ -6766,7 +6708,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 237, + "line": 26, "character": 8 } ], @@ -6776,41 +6718,7 @@ } }, { - "id": 2768, - "name": "reasons", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 241, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } - } - }, - { - "id": 2765, + "id": 2594, "name": "status", "variant": "declaration", "kind": 1024, @@ -6818,7 +6726,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 239, + "line": 28, "character": 8 } ], @@ -6840,65 +6748,65 @@ "groups": [ { "title": "Properties", - "children": [2766, 2764, 2763, 2768, 2765] + "children": [2595, 2593, 2592, 2594] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 236, + "line": 25, "character": 14 } ] } }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 2605, - "name": "CustomAuthError.toJSON" + "target": 2554, + "name": "AuthError.toJSON" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 2604, - "name": "CustomAuthError.toJSON" + "target": 2553, + "name": "AuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [2754] + "children": [2580] }, { "title": "Properties", - "children": [2773, 2771, 2769, 2759, 2770] + "children": [2588, 2585, 2584, 2587] }, { "title": "Methods", - "children": [2760] + "children": [2589] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 230, + "line": 62, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, - "name": "CustomAuthError", + "target": 2543, + "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2592, - "name": "CustomAuthError", + "id": 2775, + "name": "AuthWeakPasswordError", "variant": "declaration", "kind": 128, "flags": {}, @@ -6906,7 +6814,7 @@ "summary": [ { "kind": "text", - "text": "Flexible error class used to create named auth errors at runtime." + "text": "Error thrown when a supplied password is considered weak." } ], "blockTags": [ @@ -6915,7 +6823,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" } ] } @@ -6923,7 +6831,7 @@ }, "children": [ { - "id": 2593, + "id": 2776, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6931,27 +6839,27 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 79, + "line": 259, "character": 4 } ], "signatures": [ { - "id": 2594, - "name": "CustomAuthError", + "id": 2777, + "name": "AuthWeakPasswordError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 79, + "line": 259, "character": 4 } ], "parameters": [ { - "id": 2595, + "id": 2778, "name": "message", "variant": "param", "kind": 32768, @@ -6962,18 +6870,7 @@ } }, { - "id": 2596, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2597, + "id": 2779, "name": "status", "variant": "param", "kind": 32768, @@ -6984,47 +6881,54 @@ } }, { - "id": 2598, - "name": "code", + "id": 2780, + "name": "reasons", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } } } ], "type": { "type": "reference", - "target": 2592, - "name": "CustomAuthError", + "target": 2775, + "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2540, - "name": "AuthError.constructor" + "target": 2599, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2539, - "name": "AuthError.constructor" + "target": 2598, + "name": "CustomAuthError.constructor" } }, { - "id": 2603, + "id": 2795, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -7045,12 +6949,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2547, - "name": "AuthError.__isAuthError" + "target": 2608, + "name": "CustomAuthError.__isAuthError" } }, { - "id": 2601, + "id": 2793, "name": "code", "variant": "declaration", "kind": 1024, @@ -7107,7 +7011,7 @@ { "type": "reflection", "declaration": { - "id": 2602, + "id": 2794, "name": "__type", "variant": "declaration", "kind": 65536, @@ -7120,16 +7024,18 @@ }, "inheritedFrom": { "type": "reference", - "target": 2544, - "name": "AuthError.code" + "target": 2606, + "name": "CustomAuthError.code" } }, { - "id": 2599, + "id": 2791, "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", @@ -7141,18 +7047,62 @@ "type": "intrinsic", "name": "string" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": -1, - "name": "AuthError.name" + "target": 2604, + "name": "CustomAuthError.name" } }, { - "id": 2600, - "name": "status", + "id": 2781, + "name": "reasons", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reasons why the password is deemed weak." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 258, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 2792, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, "comment": { "summary": [ { @@ -7172,54 +7122,50 @@ "type": "intrinsic", "name": "number" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 2546, - "name": "AuthError.status" + "target": 2605, + "name": "CustomAuthError.status" } }, { - "id": 2604, + "id": 2782, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 25, + "line": 260, "character": 4 } ], "signatures": [ { - "id": 2605, + "id": 2783, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 25, + "line": 260, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2606, + "id": 2784, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2610, + "id": 2788, "name": "code", "variant": "declaration", "kind": 1024, @@ -7227,7 +7173,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 29, + "line": 264, "character": 8 } ], @@ -7257,7 +7203,7 @@ { "type": "reflection", "declaration": { - "id": 2611, + "id": 2789, "name": "__type", "variant": "declaration", "kind": 65536, @@ -7270,7 +7216,7 @@ } }, { - "id": 2608, + "id": 2786, "name": "message", "variant": "declaration", "kind": 1024, @@ -7278,7 +7224,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 27, + "line": 262, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2785, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 261, "character": 8 } ], @@ -7288,7 +7252,519 @@ } }, { + "id": 2790, + "name": "reasons", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 265, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 2787, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 263, + "character": 8 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [2788, 2786, 2785, 2790, 2787] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 260, + "character": 14 + } + ] + } + }, + "overwrites": { + "type": "reference", + "target": 2610, + "name": "CustomAuthError.toJSON" + } + } + ], + "overwrites": { + "type": "reference", + "target": 2609, + "name": "CustomAuthError.toJSON" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [2776] + }, + { + "title": "Properties", + "children": [2795, 2793, 2791, 2781, 2792] + }, + { + "title": "Methods", + "children": [2782] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 254, + "character": 21 + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 2597, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + } + ] + }, + { + "id": 2597, + "name": "CustomAuthError", + "variant": "declaration", + "kind": 128, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Flexible error class used to create named auth errors at runtime." + } + ], + "blockTags": [ + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + } + ] + } + ] + }, + "children": [ + { + "id": 2598, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 79, + "character": 4 + } + ], + "signatures": [ + { + "id": 2599, + "name": "CustomAuthError", + "variant": "signature", + "kind": 16384, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 79, + "character": 4 + } + ], + "parameters": [ + { + "id": 2600, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2601, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2602, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2603, + "name": "code", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "type": { + "type": "reference", + "target": 2597, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + }, + "overwrites": { + "type": "reference", + "target": 2545, + "name": "AuthError.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "target": 2544, + "name": "AuthError.constructor" + } + }, + { + "id": 2608, + "name": "__isAuthError", + "variant": "declaration", + "kind": 1024, + "flags": { + "isProtected": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 23, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": 2552, + "name": "AuthError.__isAuthError" + } + }, + { + "id": 2606, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#status" + }, + { + "kind": "text", + "text": " will also be undefined." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 20, + "character": 4 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../auth-js/src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { "id": 2607, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 2549, + "name": "AuthError.code" + } + }, + { + "id": 2604, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 77, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "AuthError.name" + } + }, + { + "id": 2605, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP status code that caused the error." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 78, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "overwrites": { + "type": "reference", + "target": 2551, + "name": "AuthError.status" + } + }, + { + "id": 2609, + "name": "toJSON", + "variant": "declaration", + "kind": 2048, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 25, + "character": 4 + } + ], + "signatures": [ + { + "id": 2610, + "name": "toJSON", + "variant": "signature", + "kind": 4096, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 25, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2611, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2615, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 29, + "character": 8 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../auth-js/src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 2616, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + } + ] + } + }, + { + "id": 2613, + "name": "message", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 27, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2612, "name": "name", "variant": "declaration", "kind": 1024, @@ -7306,7 +7782,7 @@ } }, { - "id": 2609, + "id": 2614, "name": "status", "variant": "declaration", "kind": 1024, @@ -7336,7 +7812,7 @@ "groups": [ { "title": "Properties", - "children": [2610, 2608, 2607, 2609] + "children": [2615, 2613, 2612, 2614] } ], "sources": [ @@ -7350,14 +7826,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2549, + "target": 2554, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2548, + "target": 2553, "name": "AuthError.toJSON" } } @@ -7365,15 +7841,15 @@ "groups": [ { "title": "Constructors", - "children": [2593] + "children": [2598] }, { "title": "Properties", - "children": [2603, 2601, 2599, 2600] + "children": [2608, 2606, 2604, 2605] }, { "title": "Methods", - "children": [2604] + "children": [2609] } ], "sources": [ @@ -7386,7 +7862,7 @@ "extendedTypes": [ { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -7394,47 +7870,52 @@ "extendedBy": [ { "type": "reference", - "target": 2612, + "target": 2617, "name": "AuthSessionMissingError" }, { "type": "reference", - "target": 2628, + "target": 2633, "name": "AuthInvalidTokenResponseError" }, { "type": "reference", - "target": 2644, + "target": 2649, "name": "AuthInvalidCredentialsError" }, { "type": "reference", - "target": 2661, + "target": 2666, "name": "AuthImplicitGrantRedirectError" }, { "type": "reference", - "target": 2690, + "target": 2695, "name": "AuthPKCEGrantCodeExchangeError" }, { "type": "reference", - "target": 2719, + "target": 2724, "name": "AuthPKCECodeVerifierMissingError" }, { "type": "reference", - "target": 2735, + "target": 2740, "name": "AuthRetryableFetchError" }, { "type": "reference", - "target": 2753, + "target": 2758, + "name": "AuthRefreshDiscardedError" + }, + { + "type": "reference", + "target": 2775, "name": "AuthWeakPasswordError" }, { "type": "reference", - "target": 2774, + "target": 2796, "name": "AuthInvalidJwtError" } ] @@ -8536,7 +9017,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 48, + "line": 47, "character": 4 } ], @@ -8580,7 +9061,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 48, + "line": 47, "character": 4 } ], @@ -8611,13 +9092,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 54, + "line": 53, "character": 8 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } @@ -8633,7 +9114,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 53, + "line": 52, "character": 8 } ], @@ -8861,7 +9342,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 50, + "line": 49, "character": 8 } ], @@ -8876,7 +9357,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 50, + "line": 49, "character": 18 } ], @@ -8890,7 +9371,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 51, + "line": 50, "character": 12 } ], @@ -8925,7 +9406,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 49, + "line": 48, "character": 8 } ], @@ -8944,7 +9425,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 48, + "line": 47, "character": 56 } ] @@ -8985,13 +9466,13 @@ ], "type": { "type": "reference", - "target": 2341, + "target": 2343, "name": "GoTrueAdminCustomProvidersApi", "package": "@supabase/auth-js" } }, { - "id": 1161, + "id": 1160, "name": "experimental", "variant": "declaration", "kind": 1024, @@ -9001,19 +9482,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 26, + "line": 25, "character": 14 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } }, { - "id": 1153, + "id": 1152, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -9023,14 +9504,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 25, + "line": 24, "character": 14 } ], "type": { "type": "reflection", "declaration": { - "id": 1154, + "id": 1153, "name": "__type", "variant": "declaration", "kind": 65536, @@ -9049,7 +9530,7 @@ ], "signatures": [ { - "id": 1155, + "id": 1154, "name": "__type", "variant": "signature", "kind": 4096, @@ -9071,7 +9552,7 @@ ], "parameters": [ { - "id": 1156, + "id": 1155, "name": "input", "variant": "param", "kind": 32768, @@ -9101,7 +9582,7 @@ } }, { - "id": 1157, + "id": 1156, "name": "init", "variant": "param", "kind": 32768, @@ -9141,7 +9622,7 @@ } }, { - "id": 1158, + "id": 1157, "name": "__type", "variant": "signature", "kind": 4096, @@ -9163,7 +9644,7 @@ ], "parameters": [ { - "id": 1159, + "id": 1158, "name": "input", "variant": "param", "kind": 32768, @@ -9197,7 +9678,7 @@ } }, { - "id": 1160, + "id": 1159, "name": "init", "variant": "param", "kind": 32768, @@ -9329,7 +9810,7 @@ ], "type": { "type": "reference", - "target": 2094, + "target": 2096, "name": "GoTrueAdminMFAApi", "package": "@supabase/auth-js" } @@ -9357,7 +9838,7 @@ ], "type": { "type": "reference", - "target": 2226, + "target": 2228, "name": "GoTrueAdminOAuthApi", "package": "@supabase/auth-js" } @@ -9393,7 +9874,7 @@ ], "type": { "type": "reference", - "target": 2510, + "target": 2512, "name": "GoTrueAdminPasskeyApi", "package": "@supabase/auth-js" } @@ -9419,7 +9900,7 @@ } }, { - "id": 1179, + "id": 1178, "name": "createUser", "variant": "declaration", "kind": 2048, @@ -9427,13 +9908,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 336, + "line": 335, "character": 4 } ], "signatures": [ { - "id": 1180, + "id": 1179, "name": "createUser", "variant": "signature", "kind": 4096, @@ -9585,20 +10066,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 336, + "line": 335, "character": 4 } ], "parameters": [ { - "id": 1181, + "id": 1180, "name": "attributes", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1748, + "target": 1750, "name": "AdminUserAttributes", "package": "@supabase/auth-js" } @@ -9613,7 +10094,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -9625,7 +10106,7 @@ ] }, { - "id": 1203, + "id": 1202, "name": "deleteUser", "variant": "declaration", "kind": 2048, @@ -9633,13 +10114,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 614, + "line": 613, "character": 4 } ], "signatures": [ { - "id": 1204, + "id": 1203, "name": "deleteUser", "variant": "signature", "kind": 4096, @@ -9731,13 +10212,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 614, + "line": 613, "character": 4 } ], "parameters": [ { - "id": 1205, + "id": 1204, "name": "id", "variant": "param", "kind": 32768, @@ -9756,7 +10237,7 @@ } }, { - "id": 1206, + "id": 1205, "name": "shouldSoftDelete", "variant": "param", "kind": 32768, @@ -9794,7 +10275,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -9806,7 +10287,7 @@ ] }, { - "id": 1176, + "id": 1175, "name": "generateLink", "variant": "declaration", "kind": 2048, @@ -9814,13 +10295,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 255, + "line": 254, "character": 4 } ], "signatures": [ { - "id": 1177, + "id": 1176, "name": "generateLink", "variant": "signature", "kind": 4096, @@ -10040,20 +10521,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 255, + "line": 254, "character": 4 } ], "parameters": [ { - "id": 1178, + "id": 1177, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1962, + "target": 1964, "name": "GenerateLinkParams", "package": "@supabase/auth-js" } @@ -10068,7 +10549,7 @@ "typeArguments": [ { "type": "reference", - "target": 1963, + "target": 1965, "name": "GenerateLinkResponse", "package": "@supabase/auth-js" } @@ -10080,7 +10561,7 @@ ] }, { - "id": 1196, + "id": 1195, "name": "getUserById", "variant": "declaration", "kind": 2048, @@ -10088,13 +10569,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 436, + "line": 435, "character": 4 } ], "signatures": [ { - "id": 1197, + "id": 1196, "name": "getUserById", "variant": "signature", "kind": 4096, @@ -10178,13 +10659,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 436, + "line": 435, "character": 4 } ], "parameters": [ { - "id": 1198, + "id": 1197, "name": "uid", "variant": "param", "kind": 32768, @@ -10220,7 +10701,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -10232,7 +10713,7 @@ ] }, { - "id": 1169, + "id": 1168, "name": "inviteUserByEmail", "variant": "declaration", "kind": 2048, @@ -10240,13 +10721,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 132, + "line": 131, "character": 4 } ], "signatures": [ { - "id": 1170, + "id": 1169, "name": "inviteUserByEmail", "variant": "signature", "kind": 4096, @@ -10330,13 +10811,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 132, + "line": 131, "character": 4 } ], "parameters": [ { - "id": 1171, + "id": 1170, "name": "email", "variant": "param", "kind": 32768, @@ -10355,7 +10836,7 @@ } }, { - "id": 1172, + "id": 1171, "name": "options", "variant": "param", "kind": 32768, @@ -10373,14 +10854,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1173, + "id": 1172, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1174, + "id": 1173, "name": "data", "variant": "declaration", "kind": 1024, @@ -10406,7 +10887,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 134, + "line": 133, "character": 8 } ], @@ -10416,7 +10897,7 @@ } }, { - "id": 1175, + "id": 1174, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -10434,7 +10915,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 136, + "line": 135, "character": 8 } ], @@ -10447,13 +10928,13 @@ "groups": [ { "title": "Properties", - "children": [1174, 1175] + "children": [1173, 1174] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 132, + "line": 131, "character": 47 } ] @@ -10470,7 +10951,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -10482,7 +10963,7 @@ ] }, { - "id": 1182, + "id": 1181, "name": "listUsers", "variant": "declaration", "kind": 2048, @@ -10490,13 +10971,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 362, + "line": 361, "character": 4 } ], "signatures": [ { - "id": 1183, + "id": 1182, "name": "listUsers", "variant": "signature", "kind": 4096, @@ -10569,13 +11050,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 362, + "line": 361, "character": 4 } ], "parameters": [ { - "id": 1184, + "id": 1183, "name": "params", "variant": "param", "kind": 32768, @@ -10608,7 +11089,7 @@ }, "type": { "type": "reference", - "target": 2115, + "target": 2117, "name": "PageParams", "package": "@supabase/auth-js" } @@ -10627,14 +11108,14 @@ { "type": "reflection", "declaration": { - "id": 1185, + "id": 1184, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1186, + "id": 1185, "name": "data", "variant": "declaration", "kind": 1024, @@ -10642,7 +11123,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 363, + "line": 362, "character": 8 } ], @@ -10652,14 +11133,14 @@ { "type": "reflection", "declaration": { - "id": 1187, + "id": 1186, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1189, + "id": 1188, "name": "aud", "variant": "declaration", "kind": 1024, @@ -10667,7 +11148,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 365, + "line": 364, "character": 12 } ], @@ -10677,7 +11158,7 @@ } }, { - "id": 1188, + "id": 1187, "name": "users", "variant": "declaration", "kind": 1024, @@ -10685,7 +11166,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 364, + "line": 363, "character": 12 } ], @@ -10703,13 +11184,13 @@ "groups": [ { "title": "Properties", - "children": [1189, 1188] + "children": [1188, 1187] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 363, + "line": 362, "character": 14 } ] @@ -10717,7 +11198,7 @@ }, { "type": "reference", - "target": 2108, + "target": 2110, "name": "Pagination", "package": "@supabase/auth-js" } @@ -10725,7 +11206,7 @@ } }, { - "id": 1190, + "id": 1189, "name": "error", "variant": "declaration", "kind": 1024, @@ -10733,7 +11214,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 367, + "line": 366, "character": 8 } ], @@ -10746,13 +11227,13 @@ "groups": [ { "title": "Properties", - "children": [1186, 1190] + "children": [1185, 1189] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 362, + "line": 361, "character": 44 } ] @@ -10761,14 +11242,14 @@ { "type": "reflection", "declaration": { - "id": 1191, + "id": 1190, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1192, + "id": 1191, "name": "data", "variant": "declaration", "kind": 1024, @@ -10776,21 +11257,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 369, + "line": 368, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1193, + "id": 1192, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1194, + "id": 1193, "name": "users", "variant": "declaration", "kind": 1024, @@ -10798,7 +11279,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 370, + "line": 369, "character": 12 } ], @@ -10810,13 +11291,13 @@ "groups": [ { "title": "Properties", - "children": [1194] + "children": [1193] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 369, + "line": 368, "character": 14 } ] @@ -10824,7 +11305,7 @@ } }, { - "id": 1195, + "id": 1194, "name": "error", "variant": "declaration", "kind": 1024, @@ -10832,13 +11313,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 372, + "line": 371, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -10847,13 +11328,13 @@ "groups": [ { "title": "Properties", - "children": [1192, 1195] + "children": [1191, 1194] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 368, + "line": 367, "character": 8 } ] @@ -10869,7 +11350,7 @@ ] }, { - "id": 1162, + "id": 1161, "name": "signOut", "variant": "declaration", "kind": 2048, @@ -10877,13 +11358,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 64, + "line": 63, "character": 4 } ], "signatures": [ { - "id": 1163, + "id": 1162, "name": "signOut", "variant": "signature", "kind": 4096, @@ -10919,13 +11400,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 64, + "line": 63, "character": 4 } ], "parameters": [ { - "id": 1164, + "id": 1163, "name": "jwt", "variant": "param", "kind": 32768, @@ -10944,7 +11425,7 @@ } }, { - "id": 1165, + "id": 1164, "name": "scope", "variant": "param", "kind": 32768, @@ -10988,14 +11469,14 @@ { "type": "reflection", "declaration": { - "id": 1166, + "id": 1165, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1167, + "id": 1166, "name": "data", "variant": "declaration", "kind": 1024, @@ -11003,7 +11484,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 65, + "line": 64, "character": 8 } ], @@ -11013,7 +11494,7 @@ } }, { - "id": 1168, + "id": 1167, "name": "error", "variant": "declaration", "kind": 1024, @@ -11021,7 +11502,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 66, + "line": 65, "character": 8 } ], @@ -11034,7 +11515,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -11045,13 +11526,13 @@ "groups": [ { "title": "Properties", - "children": [1167, 1168] + "children": [1166, 1167] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 64, + "line": 63, "character": 56 } ] @@ -11065,7 +11546,7 @@ ] }, { - "id": 1199, + "id": 1198, "name": "updateUserById", "variant": "declaration", "kind": 2048, @@ -11073,13 +11554,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 581, + "line": 580, "character": 4 } ], "signatures": [ { - "id": 1200, + "id": 1199, "name": "updateUserById", "variant": "signature", "kind": 4096, @@ -11281,13 +11762,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 581, + "line": 580, "character": 4 } ], "parameters": [ { - "id": 1201, + "id": 1200, "name": "uid", "variant": "param", "kind": 32768, @@ -11306,7 +11787,7 @@ } }, { - "id": 1202, + "id": 1201, "name": "attributes", "variant": "param", "kind": 32768, @@ -11329,7 +11810,7 @@ }, "type": { "type": "reference", - "target": 1748, + "target": 1750, "name": "AdminUserAttributes", "package": "@supabase/auth-js" } @@ -11344,7 +11825,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -11363,21 +11844,21 @@ }, { "title": "Properties", - "children": [1145, 1161, 1153, 1148, 1143, 1144, 1146, 1147] + "children": [1145, 1160, 1152, 1148, 1143, 1144, 1146, 1147] }, { "title": "Methods", - "children": [1179, 1203, 1176, 1196, 1169, 1182, 1162, 1199] + "children": [1178, 1202, 1175, 1195, 1168, 1181, 1161, 1198] } ], "categories": [ { "title": "Auth", - "children": [1179, 1203, 1176, 1196, 1169, 1182, 1162, 1199] + "children": [1178, 1202, 1175, 1195, 1168, 1181, 1161, 1198] }, { "title": "Other", - "children": [1125, 1145, 1161, 1153, 1148, 1143, 1144, 1146, 1147] + "children": [1125, 1145, 1160, 1152, 1148, 1143, 1144, 1146, 1147] } ], "sources": [ @@ -11389,14 +11870,14 @@ ] }, { - "id": 1222, + "id": 1221, "name": "GoTrueClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1224, + "id": 1223, "name": "constructor", "variant": "declaration", "kind": 512, @@ -11404,13 +11885,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 117, + "line": 134, "character": 4 } ], "signatures": [ { - "id": 1225, + "id": 1224, "name": "GoTrueClient", "variant": "signature", "kind": 16384, @@ -11448,20 +11929,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 117, + "line": 134, "character": 4 } ], "parameters": [ { - "id": 1226, + "id": 1225, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1597, + "target": 1599, "name": "GoTrueClientOptions", "package": "@supabase/auth-js" } @@ -11469,7 +11950,7 @@ ], "type": { "type": "reference", - "target": 1222, + "target": 1221, "name": "GoTrueClient", "package": "@supabase/auth-js", "qualifiedName": "default" @@ -11478,7 +11959,83 @@ ] }, { - "id": 1228, + "id": 1260, + "name": "_sessionRemovalEpoch", + "variant": "declaration", + "kind": 1024, + "flags": { + "isProtected": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Monotonic counter incremented at the top of " + }, + { + "kind": "code", + "text": "`_removeSession`" + }, + { + "kind": "text", + "text": ", before any\n" + }, + { + "kind": "code", + "text": "`await`" + }, + { + "kind": "text", + "text": ". The commit guard inside " + }, + { + "kind": "code", + "text": "`_callRefreshToken`" + }, + { + "kind": "text", + "text": " captures this value\nbefore " + }, + { + "kind": "code", + "text": "`_saveSession`" + }, + { + "kind": "text", + "text": " and re-checks it after, so a " + }, + { + "kind": "code", + "text": "`signOut`" + }, + { + "kind": "text", + "text": " that\ninterleaves inside " + }, + { + "kind": "code", + "text": "`_saveSession`" + }, + { + "kind": "text", + "text": "'s storage-write awaits is still caught\n(the post-fetch storage snapshot alone misses that window)." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", + "line": 69, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1227, "name": "admin", "variant": "declaration", "kind": 1024, @@ -11507,7 +12064,7 @@ } }, { - "id": 1255, + "id": 1254, "name": "autoRefreshTicker", "variant": "declaration", "kind": 1024, @@ -11542,7 +12099,7 @@ } }, { - "id": 1256, + "id": 1255, "name": "autoRefreshTickTimeout", "variant": "declaration", "kind": 1024, @@ -11577,7 +12134,7 @@ } }, { - "id": 1246, + "id": 1245, "name": "autoRefreshToken", "variant": "declaration", "kind": 1024, @@ -11615,7 +12172,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 92, + "line": 109, "character": 14 } ], @@ -11649,7 +12206,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 14 } ], @@ -11671,7 +12228,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 45 } ], @@ -11685,7 +12242,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 45 } ], @@ -11723,7 +12280,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 64 } ], @@ -11737,7 +12294,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 70, + "line": 78, "character": 8 } ], @@ -11802,13 +12359,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 88, + "line": 105, "character": 14 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } @@ -11824,7 +12381,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 78, + "line": 86, "character": 14 } ], @@ -12042,7 +12599,7 @@ } }, { - "id": 1233, + "id": 1232, "name": "flowType", "variant": "declaration", "kind": 1024, @@ -12058,7 +12615,7 @@ ], "type": { "type": "reference", - "target": 1808, + "target": 1810, "name": "AuthFlowType", "package": "@supabase/auth-js" } @@ -12074,7 +12631,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 76, + "line": 84, "character": 14 } ], @@ -12094,7 +12651,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 73, + "line": 81, "character": 14 } ], @@ -12109,7 +12666,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 73, + "line": 81, "character": 23 } ], @@ -12123,7 +12680,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 74, + "line": 82, "character": 8 } ], @@ -12176,7 +12733,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 68, + "line": 76, "character": 14 } ], @@ -12196,7 +12753,7 @@ "typeArguments": [ { "type": "reference", - "target": 2104, + "target": 2106, "name": "InitializeResult", "package": "@supabase/auth-js" } @@ -12215,18 +12772,51 @@ "flags": { "isProtected": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Custom lock function passed via " + }, + { + "kind": "code", + "text": "`settings.lock`" + }, + { + "kind": "text", + "text": ". When non-null, every auth\noperation runs inside " + }, + { + "kind": "code", + "text": "`_acquireLock`" + }, + { + "kind": "text", + "text": ". When null (the default), the client\nuses its lockless coordination (refresh single-flight + commit guard).\nTODO(v3): remove along with the legacy lock path." + } + ] + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 79, + "line": 93, "character": 14 } ], "type": { - "type": "reference", - "target": 1588, - "name": "LockFunc", - "package": "@supabase/auth-js" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 1590, + "name": "LockFunc", + "package": "@supabase/auth-js" + } + ] } }, { @@ -12240,7 +12830,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 80, + "line": 94, "character": 14 } ], @@ -12257,10 +12847,26 @@ "flags": { "isProtected": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Only consulted when a custom " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " is supplied. TODO(v3): remove." + } + ] + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 83, + "line": 100, "character": 14 } ], @@ -12280,7 +12886,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 93, + "line": 110, "character": 14 } ], @@ -12300,7 +12906,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 94, + "line": 111, "character": 14 } ], @@ -12315,7 +12921,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 94, + "line": 111, "character": 22 } ], @@ -12329,7 +12935,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 94, + "line": 111, "character": 22 } ], @@ -12372,7 +12978,7 @@ } }, { - "id": 1250, + "id": 1249, "name": "memoryStorage", "variant": "declaration", "kind": 1024, @@ -12396,7 +13002,7 @@ { "type": "reflection", "declaration": { - "id": 1251, + "id": 1250, "name": "__type", "variant": "declaration", "kind": 65536, @@ -12410,7 +13016,7 @@ ], "indexSignatures": [ { - "id": 1252, + "id": 1251, "name": "__index", "variant": "signature", "kind": 8192, @@ -12424,7 +13030,7 @@ ], "parameters": [ { - "id": 1253, + "id": 1252, "name": "key", "variant": "param", "kind": 32768, @@ -12447,7 +13053,7 @@ } }, { - "id": 1229, + "id": 1228, "name": "mfa", "variant": "declaration", "kind": 1024, @@ -12469,13 +13075,13 @@ ], "type": { "type": "reference", - "target": 2023, + "target": 2025, "name": "GoTrueMFAApi", "package": "@supabase/auth-js" } }, { - "id": 1230, + "id": 1229, "name": "oauth", "variant": "declaration", "kind": 1024, @@ -12497,13 +13103,13 @@ ], "type": { "type": "reference", - "target": 2390, + "target": 2392, "name": "AuthOAuthServerApi", "package": "@supabase/auth-js" } }, { - "id": 1231, + "id": 1230, "name": "passkey", "variant": "declaration", "kind": 1024, @@ -12533,7 +13139,7 @@ ], "type": { "type": "reference", - "target": 2490, + "target": 2492, "name": "AuthPasskeyApi", "package": "@supabase/auth-js" } @@ -12549,7 +13155,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 81, + "line": 95, "character": 14 } ], @@ -12573,7 +13179,7 @@ } }, { - "id": 1247, + "id": 1246, "name": "persistSession", "variant": "declaration", "kind": 1024, @@ -12593,7 +13199,7 @@ } }, { - "id": 1260, + "id": 1259, "name": "refreshingDeferred", "variant": "declaration", "kind": 1024, @@ -12623,7 +13229,7 @@ "typeArguments": [ { "type": "reference", - "target": 2107, + "target": 2109, "name": "CallRefreshTokenResult", "package": "@supabase/auth-js" } @@ -12635,7 +13241,7 @@ } }, { - "id": 1254, + "id": 1253, "name": "stateChangeEmitters", "variant": "declaration", "kind": 1024, @@ -12671,7 +13277,7 @@ }, { "type": "reference", - "target": 1762, + "target": 1764, "name": "Subscription", "package": "@supabase/auth-js" } @@ -12681,7 +13287,7 @@ } }, { - "id": 1248, + "id": 1247, "name": "storage", "variant": "declaration", "kind": 1024, @@ -12697,13 +13303,13 @@ ], "type": { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } }, { - "id": 1232, + "id": 1231, "name": "storageKey", "variant": "declaration", "kind": 1024, @@ -12741,7 +13347,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 77, + "line": 85, "character": 14 } ], @@ -12761,7 +13367,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 82, + "line": 96, "character": 14 } ], @@ -12781,7 +13387,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 72, + "line": 80, "character": 14 } ], @@ -12791,7 +13397,7 @@ } }, { - "id": 1249, + "id": 1248, "name": "userStorage", "variant": "declaration", "kind": 1024, @@ -12818,7 +13424,7 @@ }, { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } @@ -12826,7 +13432,7 @@ } }, { - "id": 1257, + "id": 1256, "name": "visibilityChangedCallback", "variant": "declaration", "kind": 1024, @@ -12850,7 +13456,7 @@ { "type": "reflection", "declaration": { - "id": 1258, + "id": 1257, "name": "__type", "variant": "declaration", "kind": 65536, @@ -12864,7 +13470,7 @@ ], "signatures": [ { - "id": 1259, + "id": 1258, "name": "__type", "variant": "signature", "kind": 4096, @@ -12899,7 +13505,7 @@ } }, { - "id": 1234, + "id": 1233, "name": "jwks", "variant": "declaration", "kind": 262144, @@ -12919,7 +13525,7 @@ } ], "getSignature": { - "id": 1235, + "id": 1234, "name": "jwks", "variant": "signature", "kind": 524288, @@ -12942,14 +13548,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1236, + "id": 1235, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1237, + "id": 1236, "name": "keys", "variant": "declaration", "kind": 1024, @@ -12965,7 +13571,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -12975,7 +13581,7 @@ "groups": [ { "title": "Properties", - "children": [1237] + "children": [1236] } ], "sources": [ @@ -12989,7 +13595,7 @@ } }, "setSignature": { - "id": 1238, + "id": 1237, "name": "jwks", "variant": "signature", "kind": 1048576, @@ -13003,7 +13609,7 @@ ], "parameters": [ { - "id": 1239, + "id": 1238, "name": "value", "variant": "param", "kind": 32768, @@ -13011,14 +13617,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1240, + "id": 1239, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1241, + "id": 1240, "name": "keys", "variant": "declaration", "kind": 1024, @@ -13034,7 +13640,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -13044,7 +13650,7 @@ "groups": [ { "title": "Properties", - "children": [1241] + "children": [1240] } ], "sources": [ @@ -13065,7 +13671,7 @@ } }, { - "id": 1242, + "id": 1241, "name": "jwks_cached_at", "variant": "declaration", "kind": 262144, @@ -13085,7 +13691,7 @@ } ], "getSignature": { - "id": 1243, + "id": 1242, "name": "jwks_cached_at", "variant": "signature", "kind": 524288, @@ -13103,7 +13709,7 @@ } }, "setSignature": { - "id": 1244, + "id": 1243, "name": "jwks_cached_at", "variant": "signature", "kind": 1048576, @@ -13117,7 +13723,7 @@ ], "parameters": [ { - "id": 1245, + "id": 1244, "name": "value", "variant": "param", "kind": 32768, @@ -13145,7 +13751,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1875, + "line": 1910, "character": 14 } ], @@ -13159,7 +13765,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1875, + "line": 1910, "character": 14 } ], @@ -13190,7 +13796,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1876, + "line": 1911, "character": 8 } ], @@ -13209,7 +13815,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1875, + "line": 1910, "character": 47 } ] @@ -13226,7 +13832,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -13248,7 +13854,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1743, + "line": 1778, "character": 14 } ], @@ -13262,7 +13868,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1743, + "line": 1778, "character": 14 } ], @@ -13291,7 +13897,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1744, + "line": 1779, "character": 8 } ], @@ -13309,7 +13915,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1745, + "line": 1780, "character": 8 } ], @@ -13328,7 +13934,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1743, + "line": 1778, "character": 42 } ] @@ -13345,7 +13951,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -13367,7 +13973,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1973, "character": 14 } ], @@ -13381,7 +13987,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1973, "character": 14 } ], @@ -13396,7 +14002,7 @@ }, "type": { "type": "reference", - "target": 2119, + "target": 2121, "name": "SignOut", "package": "@supabase/auth-js" } @@ -13427,7 +14033,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1939, + "line": 1974, "character": 8 } ], @@ -13440,7 +14046,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -13457,7 +14063,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1973, "character": 53 } ] @@ -13481,7 +14087,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1612, + "line": 1647, "character": 14 } ], @@ -13495,7 +14101,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1612, + "line": 1647, "character": 14 } ], @@ -13508,7 +14114,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1741, + "target": 1743, "name": "UserAttributes", "package": "@supabase/auth-js" } @@ -13541,7 +14147,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1613, + "line": 1648, "character": 8 } ], @@ -13560,7 +14166,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1612, + "line": 1647, "character": 64 } ] @@ -13577,7 +14183,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -13588,6 +14194,152 @@ } ] }, + { + "id": 1506, + "name": "dispose", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", + "line": 2320, + "character": 4 + } + ], + "signatures": [ + { + "id": 1507, + "name": "dispose", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tears down the client's background work: stops the auto-refresh interval,\nremoves the " + }, + { + "kind": "code", + "text": "`visibilitychange`" + }, + { + "kind": "text", + "text": " listener, closes the cross-tab\n" + }, + { + "kind": "code", + "text": "`BroadcastChannel`" + }, + { + "kind": "text", + "text": ", and clears registered " + }, + { + "kind": "code", + "text": "`onAuthStateChange`" + }, + { + "kind": "text", + "text": " subscribers.\n\nCall this from cleanup hooks when the client is being replaced before\nits JS realm is destroyed. React Strict Mode and HMR are the common\ncases. Any in-flight " + }, + { + "kind": "code", + "text": "`fetch`" + }, + { + "kind": "text", + "text": " calls continue to completion and may still\nwrite to storage; dispose doesn't abort them or erase storage.\n\nLifecycle caveat: because in-flight refreshes are not aborted, a\ndisposed instance can still persist a rotated session to storage after\n" + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " returns. A subsequent " + }, + { + "kind": "code", + "text": "`createClient`" + }, + { + "kind": "text", + "text": " against the same\n" + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " will pick up that session on its next read. If you need\nstrict isolation between client lifecycles, await any pending auth\noperation before calling " + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " (or change the " + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " for\nthe replacement client).\n\nSafe to call repeatedly." + } + ], + "blockTags": [ + { + "tag": "@category", + "content": [ + { + "kind": "text", + "text": "Auth" + } + ] + }, + { + "tag": "@example", + "name": "Cleanup on React unmount", + "content": [ + { + "kind": "code", + "text": "```ts\nuseEffect(() => {\n const client = createClient(...)\n return () => { client.auth.dispose() }\n}, [])\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", + "line": 2320, + "character": 4 + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, { "id": 1318, "name": "exchangeCodeForSession", @@ -13597,7 +14349,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 765, + "line": 797, "character": 4 } ], @@ -13678,7 +14430,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 765, + "line": 797, "character": 4 } ], @@ -13704,7 +14456,7 @@ "typeArguments": [ { "type": "reference", - "target": 1674, + "target": 1676, "name": "AuthTokenResponse", "package": "@supabase/auth-js" } @@ -13716,7 +14468,7 @@ ] }, { - "id": 1523, + "id": 1525, "name": "getClaims", "variant": "declaration", "kind": 2048, @@ -13724,13 +14476,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2462, "character": 4 } ], "signatures": [ { - "id": 1524, + "id": 1526, "name": "getClaims", "variant": "signature", "kind": 4096, @@ -13831,13 +14583,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2462, "character": 4 } ], "parameters": [ { - "id": 1525, + "id": 1527, "name": "jwt", "variant": "param", "kind": 32768, @@ -13867,7 +14619,7 @@ } }, { - "id": 1526, + "id": 1528, "name": "options", "variant": "param", "kind": 32768, @@ -13885,14 +14637,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1527, + "id": 1529, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1529, + "id": 1531, "name": "allowExpired", "variant": "declaration", "kind": 1024, @@ -13926,7 +14678,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2399, + "line": 2468, "character": 8 } ], @@ -13936,7 +14688,7 @@ } }, { - "id": 1530, + "id": 1532, "name": "jwks", "variant": "declaration", "kind": 1024, @@ -13954,21 +14706,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2401, + "line": 2470, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1531, + "id": 1533, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1532, + "id": 1534, "name": "keys", "variant": "declaration", "kind": 1024, @@ -13976,7 +14728,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2402, + "line": 2471, "character": 12 } ], @@ -13984,7 +14736,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -13994,13 +14746,13 @@ "groups": [ { "title": "Properties", - "children": [1532] + "children": [1534] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2401, + "line": 2470, "character": 15 } ] @@ -14008,7 +14760,7 @@ } }, { - "id": 1528, + "id": 1530, "name": "keys", "variant": "declaration", "kind": 1024, @@ -14032,7 +14784,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2397, + "line": 2466, "character": 8 } ], @@ -14040,7 +14792,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -14050,13 +14802,13 @@ "groups": [ { "title": "Properties", - "children": [1529, 1530, 1528] + "children": [1531, 1532, 1530] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2462, "character": 38 } ] @@ -14077,14 +14829,14 @@ { "type": "reflection", "declaration": { - "id": 1533, + "id": 1535, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1534, + "id": 1536, "name": "data", "variant": "declaration", "kind": 1024, @@ -14092,21 +14844,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2405, + "line": 2474, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1535, + "id": 1537, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1536, + "id": 1538, "name": "claims", "variant": "declaration", "kind": 1024, @@ -14114,19 +14866,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2406, + "line": 2475, "character": 12 } ], "type": { "type": "reference", - "target": 2144, + "target": 2146, "name": "JwtPayload", "package": "@supabase/auth-js" } }, { - "id": 1537, + "id": 1539, "name": "header", "variant": "declaration", "kind": 1024, @@ -14134,19 +14886,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2407, + "line": 2476, "character": 12 } ], "type": { "type": "reference", - "target": 2128, + "target": 2130, "name": "JwtHeader", "package": "@supabase/auth-js" } }, { - "id": 1538, + "id": 1540, "name": "signature", "variant": "declaration", "kind": 1024, @@ -14154,7 +14906,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2408, + "line": 2477, "character": 12 } ], @@ -14172,13 +14924,13 @@ "groups": [ { "title": "Properties", - "children": [1536, 1537, 1538] + "children": [1538, 1539, 1540] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2405, + "line": 2474, "character": 14 } ] @@ -14186,7 +14938,7 @@ } }, { - "id": 1539, + "id": 1541, "name": "error", "variant": "declaration", "kind": 1024, @@ -14194,7 +14946,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2410, + "line": 2479, "character": 8 } ], @@ -14207,13 +14959,13 @@ "groups": [ { "title": "Properties", - "children": [1534, 1539] + "children": [1536, 1541] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2404, + "line": 2473, "character": 16 } ] @@ -14222,14 +14974,14 @@ { "type": "reflection", "declaration": { - "id": 1540, + "id": 1542, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1541, + "id": 1543, "name": "data", "variant": "declaration", "kind": 1024, @@ -14237,7 +14989,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2412, + "line": 2481, "character": 8 } ], @@ -14247,7 +14999,7 @@ } }, { - "id": 1542, + "id": 1544, "name": "error", "variant": "declaration", "kind": 1024, @@ -14255,13 +15007,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2413, + "line": 2482, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14270,13 +15022,13 @@ "groups": [ { "title": "Properties", - "children": [1541, 1542] + "children": [1543, 1544] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2411, + "line": 2480, "character": 8 } ] @@ -14285,14 +15037,14 @@ { "type": "reflection", "declaration": { - "id": 1543, + "id": 1545, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1544, + "id": 1546, "name": "data", "variant": "declaration", "kind": 1024, @@ -14300,7 +15052,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2415, + "line": 2484, "character": 8 } ], @@ -14310,7 +15062,7 @@ } }, { - "id": 1545, + "id": 1547, "name": "error", "variant": "declaration", "kind": 1024, @@ -14318,7 +15070,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2416, + "line": 2485, "character": 8 } ], @@ -14331,13 +15083,13 @@ "groups": [ { "title": "Properties", - "children": [1544, 1545] + "children": [1546, 1547] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2414, + "line": 2483, "character": 8 } ] @@ -14361,7 +15113,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1384, + "line": 1416, "character": 4 } ], @@ -14443,15 +15195,7 @@ }, { "kind": "text", - "text": " to fetch the user object directly from the Auth server for this purpose.\n- When using in a browser, this function is synchronized across 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 " - }, - { - "kind": "code", - "text": "`lock`" - }, - { - "kind": "text", - "text": " property, if necessary, to make sure there are no race conditions while the session is being refreshed." + "text": " to fetch the user object directly from the Auth server for this purpose.\n- Cross-tab refresh races are handled by the GoTrue server (the rotated token from the first tab is returned to subsequent tabs via the parent-of-active mechanism), so no client-side serialization is needed." } ] }, @@ -14483,7 +15227,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1384, + "line": 1416, "character": 4 } ], @@ -14515,7 +15259,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1385, + "line": 1417, "character": 8 } ], @@ -14537,7 +15281,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1386, + "line": 1418, "character": 12 } ], @@ -14558,7 +15302,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1385, + "line": 1417, "character": 14 } ] @@ -14574,7 +15318,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1388, + "line": 1420, "character": 8 } ], @@ -14593,7 +15337,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1384, + "line": 1416, "character": 26 } ] @@ -14617,7 +15361,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1390, + "line": 1422, "character": 8 } ], @@ -14639,7 +15383,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1391, + "line": 1423, "character": 12 } ], @@ -14658,7 +15402,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1390, + "line": 1422, "character": 14 } ] @@ -14674,13 +15418,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1393, + "line": 1425, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14695,7 +15439,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1389, + "line": 1421, "character": 8 } ] @@ -14719,7 +15463,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1395, + "line": 1427, "character": 8 } ], @@ -14741,7 +15485,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1396, + "line": 1428, "character": 12 } ], @@ -14760,7 +15504,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1395, + "line": 1427, "character": 14 } ] @@ -14776,7 +15520,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1398, + "line": 1430, "character": 8 } ], @@ -14795,7 +15539,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1394, + "line": 1426, "character": 8 } ] @@ -14819,7 +15563,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1493, + "line": 1528, "character": 4 } ], @@ -14910,7 +15654,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1493, + "line": 1528, "character": 4 } ], @@ -14946,7 +15690,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -14966,7 +15710,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2087, + "line": 2125, "character": 4 } ], @@ -15039,7 +15783,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2087, + "line": 2125, "character": 4 } ], @@ -15071,7 +15815,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2088, + "line": 2126, "character": 8 } ], @@ -15093,7 +15837,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2089, + "line": 2127, "character": 12 } ], @@ -15101,7 +15845,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1708, + "target": 1710, "name": "UserIdentity", "package": "@supabase/auth-js" } @@ -15117,7 +15861,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2088, + "line": 2126, "character": 14 } ] @@ -15133,7 +15877,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2091, + "line": 2129, "character": 8 } ], @@ -15152,7 +15896,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2087, + "line": 2125, "character": 33 } ] @@ -15176,7 +15920,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2093, + "line": 2131, "character": 8 } ], @@ -15194,13 +15938,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2094, + "line": 2132, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -15215,7 +15959,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2092, + "line": 2130, "character": 8 } ] @@ -15239,7 +15983,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 137, + "line": 154, "character": 4 } ], @@ -15272,7 +16016,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 137, + "line": 154, "character": 4 } ], @@ -15285,7 +16029,7 @@ "typeArguments": [ { "type": "reference", - "target": 2104, + "target": 2106, "name": "InitializeResult", "package": "@supabase/auth-js" } @@ -15305,7 +16049,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 121, + "line": 138, "character": 4 } ], @@ -15327,7 +16071,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 121, + "line": 138, "character": 4 } ], @@ -15347,12 +16091,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2100, + "line": 2138, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2104, + "line": 2142, "character": 4 } ], @@ -15374,7 +16118,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2100, + "line": 2138, "character": 4 } ], @@ -15387,7 +16131,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1810, + "target": 1812, "name": "SignInWithOAuthCredentials", "package": "@supabase/auth-js" } @@ -15402,7 +16146,7 @@ "typeArguments": [ { "type": "reference", - "target": 1683, + "target": 1685, "name": "OAuthResponse", "package": "@supabase/auth-js" } @@ -15428,7 +16172,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2104, + "line": 2142, "character": 4 } ], @@ -15441,7 +16185,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1822, + "target": 1824, "name": "SignInWithIdTokenCredentials", "package": "@supabase/auth-js" } @@ -15456,7 +16200,7 @@ "typeArguments": [ { "type": "reference", - "target": 1674, + "target": 1676, "name": "AuthTokenResponse", "package": "@supabase/auth-js" } @@ -15476,12 +16220,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 4 } ], @@ -15503,7 +16247,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 4 } ], @@ -15533,7 +16277,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 32 } ], @@ -15547,7 +16291,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 32 } ], @@ -15560,7 +16304,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1587, + "target": 1589, "name": "AuthChangeEvent", "package": "@supabase/auth-js" } @@ -15616,7 +16360,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1948, + "line": 1983, "character": 8 } ], @@ -15638,13 +16382,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1949, + "line": 1984, "character": 12 } ], "type": { "type": "reference", - "target": 1762, + "target": 1764, "name": "Subscription", "package": "@supabase/auth-js" } @@ -15659,7 +16403,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1948, + "line": 1983, "character": 14 } ] @@ -15676,7 +16420,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 92 } ] @@ -15693,15 +16437,63 @@ "summary": [ { "kind": "text", - "text": "Avoid using an async function inside " + "text": "Receive a notification every time an auth event happens. Common reentry\npatterns (" }, { "kind": "code", - "text": "`onAuthStateChange`" + "text": "`getUser`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`setSession`" + }, + { + "kind": "text", + "text": ", reading the session from inside a\nhandler) complete normally. One hazard remains: calling " + }, + { + "kind": "code", + "text": "`refreshSession`" + }, + { + "kind": "text", + "text": "\n(or anything that routes through " + }, + { + "kind": "code", + "text": "`_callRefreshToken`" + }, + { + "kind": "text", + "text": ") from inside a\n" + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " handler. " + }, + { + "kind": "code", + "text": "`refreshingDeferred`" }, { "kind": "text", - "text": " as you might end\nup with a deadlock. The callback function runs inside an exclusive lock,\nso calling other Supabase Client APIs that also try to acquire the\nexclusive lock, might cause a deadlock. This behavior is observable across\ntabs. In the next major library version, this behavior will not be supported.\n\nReceive a notification every time an auth event happens." + "text": " resolves only after\n" + }, + { + "kind": "code", + "text": "`_notifyAllSubscribers`" + }, + { + "kind": "text", + "text": " returns, so the inner refresh dedupes onto the\nouter's unresolved promise and the two wait on each other." } ], "blockTags": [ @@ -15710,7 +16502,15 @@ "content": [ { "kind": "text", - "text": "Due to the possibility of deadlocks with async functions as callbacks, use the version without an async function." + "text": "Async callbacks can deadlock when they trigger a nested\nrefresh from a " + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " event. Prefer the sync overload, or move\nrefresh-triggering work outside the callback." } ] } @@ -15719,7 +16519,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 4 } ], @@ -15749,7 +16549,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 32 } ], @@ -15763,7 +16563,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 32 } ], @@ -15776,7 +16576,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1587, + "target": 1589, "name": "AuthChangeEvent", "package": "@supabase/auth-js" } @@ -15843,7 +16643,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1965, + "line": 2003, "character": 8 } ], @@ -15865,13 +16665,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1966, + "line": 2004, "character": 12 } ], "type": { "type": "reference", - "target": 1762, + "target": 1764, "name": "Subscription", "package": "@supabase/auth-js" } @@ -15886,7 +16686,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1965, + "line": 2003, "character": 14 } ] @@ -15903,7 +16703,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 101 } ] @@ -15921,7 +16721,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1237, + "line": 1269, "character": 4 } ], @@ -16006,7 +16806,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1237, + "line": 1269, "character": 4 } ], @@ -16019,7 +16819,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -16039,7 +16839,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1872, + "line": 1907, "character": 4 } ], @@ -16114,7 +16914,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1872, + "line": 1907, "character": 4 } ], @@ -16153,7 +16953,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1873, + "line": 1908, "character": 8 } ], @@ -16172,7 +16972,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1872, + "line": 1907, "character": 36 } ] @@ -16189,7 +16989,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -16201,7 +17001,7 @@ ] }, { - "id": 1549, + "id": 1551, "name": "registerPasskey", "variant": "declaration", "kind": 2048, @@ -16209,13 +17009,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2439, + "line": 2508, "character": 4 } ], "signatures": [ { - "id": 1550, + "id": 1552, "name": "registerPasskey", "variant": "signature", "kind": 4096, @@ -16250,13 +17050,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2439, + "line": 2508, "character": 4 } ], "parameters": [ { - "id": 1551, + "id": 1553, "name": "credentials", "variant": "param", "kind": 32768, @@ -16265,7 +17065,7 @@ }, "type": { "type": "reference", - "target": 2448, + "target": 2450, "name": "RegisterPasskeyCredentials", "package": "@supabase/auth-js" } @@ -16280,7 +17080,7 @@ "typeArguments": [ { "type": "reference", - "target": 2474, + "target": 2476, "name": "AuthPasskeyRegistrationVerifyResponse", "package": "@supabase/auth-js" } @@ -16300,7 +17100,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1298, + "line": 1330, "character": 4 } ], @@ -16450,7 +17250,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1298, + "line": 1330, "character": 4 } ], @@ -16463,7 +17263,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1908, + "target": 1910, "name": "ResendParams", "package": "@supabase/auth-js" } @@ -16478,7 +17278,7 @@ "typeArguments": [ { "type": "reference", - "target": 1669, + "target": 1671, "name": "AuthOtpResponse", "package": "@supabase/auth-js" } @@ -16498,7 +17298,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2037, + "line": 2075, "character": 4 } ], @@ -16625,7 +17425,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2037, + "line": 2075, "character": 4 } ], @@ -16685,7 +17485,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2039, + "line": 2077, "character": 8 } ], @@ -16713,7 +17513,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2038, + "line": 2076, "character": 8 } ], @@ -16732,7 +17532,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2037, + "line": 2075, "character": 51 } ] @@ -16768,7 +17568,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2041, + "line": 2079, "character": 8 } ], @@ -16792,7 +17592,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2042, + "line": 2080, "character": 8 } ], @@ -16811,7 +17611,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2040, + "line": 2078, "character": 16 } ] @@ -16835,7 +17635,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2044, + "line": 2082, "character": 8 } ], @@ -16853,13 +17653,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2045, + "line": 2083, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -16874,7 +17674,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2043, + "line": 2081, "character": 8 } ] @@ -16898,7 +17698,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1739, + "line": 1774, "character": 4 } ], @@ -16996,7 +17796,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1739, + "line": 1774, "character": 4 } ], @@ -17033,7 +17833,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1740, + "line": 1775, "character": 8 } ], @@ -17051,7 +17851,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1741, + "line": 1776, "character": 8 } ], @@ -17070,7 +17870,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1739, + "line": 1774, "character": 31 } ] @@ -17087,7 +17887,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -17107,7 +17907,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 218, + "line": 235, "character": 4 } ], @@ -17199,7 +17999,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 218, + "line": 235, "character": 4 } ], @@ -17214,7 +18014,7 @@ }, "type": { "type": "reference", - "target": 1772, + "target": 1774, "name": "SignInAnonymouslyCredentials", "package": "@supabase/auth-js" } @@ -17229,7 +18029,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -17249,7 +18049,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 945, + "line": 977, "character": 4 } ], @@ -17314,7 +18114,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 945, + "line": 977, "character": 4 } ], @@ -17327,7 +18127,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1822, + "target": 1824, "name": "SignInWithIdTokenCredentials", "package": "@supabase/auth-js" } @@ -17342,7 +18142,7 @@ "typeArguments": [ { "type": "reference", - "target": 1674, + "target": 1676, "name": "AuthTokenResponse", "package": "@supabase/auth-js" } @@ -17362,7 +18162,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 594, + "line": 626, "character": 4 } ], @@ -17529,7 +18329,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 594, + "line": 626, "character": 4 } ], @@ -17542,7 +18342,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1810, + "target": 1812, "name": "SignInWithOAuthCredentials", "package": "@supabase/auth-js" } @@ -17557,7 +18357,7 @@ "typeArguments": [ { "type": "reference", - "target": 1683, + "target": 1685, "name": "OAuthResponse", "package": "@supabase/auth-js" } @@ -17577,7 +18377,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1023, + "line": 1055, "character": 4 } ], @@ -17761,7 +18561,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1023, + "line": 1055, "character": 4 } ], @@ -17774,7 +18574,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1791, + "target": 1793, "name": "SignInWithPasswordlessCredentials", "package": "@supabase/auth-js" } @@ -17789,7 +18589,7 @@ "typeArguments": [ { "type": "reference", - "target": 1669, + "target": 1671, "name": "AuthOtpResponse", "package": "@supabase/auth-js" } @@ -17801,7 +18601,7 @@ ] }, { - "id": 1546, + "id": 1548, "name": "signInWithPasskey", "variant": "declaration", "kind": 2048, @@ -17809,13 +18609,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2428, + "line": 2497, "character": 4 } ], "signatures": [ { - "id": 1547, + "id": 1549, "name": "signInWithPasskey", "variant": "signature", "kind": 4096, @@ -17850,13 +18650,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2428, + "line": 2497, "character": 4 } ], "parameters": [ { - "id": 1548, + "id": 1550, "name": "credentials", "variant": "param", "kind": 32768, @@ -17865,7 +18665,7 @@ }, "type": { "type": "reference", - "target": 2442, + "target": 2444, "name": "SignInWithPasskeyCredentials", "package": "@supabase/auth-js" } @@ -17880,7 +18680,7 @@ "typeArguments": [ { "type": "reference", - "target": 2476, + "target": 2478, "name": "AuthPasskeyAuthenticationVerifyResponse", "package": "@supabase/auth-js" } @@ -17900,7 +18700,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 514, + "line": 546, "character": 4 } ], @@ -17969,13 +18769,96 @@ "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n phone: '+13334445555',\n password: 'some-password',\n})\n```" } ] + }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nLog the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so fields like " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": ", and " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": " aren't hidden. The " + }, + { + "kind": "code", + "text": "`error.code`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`'invalid_credentials'`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`'email_not_confirmed'`" + }, + { + "kind": "text", + "text": ") is often more useful for branching than " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": ", and the full object surfaces both." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n email: 'example@email.com',\n password: 'example-password',\n})\nif (error) {\n console.error(error)\n return\n}\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 514, + "line": 546, "character": 4 } ], @@ -17988,7 +18871,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1786, + "target": 1788, "name": "SignInWithPasswordCredentials", "package": "@supabase/auth-js" } @@ -18003,7 +18886,7 @@ "typeArguments": [ { "type": "reference", - "target": 1678, + "target": 1680, "name": "AuthTokenResponsePassword", "package": "@supabase/auth-js" } @@ -18023,7 +18906,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1215, + "line": 1247, "character": 4 } ], @@ -18101,7 +18984,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1215, + "line": 1247, "character": 4 } ], @@ -18114,7 +18997,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1922, + "target": 1924, "name": "SignInWithSSO", "package": "@supabase/auth-js" } @@ -18129,7 +19012,7 @@ "typeArguments": [ { "type": "reference", - "target": 1696, + "target": 1698, "name": "SSOResponse", "package": "@supabase/auth-js" } @@ -18149,7 +19032,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 854, + "line": 886, "character": 4 } ], @@ -18240,7 +19123,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 854, + "line": 886, "character": 4 } ], @@ -18253,7 +19136,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1883, + "target": 1885, "name": "Web3Credentials", "package": "@supabase/auth-js" } @@ -18287,7 +19170,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 855, + "line": 887, "character": 8 } ], @@ -18309,7 +19192,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 856, + "line": 888, "character": 12 } ], @@ -18329,7 +19212,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 857, + "line": 889, "character": 12 } ], @@ -18350,7 +19233,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 855, + "line": 887, "character": 14 } ] @@ -18366,7 +19249,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 859, + "line": 891, "character": 8 } ], @@ -18385,7 +19268,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 854, + "line": 886, "character": 58 } ] @@ -18409,7 +19292,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 861, + "line": 893, "character": 8 } ], @@ -18431,7 +19314,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 862, + "line": 894, "character": 12 } ], @@ -18449,7 +19332,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 863, + "line": 895, "character": 12 } ], @@ -18468,7 +19351,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 861, + "line": 893, "character": 14 } ] @@ -18484,13 +19367,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 865, + "line": 897, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -18505,7 +19388,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 860, + "line": 892, "character": 8 } ] @@ -18529,7 +19412,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1935, + "line": 1970, "character": 4 } ], @@ -18689,7 +19572,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1935, + "line": 1970, "character": 4 } ], @@ -18704,7 +19587,7 @@ }, "type": { "type": "reference", - "target": 2119, + "target": 2121, "name": "SignOut", "package": "@supabase/auth-js" } @@ -18735,7 +19618,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1971, "character": 8 } ], @@ -18748,7 +19631,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -18765,7 +19648,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1935, + "line": 1970, "character": 40 } ] @@ -18787,7 +19670,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 396, + "line": 413, "character": 4 } ], @@ -18992,7 +19875,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 396, + "line": 413, "character": 4 } ], @@ -19005,7 +19888,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1780, "name": "SignUpWithPasswordCredentials", "package": "@supabase/auth-js" } @@ -19020,7 +19903,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -19040,7 +19923,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2220, + "line": 2258, "character": 4 } ], @@ -19061,7 +19944,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClientOptions#autoRefreshToken", - "target": 1613 + "target": 1615 }, { "kind": "text", @@ -19115,7 +19998,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2220, + "line": 2258, "character": 4 } ], @@ -19146,7 +20029,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2251, + "line": 2289, "character": 4 } ], @@ -19207,7 +20090,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2251, + "line": 2289, "character": 4 } ], @@ -19238,7 +20121,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2132, + "line": 2170, "character": 4 } ], @@ -19298,7 +20181,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2132, + "line": 2170, "character": 4 } ], @@ -19311,7 +20194,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1708, + "target": 1710, "name": "UserIdentity", "package": "@supabase/auth-js" } @@ -19345,7 +20228,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2133, + "line": 2171, "character": 8 } ], @@ -19369,7 +20252,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2134, + "line": 2172, "character": 8 } ], @@ -19388,7 +20271,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2132, + "line": 2170, "character": 52 } ] @@ -19412,7 +20295,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2136, + "line": 2174, "character": 8 } ], @@ -19430,13 +20313,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2137, + "line": 2175, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -19451,7 +20334,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2135, + "line": 2173, "character": 8 } ] @@ -19475,7 +20358,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1609, + "line": 1644, "character": 4 } ], @@ -19656,7 +20539,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1609, + "line": 1644, "character": 4 } ], @@ -19669,7 +20552,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1741, + "target": 1743, "name": "UserAttributes", "package": "@supabase/auth-js" } @@ -19702,7 +20585,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1610, + "line": 1645, "character": 8 } ], @@ -19721,7 +20604,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1609, + "line": 1644, "character": 53 } ] @@ -19738,7 +20621,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -19758,7 +20641,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1161, + "line": 1193, "character": 4 } ], @@ -19931,7 +20814,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1161, + "line": 1193, "character": 4 } ], @@ -19944,7 +20827,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1884, + "target": 1886, "name": "VerifyOtpParams", "package": "@supabase/auth-js" } @@ -19959,7 +20842,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -19974,26 +20857,26 @@ "groups": [ { "title": "Constructors", - "children": [1224] + "children": [1223] }, { "title": "Properties", "children": [ - 1228, 1255, 1256, 1246, 1291, 1262, 1290, 1277, 1233, 1275, 1271, 1261, 1285, - 1286, 1289, 1292, 1293, 1250, 1229, 1230, 1231, 1287, 1247, 1260, 1254, 1248, - 1232, 1276, 1288, 1270, 1249, 1257 + 1260, 1227, 1254, 1255, 1245, 1291, 1262, 1290, 1277, 1232, 1275, 1271, 1261, + 1285, 1286, 1289, 1292, 1293, 1249, 1228, 1229, 1230, 1287, 1246, 1259, 1253, + 1247, 1231, 1276, 1288, 1270, 1248, 1256 ] }, { "title": "Accessors", - "children": [1234, 1242] + "children": [1233, 1241] }, { "title": "Methods", "children": [ - 1410, 1399, 1423, 1387, 1318, 1523, 1357, 1377, 1464, 1303, 1298, 1474, 1428, - 1351, 1405, 1549, 1354, 1450, 1393, 1306, 1339, 1315, 1342, 1546, 1312, 1348, - 1321, 1418, 1309, 1502, 1504, 1481, 1381, 1345 + 1410, 1399, 1423, 1387, 1506, 1318, 1525, 1357, 1377, 1464, 1303, 1298, 1474, + 1428, 1351, 1405, 1551, 1354, 1450, 1393, 1306, 1339, 1315, 1342, 1548, 1312, + 1348, 1321, 1418, 1309, 1502, 1504, 1481, 1381, 1345 ] } ], @@ -20001,18 +20884,18 @@ { "title": "Auth", "children": [ - 1318, 1523, 1357, 1377, 1464, 1303, 1351, 1405, 1549, 1354, 1450, 1393, 1306, - 1339, 1315, 1342, 1546, 1312, 1348, 1321, 1418, 1309, 1502, 1504, 1481, 1381, - 1345 + 1506, 1318, 1525, 1357, 1377, 1464, 1303, 1351, 1405, 1551, 1354, 1450, 1393, + 1306, 1339, 1315, 1342, 1548, 1312, 1348, 1321, 1418, 1309, 1502, 1504, 1481, + 1381, 1345 ] }, { "title": "Other", "children": [ - 1224, 1228, 1255, 1256, 1246, 1291, 1262, 1290, 1277, 1233, 1275, 1271, 1261, - 1285, 1286, 1289, 1292, 1293, 1250, 1229, 1230, 1231, 1287, 1247, 1260, 1254, - 1248, 1232, 1276, 1288, 1270, 1249, 1257, 1234, 1242, 1410, 1399, 1423, 1387, - 1298, 1474, 1428 + 1223, 1260, 1227, 1254, 1255, 1245, 1291, 1262, 1290, 1277, 1232, 1275, 1271, + 1261, 1285, 1286, 1289, 1292, 1293, 1249, 1228, 1229, 1230, 1287, 1246, 1259, + 1253, 1247, 1231, 1276, 1288, 1270, 1248, 1256, 1233, 1241, 1410, 1399, 1423, + 1387, 1298, 1474, 1428 ] } ], @@ -20025,25 +20908,44 @@ ] }, { - "id": 1569, + "id": 1571, "name": "NavigatorLockAcquireTimeoutError", "variant": "declaration", "kind": 128, "flags": {}, "comment": { - "summary": [ - { - "kind": "text", - "text": "Error thrown when the browser Navigator Lock API fails to acquire a lock." - } - ], + "summary": [], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "The auth client doesn't call " + }, { "kind": "code", - "text": "```ts\nimport { NavigatorLockAcquireTimeoutError } from '@supabase/auth-js'\n\nthrow new NavigatorLockAcquireTimeoutError('Lock timed out')\n```" + "text": "`navigator.locks`" + }, + { + "kind": "text", + "text": ", so this error\nnever originates from " + }, + { + "kind": "code", + "text": "`supabase.auth.*`" + }, + { + "kind": "text", + "text": " calls. Direct callers of\n" + }, + { + "kind": "code", + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " still receive it on acquire timeout." } ] } @@ -20051,7 +20953,7 @@ }, "children": [ { - "id": 1570, + "id": 1572, "name": "constructor", "variant": "declaration", "kind": 512, @@ -20059,13 +20961,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 28, + "line": 29, "character": 4 } ], "signatures": [ { - "id": 1571, + "id": 1573, "name": "NavigatorLockAcquireTimeoutError", "variant": "signature", "kind": 16384, @@ -20073,13 +20975,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 28, + "line": 29, "character": 4 } ], "parameters": [ { - "id": 1572, + "id": 1574, "name": "message", "variant": "param", "kind": 32768, @@ -20092,7 +20994,7 @@ ], "type": { "type": "reference", - "target": 1569, + "target": 1571, "name": "NavigatorLockAcquireTimeoutError", "package": "@supabase/auth-js" }, @@ -20110,7 +21012,7 @@ } }, { - "id": 1573, + "id": 1575, "name": "isAcquireTimeout", "variant": "declaration", "kind": 1024, @@ -20121,7 +21023,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 27, + "line": 28, "character": 13 } ], @@ -20140,17 +21042,17 @@ "groups": [ { "title": "Constructors", - "children": [1570] + "children": [1572] }, { "title": "Properties", - "children": [1573] + "children": [1575] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 40, + "line": 36, "character": 21 } ], @@ -20184,7 +21086,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -20237,7 +21139,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -20308,7 +21210,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 696, + "line": 715, "character": 4 } ], @@ -20328,7 +21230,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 699, + "line": 718, "character": 4 } ], @@ -20554,7 +21456,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 694, + "line": 713, "character": 4 } ], @@ -20579,7 +21481,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 700, + "line": 719, "character": 4 } ], @@ -20597,7 +21499,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 692, + "line": 711, "character": 4 } ], @@ -20638,7 +21540,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 703, + "line": 722, "character": 4 } ], @@ -20658,7 +21560,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 695, + "line": 714, "character": 4 } ], @@ -20678,7 +21580,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 701, + "line": 720, "character": 4 } ], @@ -20698,7 +21600,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 697, + "line": 716, "character": 4 } ], @@ -20718,7 +21620,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 698, + "line": 717, "character": 4 } ], @@ -20741,7 +21643,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 693, + "line": 712, "character": 4 } ], @@ -20766,7 +21668,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 702, + "line": 721, "character": 4 } ], @@ -20785,7 +21687,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 23 } ] @@ -20840,7 +21742,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 660, + "line": 679, "character": 12 } ], @@ -20860,7 +21762,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 663, + "line": 682, "character": 12 } ], @@ -21088,7 +21990,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 658, + "line": 677, "character": 12 } ], @@ -21113,7 +22015,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 664, + "line": 683, "character": 12 } ], @@ -21133,7 +22035,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 656, + "line": 675, "character": 12 } ], @@ -21174,7 +22076,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 667, + "line": 686, "character": 12 } ], @@ -21195,7 +22097,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 659, + "line": 678, "character": 12 } ], @@ -21215,7 +22117,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 665, + "line": 684, "character": 12 } ], @@ -21235,7 +22137,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 661, + "line": 680, "character": 12 } ], @@ -21256,7 +22158,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 662, + "line": 681, "character": 12 } ], @@ -21281,7 +22183,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 657, + "line": 676, "character": 12 } ], @@ -21306,7 +22208,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 666, + "line": 685, "character": 12 } ], @@ -21324,7 +22226,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -21494,7 +22396,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -21548,7 +22450,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 901, + "line": 920, "character": 4 } ], @@ -21567,7 +22469,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 43 } ] @@ -21591,7 +22493,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 903, + "line": 922, "character": 4 } ], @@ -21610,7 +22512,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 902, + "line": 921, "character": 6 } ] @@ -21833,7 +22735,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -21870,7 +22772,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -21911,7 +22813,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 805, + "line": 824, "character": 2 } ], @@ -21961,7 +22863,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 805, + "line": 824, "character": 2 } ], @@ -22044,7 +22946,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -22077,7 +22979,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -22121,7 +23023,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -22229,7 +23131,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -22249,7 +23151,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -22282,7 +23184,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -22391,7 +23293,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -22405,7 +23307,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -22539,7 +23441,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -22553,7 +23455,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -22660,7 +23562,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -22699,7 +23601,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -22803,7 +23705,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 655, + "line": 674, "character": 23 } ], @@ -22928,7 +23830,127 @@ "summary": [ { "kind": "text", - "text": "Error format\n\n" + "text": "Error format\n\nReturned by every PostgREST request that fails. When something fails, the\nsingle most useful field is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — Postgres often returns the\nactionable fix there, not in " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": ". Always log the full object (e.g.\n" + }, + { + "kind": "code", + "text": "`console.error(error)`" + }, + { + "kind": "text", + "text": "); logging only " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": " hides the hint.\n\nRead the fields in roughly this order of usefulness:\n\n- " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — actionable guidance from the database when available. For\n permission-denied errors (" + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "), this is the literal SQL to fix the\n problem, e.g.\n " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.users TO anon;\"`" + }, + { + "kind": "text", + "text": ".\n Missing column? " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " suggests the column you probably meant. Whenever\n Postgres knows the fix, it puts it in " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": ".\n- " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": " — stable error code from PostgREST (e.g. " + }, + { + "kind": "code", + "text": "`PGRST301`" + }, + { + "kind": "text", + "text": ") or Postgres\n (e.g. " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "). Branch on this rather than on " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " text.\n- " + }, + { + "kind": "code", + "text": "`details`" + }, + { + "kind": "text", + "text": " — extra context, often the offending value, key, or row.\n- " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " — human-readable summary. Useful in UI strings; less useful\n for debugging.\n\n" }, { "kind": "inline-tag", @@ -22948,7 +23970,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 24, + "line": 43, "character": 2 } ], @@ -22976,7 +23998,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 24, + "line": 43, "character": 2 } ], @@ -23005,7 +24027,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 28, + "line": 47, "character": 4 } ], @@ -23023,7 +24045,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 26, + "line": 45, "character": 4 } ], @@ -23041,7 +24063,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 27, + "line": 46, "character": 4 } ], @@ -23059,7 +24081,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 25, + "line": 44, "character": 4 } ], @@ -23078,7 +24100,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 24, + "line": 43, "character": 23 } ] @@ -23114,7 +24136,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 10, + "line": 29, "character": 2 } ], @@ -23132,7 +24154,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 8, + "line": 27, "character": 2 } ], @@ -23150,7 +24172,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 9, + "line": 28, "character": 2 } ], @@ -23168,7 +24190,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 30, + "line": 49, "character": 2 } ], @@ -23182,7 +24204,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 30, + "line": 49, "character": 2 } ], @@ -23204,7 +24226,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 35, + "line": 54, "character": 4 } ], @@ -23222,7 +24244,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 33, + "line": 52, "character": 4 } ], @@ -23240,7 +24262,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 34, + "line": 53, "character": 4 } ], @@ -23258,7 +24280,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 32, + "line": 51, "character": 4 } ], @@ -23276,7 +24298,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 31, + "line": 50, "character": 4 } ], @@ -23295,7 +24317,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 30, + "line": 49, "character": 12 } ] @@ -23322,7 +24344,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 7, + "line": 26, "character": 14 } ], @@ -23354,7 +24376,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -23407,7 +24429,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -23538,7 +24560,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 696, + "line": 715, "character": 4 } ], @@ -23558,7 +24580,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 699, + "line": 718, "character": 4 } ], @@ -23784,7 +24806,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 694, + "line": 713, "character": 4 } ], @@ -23809,7 +24831,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 700, + "line": 719, "character": 4 } ], @@ -23827,7 +24849,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 692, + "line": 711, "character": 4 } ], @@ -23868,7 +24890,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 703, + "line": 722, "character": 4 } ], @@ -23888,7 +24910,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 695, + "line": 714, "character": 4 } ], @@ -23908,7 +24930,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 701, + "line": 720, "character": 4 } ], @@ -23928,7 +24950,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 697, + "line": 716, "character": 4 } ], @@ -23948,7 +24970,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 698, + "line": 717, "character": 4 } ], @@ -23971,7 +24993,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 693, + "line": 712, "character": 4 } ], @@ -23996,7 +25018,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 702, + "line": 721, "character": 4 } ], @@ -24017,7 +25039,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 23 } ] @@ -24115,7 +25137,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 660, + "line": 679, "character": 12 } ], @@ -24141,7 +25163,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 663, + "line": 682, "character": 12 } ], @@ -24375,7 +25397,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 658, + "line": 677, "character": 12 } ], @@ -24406,7 +25428,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 664, + "line": 683, "character": 12 } ], @@ -24432,7 +25454,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 656, + "line": 675, "character": 12 } ], @@ -24479,7 +25501,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 667, + "line": 686, "character": 12 } ], @@ -24506,7 +25528,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 659, + "line": 678, "character": 12 } ], @@ -24532,7 +25554,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 665, + "line": 684, "character": 12 } ], @@ -24558,7 +25580,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 661, + "line": 680, "character": 12 } ], @@ -24585,7 +25607,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 662, + "line": 681, "character": 12 } ], @@ -24616,7 +25638,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 657, + "line": 676, "character": 12 } ], @@ -24647,7 +25669,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 666, + "line": 685, "character": 12 } ], @@ -24672,7 +25694,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -24804,7 +25826,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -24860,12 +25882,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1860, + "line": 1879, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1861, + "line": 1880, "character": 2 } ], @@ -24879,7 +25901,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1860, + "line": 1879, "character": 2 } ], @@ -24986,7 +26008,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1861, + "line": 1880, "character": 2 } ], @@ -25065,12 +26087,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1858, + "line": 1877, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1859, + "line": 1878, "character": 2 } ], @@ -25084,7 +26106,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1858, + "line": 1877, "character": 2 } ], @@ -25191,7 +26213,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1859, + "line": 1878, "character": 2 } ], @@ -25272,7 +26294,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -25369,7 +26391,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -25415,7 +26437,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1712, + "line": 1731, "character": 2 } ], @@ -25541,7 +26563,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1712, + "line": 1731, "character": 2 } ], @@ -25873,7 +26895,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -26031,7 +27053,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -26088,7 +27110,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1589, + "line": 1608, "character": 4 } ], @@ -26124,7 +27146,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1592, + "line": 1611, "character": 4 } ], @@ -26164,7 +27186,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1594, + "line": 1613, "character": 4 } ], @@ -26209,7 +27231,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1591, + "line": 1610, "character": 4 } ], @@ -26253,7 +27275,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1590, + "line": 1609, "character": 4 } ], @@ -26289,7 +27311,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1593, + "line": 1612, "character": 4 } ], @@ -26308,7 +27330,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1588, + "line": 1607, "character": 6 } ] @@ -26409,12 +27431,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2045, + "line": 2064, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2046, + "line": 2065, "character": 2 } ], @@ -26428,7 +27450,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2045, + "line": 2064, "character": 2 } ], @@ -26607,7 +27629,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2046, + "line": 2065, "character": 2 } ], @@ -26664,7 +27686,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -26707,7 +27729,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -26768,12 +27790,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1765, + "line": 1784, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1766, + "line": 1785, "character": 2 } ], @@ -26787,7 +27809,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1765, + "line": 1784, "character": 2 } ], @@ -26859,7 +27881,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1766, + "line": 1785, "character": 2 } ], @@ -26903,12 +27925,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1767, + "line": 1786, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1768, + "line": 1787, "character": 2 } ], @@ -26922,7 +27944,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1767, + "line": 1786, "character": 2 } ], @@ -26994,7 +28016,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1768, + "line": 1787, "character": 2 } ], @@ -27038,12 +28060,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1779, + "line": 1798, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1780, + "line": 1799, "character": 2 } ], @@ -27057,7 +28079,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1779, + "line": 1798, "character": 2 } ], @@ -27115,7 +28137,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1780, + "line": 1799, "character": 2 } ], @@ -27159,12 +28181,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1781, + "line": 1800, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1782, + "line": 1801, "character": 2 } ], @@ -27178,7 +28200,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1781, + "line": 1800, "character": 2 } ], @@ -27243,7 +28265,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1782, + "line": 1801, "character": 2 } ], @@ -27294,12 +28316,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1783, + "line": 1802, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1784, + "line": 1803, "character": 2 } ], @@ -27313,7 +28335,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1783, + "line": 1802, "character": 2 } ], @@ -27378,7 +28400,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1784, + "line": 1803, "character": 2 } ], @@ -27429,7 +28451,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1850, + "line": 1869, "character": 2 } ], @@ -27539,7 +28561,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1850, + "line": 1869, "character": 2 } ], @@ -27724,12 +28746,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1789, + "line": 1808, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1790, + "line": 1809, "character": 2 } ], @@ -27743,7 +28765,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1789, + "line": 1808, "character": 2 } ], @@ -27833,7 +28855,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1790, + "line": 1809, "character": 2 } ], @@ -27886,7 +28908,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1801, + "line": 1820, "character": 2 } ], @@ -27956,7 +28978,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1801, + "line": 1820, "character": 2 } ], @@ -28134,12 +29156,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1773, + "line": 1792, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1774, + "line": 1793, "character": 2 } ], @@ -28153,7 +29175,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1773, + "line": 1792, "character": 2 } ], @@ -28211,7 +29233,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1774, + "line": 1793, "character": 2 } ], @@ -28255,12 +29277,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1775, + "line": 1794, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1776, + "line": 1795, "character": 2 } ], @@ -28274,7 +29296,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1775, + "line": 1794, "character": 2 } ], @@ -28339,7 +29361,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1776, + "line": 1795, "character": 2 } ], @@ -28390,12 +29412,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1777, + "line": 1796, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1778, + "line": 1797, "character": 2 } ], @@ -28409,7 +29431,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1777, + "line": 1796, "character": 2 } ], @@ -28474,7 +29496,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1778, + "line": 1797, "character": 2 } ], @@ -28527,7 +29549,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -28667,7 +29689,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -28743,7 +29765,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1224, + "line": 1243, "character": 4 } ], @@ -28771,7 +29793,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1225, + "line": 1244, "character": 4 } ], @@ -28790,7 +29812,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1223, + "line": 1242, "character": 6 } ] @@ -28824,12 +29846,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1769, + "line": 1788, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1770, + "line": 1789, "character": 2 } ], @@ -28843,7 +29865,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1769, + "line": 1788, "character": 2 } ], @@ -28915,7 +29937,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1770, + "line": 1789, "character": 2 } ], @@ -28959,12 +29981,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1771, + "line": 1790, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1772, + "line": 1791, "character": 2 } ], @@ -28978,7 +30000,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1771, + "line": 1790, "character": 2 } ], @@ -29050,7 +30072,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1772, + "line": 1791, "character": 2 } ], @@ -29094,12 +30116,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1882, + "line": 1901, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1883, + "line": 1902, "character": 2 } ], @@ -29113,7 +30135,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1882, + "line": 1901, "character": 2 } ], @@ -29189,7 +30211,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1883, + "line": 1902, "character": 2 } ], @@ -29239,7 +30261,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -29274,7 +30296,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -29478,7 +30500,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -29590,7 +30612,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -29695,7 +30717,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1764, + "line": 1783, "character": 2 } ], @@ -29829,7 +30851,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1764, + "line": 1783, "character": 2 } ], @@ -30142,17 +31164,17 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1884, + "line": 1903, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1885, + "line": 1904, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1886, + "line": 1905, "character": 2 } ], @@ -30166,7 +31188,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1884, + "line": 1903, "character": 2 } ], @@ -30400,7 +31422,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1885, + "line": 1904, "character": 2 } ], @@ -30488,7 +31510,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1886, + "line": 1905, "character": 2 } ], @@ -30543,7 +31565,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1857, + "line": 1876, "character": 2 } ], @@ -30581,7 +31603,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1857, + "line": 1876, "character": 2 } ], @@ -30766,7 +31788,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2038, + "line": 2057, "character": 2 } ], @@ -31009,7 +32031,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2038, + "line": 2057, "character": 2 } ], @@ -31085,7 +32107,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2042, + "line": 2061, "character": 4 } ], @@ -31113,7 +32135,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2043, + "line": 2062, "character": 4 } ], @@ -31132,7 +32154,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2041, + "line": 2060, "character": 6 } ] @@ -31158,22 +32180,22 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -31189,7 +32211,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 } ], @@ -31249,7 +32271,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1095, + "line": 1114, "character": 4 } ], @@ -31269,7 +32291,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1096, + "line": 1115, "character": 4 } ], @@ -31289,7 +32311,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1097, + "line": 1116, "character": 4 } ], @@ -31308,7 +32330,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 77 } ] @@ -31337,7 +32359,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 } ], @@ -31381,7 +32403,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1100, + "line": 1119, "character": 4 } ], @@ -31401,7 +32423,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1101, + "line": 1120, "character": 4 } ], @@ -31421,7 +32443,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1102, + "line": 1121, "character": 4 } ], @@ -31440,7 +32462,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 34 } ] @@ -31495,7 +32517,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 } ], @@ -31555,7 +32577,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1108, + "line": 1127, "character": 4 } ], @@ -31575,7 +32597,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1110, + "line": 1129, "character": 4 } ], @@ -31595,7 +32617,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1109, + "line": 1128, "character": 4 } ], @@ -31614,7 +32636,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 77 } ] @@ -31669,7 +32691,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -31713,7 +32735,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1116, + "line": 1135, "character": 4 } ], @@ -31733,7 +32755,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1118, + "line": 1137, "character": 4 } ], @@ -31753,7 +32775,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1117, + "line": 1136, "character": 4 } ], @@ -31772,7 +32794,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 34 } ] @@ -31806,12 +32828,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1872, + "line": 1891, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1873, + "line": 1892, "character": 2 } ], @@ -31825,7 +32847,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1872, + "line": 1891, "character": 2 } ], @@ -31913,7 +32935,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1873, + "line": 1892, "character": 2 } ], @@ -31975,7 +32997,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -32147,7 +33169,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -32201,7 +33223,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 901, + "line": 920, "character": 4 } ], @@ -32220,7 +33242,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 43 } ] @@ -32244,7 +33266,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 903, + "line": 922, "character": 4 } ], @@ -32263,7 +33285,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 902, + "line": 921, "character": 6 } ] @@ -32494,7 +33516,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -32630,7 +33652,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -32725,7 +33747,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1286, + "line": 1305, "character": 4 } ], @@ -32753,7 +33775,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1287, + "line": 1306, "character": 4 } ], @@ -32772,7 +33794,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1285, + "line": 1304, "character": 6 } ] @@ -32806,12 +33828,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1870, + "line": 1889, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1871, + "line": 1890, "character": 2 } ], @@ -32825,7 +33847,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1870, + "line": 1889, "character": 2 } ], @@ -32883,7 +33905,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1871, + "line": 1890, "character": 2 } ], @@ -32927,12 +33949,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1862, + "line": 1881, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1863, + "line": 1882, "character": 2 } ], @@ -32946,7 +33968,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1862, + "line": 1881, "character": 2 } ], @@ -33004,7 +34026,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1863, + "line": 1882, "character": 2 } ], @@ -33048,12 +34070,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1864, + "line": 1883, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1865, + "line": 1884, "character": 2 } ], @@ -33067,7 +34089,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1864, + "line": 1883, "character": 2 } ], @@ -33125,7 +34147,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1865, + "line": 1884, "character": 2 } ], @@ -33169,12 +34191,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1866, + "line": 1885, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1867, + "line": 1886, "character": 2 } ], @@ -33188,7 +34210,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1866, + "line": 1885, "character": 2 } ], @@ -33246,7 +34268,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1867, + "line": 1886, "character": 2 } ], @@ -33290,12 +34312,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1868, + "line": 1887, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1869, + "line": 1888, "character": 2 } ], @@ -33309,7 +34331,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1868, + "line": 1887, "character": 2 } ], @@ -33367,7 +34389,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1869, + "line": 1888, "character": 2 } ], @@ -33411,12 +34433,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1787, + "line": 1806, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1788, + "line": 1807, "character": 2 } ], @@ -33430,7 +34452,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1787, + "line": 1806, "character": 2 } ], @@ -33488,7 +34510,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1788, + "line": 1807, "character": 2 } ], @@ -33532,12 +34554,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1785, + "line": 1804, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1786, + "line": 1805, "character": 2 } ], @@ -33551,7 +34573,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1785, + "line": 1804, "character": 2 } ], @@ -33609,7 +34631,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1786, + "line": 1805, "character": 2 } ], @@ -33655,7 +34677,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -33694,7 +34716,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -33747,7 +34769,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -33863,7 +34885,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -33990,7 +35012,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -34033,7 +35055,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -34065,7 +35087,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -34201,7 +35223,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -34453,7 +35475,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -34488,7 +35510,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -34544,7 +35566,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -34656,7 +35678,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -34754,7 +35776,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -34864,7 +35886,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -34894,12 +35916,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1874, + "line": 1893, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1878, + "line": 1897, "character": 2 } ], @@ -34913,7 +35935,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1874, + "line": 1893, "character": 2 } ], @@ -34984,7 +36006,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1875, + "line": 1894, "character": 4 } ], @@ -35004,7 +36026,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1876, + "line": 1895, "character": 4 } ], @@ -35036,7 +36058,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1874, + "line": 1893, "character": 97 } ] @@ -35058,7 +36080,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1878, + "line": 1897, "character": 2 } ], @@ -35113,7 +36135,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1879, + "line": 1898, "character": 4 } ], @@ -35133,7 +36155,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1880, + "line": 1899, "character": 4 } ], @@ -35165,7 +36187,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1878, + "line": 1897, "character": 54 } ] @@ -35191,7 +36213,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -35226,7 +36248,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -35301,7 +36323,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -35315,7 +36337,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -35415,7 +36437,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -35429,7 +36451,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -35538,7 +36560,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -35579,7 +36601,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -35737,7 +36759,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1665, + "line": 1684, "character": 14 } ], @@ -35924,7 +36946,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2097, + "line": 2116, "character": 2 } ], @@ -35977,7 +36999,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2097, + "line": 2116, "character": 2 } ], @@ -36089,7 +37111,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2051, + "line": 2070, "character": 2 } ], @@ -36114,7 +37136,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2050, + "line": 2069, "character": 216 } ] @@ -36204,7 +37226,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2106, + "line": 2125, "character": 4 } ], @@ -36440,7 +37462,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2104, + "line": 2123, "character": 4 } ], @@ -36473,7 +37495,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2108, + "line": 2127, "character": 4 } ], @@ -36501,7 +37523,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2105, + "line": 2124, "character": 4 } ], @@ -36529,7 +37551,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2107, + "line": 2126, "character": 4 } ], @@ -36548,7 +37570,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2103, + "line": 2122, "character": 5 } ] @@ -36618,7 +37640,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2057, + "line": 2076, "character": 2 } ], @@ -36844,7 +37866,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2054, + "line": 2073, "character": 2 } ], @@ -36885,7 +37907,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2065, + "line": 2084, "character": 2 } ], @@ -36905,7 +37927,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2055, + "line": 2074, "character": 2 } ], @@ -36925,7 +37947,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2056, + "line": 2075, "character": 2 } ], @@ -36948,7 +37970,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2053, + "line": 2072, "character": 2 } ], @@ -36971,7 +37993,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2058, + "line": 2077, "character": 2 } ], @@ -36989,7 +38011,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3512, + "line": 3594, "character": 2 } ], @@ -37118,6 +38140,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT DELETE ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').delete().eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Delete a record and return it", @@ -37195,7 +38276,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3512, + "line": 3594, "character": 2 } ], @@ -37276,7 +38357,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3515, + "line": 3597, "character": 4 } ], @@ -37327,7 +38408,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3514, + "line": 3596, "character": 6 } ] @@ -37410,7 +38491,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3008, + "line": 3063, "character": 2 } ], @@ -37482,6 +38563,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').insert({ id: 1, name: 'Mordor' })\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Create a record and return it", @@ -37568,7 +38708,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3008, + "line": 3063, "character": 2 } ], @@ -37653,7 +38793,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3011, + "line": 3066, "character": 4 } ], @@ -37672,7 +38812,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3010, + "line": 3065, "character": 87 } ] @@ -37756,7 +38896,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3013, + "line": 3068, "character": 4 } ], @@ -37775,7 +38915,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3012, + "line": 3067, "character": 85 } ] @@ -37902,7 +39042,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3018, + "line": 3073, "character": 4 } ], @@ -37970,7 +39110,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3019, + "line": 3074, "character": 4 } ], @@ -37989,7 +39129,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3017, + "line": 3072, "character": 6 } ] @@ -38072,7 +39212,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2893, + "line": 2939, "character": 2 } ], @@ -38209,6 +39349,86 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nThe most useful field on a Postgres error is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — when the database knows the fix, it puts the literal SQL there. For example, a permission-denied error (" + }, + { + "kind": "code", + "text": "`code: '42501'`" + }, + { + "kind": "text", + "text": ") arrives with a " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " like " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\"`" + }, + { + "kind": "text", + "text": ". Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so the hint isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('characters').select()\nif (error) {\n // Logs the full error: message, code, details, and hint.\n console.error(error)\n return\n}\n```" + } + ] + }, + { + "tag": "@exampleResponse", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "```json\n{\n \"error\": {\n \"code\": \"42501\",\n \"details\": null,\n \"hint\": \"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\",\n \"message\": \"permission denied for table characters\"\n },\n \"status\": 401,\n \"statusText\": \"Unauthorized\"\n}\n```" + } + ] + }, { "tag": "@example", "name": "Selecting specific columns", @@ -38788,7 +40008,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2893, + "line": 2939, "character": 2 } ], @@ -38986,7 +40206,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2895, + "line": 2941, "character": 4 } ], @@ -39062,7 +40282,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2894, + "line": 2940, "character": 4 } ], @@ -39081,7 +40301,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2893, + "line": 2939, "character": 165 } ] @@ -39170,7 +40390,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3385, + "line": 3458, "character": 2 } ], @@ -39259,6 +40479,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('instruments').update({ name: 'piano' }).eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Update a record and return it", @@ -39345,7 +40624,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3385, + "line": 3458, "character": 2 } ], @@ -39427,7 +40706,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3388, + "line": 3461, "character": 4 } ], @@ -39446,7 +40725,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3387, + "line": 3460, "character": 87 } ] @@ -39570,7 +40849,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3392, + "line": 3465, "character": 4 } ], @@ -39621,7 +40900,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3391, + "line": 3464, "character": 6 } ] @@ -39704,7 +40983,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3229, + "line": 3293, "character": 2 } ], @@ -39853,6 +41132,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT, UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('instruments').upsert({ id: 1, name: 'piano' }).select()\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Bulk Upsert your data", @@ -40003,7 +41341,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3229, + "line": 3293, "character": 2 } ], @@ -40088,7 +41426,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3232, + "line": 3296, "character": 4 } ], @@ -40107,7 +41445,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3231, + "line": 3295, "character": 87 } ] @@ -40191,7 +41529,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3234, + "line": 3298, "character": 4 } ], @@ -40210,7 +41548,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3233, + "line": 3297, "character": 85 } ] @@ -40337,7 +41675,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3243, + "line": 3307, "character": 4 } ], @@ -40413,7 +41751,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3244, + "line": 3308, "character": 4 } ], @@ -40457,7 +41795,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3242, + "line": 3306, "character": 4 } ], @@ -40493,7 +41831,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3241, + "line": 3305, "character": 4 } ], @@ -40512,7 +41850,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3240, + "line": 3304, "character": 6 } ] @@ -40614,7 +41952,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2050, + "line": 2069, "character": 14 } ], @@ -40726,7 +42064,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2051, + "line": 2070, "character": 2 } ], @@ -40745,7 +42083,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2050, + "line": 2069, "character": 216 } ] @@ -40785,7 +42123,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -40838,7 +42176,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -40969,7 +42307,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 696, + "line": 715, "character": 4 } ], @@ -40989,7 +42327,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 699, + "line": 718, "character": 4 } ], @@ -41215,7 +42553,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 694, + "line": 713, "character": 4 } ], @@ -41240,7 +42578,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 700, + "line": 719, "character": 4 } ], @@ -41258,7 +42596,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 692, + "line": 711, "character": 4 } ], @@ -41299,7 +42637,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 703, + "line": 722, "character": 4 } ], @@ -41319,7 +42657,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 695, + "line": 714, "character": 4 } ], @@ -41339,7 +42677,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 701, + "line": 720, "character": 4 } ], @@ -41359,7 +42697,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 697, + "line": 716, "character": 4 } ], @@ -41379,7 +42717,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 698, + "line": 717, "character": 4 } ], @@ -41402,7 +42740,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 693, + "line": 712, "character": 4 } ], @@ -41427,7 +42765,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 702, + "line": 721, "character": 4 } ], @@ -41448,7 +42786,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 23 } ] @@ -41546,7 +42884,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 660, + "line": 679, "character": 12 } ], @@ -41572,7 +42910,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 663, + "line": 682, "character": 12 } ], @@ -41806,7 +43144,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 658, + "line": 677, "character": 12 } ], @@ -41837,7 +43175,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 664, + "line": 683, "character": 12 } ], @@ -41863,7 +43201,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 656, + "line": 675, "character": 12 } ], @@ -41910,7 +43248,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 667, + "line": 686, "character": 12 } ], @@ -41937,7 +43275,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 659, + "line": 678, "character": 12 } ], @@ -41963,7 +43301,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 665, + "line": 684, "character": 12 } ], @@ -41989,7 +43327,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 661, + "line": 680, "character": 12 } ], @@ -42016,7 +43354,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 662, + "line": 681, "character": 12 } ], @@ -42047,7 +43385,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 657, + "line": 676, "character": 12 } ], @@ -42078,7 +43416,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 666, + "line": 685, "character": 12 } ], @@ -42101,7 +43439,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -42231,7 +43569,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -42277,7 +43615,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -42372,7 +43710,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -42408,7 +43746,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -42564,7 +43902,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -42621,7 +43959,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1589, + "line": 1608, "character": 4 } ], @@ -42657,7 +43995,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1592, + "line": 1611, "character": 4 } ], @@ -42697,7 +44035,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1594, + "line": 1613, "character": 4 } ], @@ -42742,7 +44080,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1591, + "line": 1610, "character": 4 } ], @@ -42786,7 +44124,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1590, + "line": 1609, "character": 4 } ], @@ -42822,7 +44160,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1593, + "line": 1612, "character": 4 } ], @@ -42841,7 +44179,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1588, + "line": 1607, "character": 6 } ] @@ -42932,7 +44270,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -42973,7 +44311,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -43024,7 +44362,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -43162,7 +44500,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -43238,7 +44576,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1224, + "line": 1243, "character": 4 } ], @@ -43266,7 +44604,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1225, + "line": 1244, "character": 4 } ], @@ -43285,7 +44623,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1223, + "line": 1242, "character": 6 } ] @@ -43309,7 +44647,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -43342,7 +44680,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -43534,7 +44872,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -43644,7 +44982,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -43739,22 +45077,22 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -43768,7 +45106,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 } ], @@ -43828,7 +45166,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1095, + "line": 1114, "character": 4 } ], @@ -43848,7 +45186,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1096, + "line": 1115, "character": 4 } ], @@ -43868,7 +45206,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1097, + "line": 1116, "character": 4 } ], @@ -43887,7 +45225,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 77 } ] @@ -43909,7 +45247,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 } ], @@ -43953,7 +45291,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1100, + "line": 1119, "character": 4 } ], @@ -43973,7 +45311,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1101, + "line": 1120, "character": 4 } ], @@ -43993,7 +45331,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1102, + "line": 1121, "character": 4 } ], @@ -44012,7 +45350,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 34 } ] @@ -44060,7 +45398,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 } ], @@ -44120,7 +45458,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1108, + "line": 1127, "character": 4 } ], @@ -44140,7 +45478,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1110, + "line": 1129, "character": 4 } ], @@ -44160,7 +45498,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1109, + "line": 1128, "character": 4 } ], @@ -44179,7 +45517,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 77 } ] @@ -44227,7 +45565,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -44271,7 +45609,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1116, + "line": 1135, "character": 4 } ], @@ -44291,7 +45629,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1118, + "line": 1137, "character": 4 } ], @@ -44311,7 +45649,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1117, + "line": 1136, "character": 4 } ], @@ -44330,7 +45668,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 34 } ] @@ -44356,7 +45694,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -44528,7 +45866,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -44582,7 +45920,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 901, + "line": 920, "character": 4 } ], @@ -44601,7 +45939,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 43 } ] @@ -44625,7 +45963,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 903, + "line": 922, "character": 4 } ], @@ -44644,7 +45982,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 902, + "line": 921, "character": 6 } ] @@ -44873,7 +46211,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -45007,7 +46345,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -45102,7 +46440,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1286, + "line": 1305, "character": 4 } ], @@ -45130,7 +46468,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1287, + "line": 1306, "character": 4 } ], @@ -45149,7 +46487,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1285, + "line": 1304, "character": 6 } ] @@ -45175,7 +46513,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -45214,7 +46552,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -45265,7 +46603,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -45379,7 +46717,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -45504,7 +46842,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -45545,7 +46883,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -45565,7 +46903,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -45699,7 +47037,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -45941,7 +47279,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -45976,7 +47314,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -46030,7 +47368,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -46140,7 +47478,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -46228,7 +47566,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -46338,7 +47676,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -46370,7 +47708,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -46405,7 +47743,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -46480,7 +47818,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -46494,7 +47832,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -46594,7 +47932,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -46608,7 +47946,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -46717,7 +48055,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -46758,7 +48096,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -46910,7 +48248,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1047, + "line": 1066, "character": 14 } ], @@ -47049,7 +48387,7 @@ ] }, { - "id": 2800, + "id": 2822, "name": "RealtimeChannel", "variant": "declaration", "kind": 128, @@ -47064,7 +48402,7 @@ }, "children": [ { - "id": 2801, + "id": 2823, "name": "constructor", "variant": "declaration", "kind": 512, @@ -47078,7 +48416,7 @@ ], "signatures": [ { - "id": 2802, + "id": 2824, "name": "RealtimeChannel", "variant": "signature", "kind": 16384, @@ -47131,7 +48469,7 @@ ], "parameters": [ { - "id": 2803, + "id": 2825, "name": "topic", "variant": "param", "kind": 32768, @@ -47150,7 +48488,7 @@ } }, { - "id": 2804, + "id": 2826, "name": "params", "variant": "param", "kind": 32768, @@ -47164,7 +48502,7 @@ }, { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" } @@ -47172,14 +48510,14 @@ } }, { - "id": 2805, + "id": 2827, "name": "socket", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -47188,7 +48526,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -47197,7 +48535,7 @@ ] }, { - "id": 2809, + "id": 2831, "name": "bindings", "variant": "declaration", "kind": 1024, @@ -47238,7 +48576,7 @@ } }, { - "id": 2811, + "id": 2833, "name": "broadcastEndpointURL", "variant": "declaration", "kind": 1024, @@ -47256,7 +48594,7 @@ } }, { - "id": 2807, + "id": 2829, "name": "params", "variant": "declaration", "kind": 1024, @@ -47270,13 +48608,13 @@ ], "type": { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" } }, { - "id": 2813, + "id": 2835, "name": "presence", "variant": "declaration", "kind": 1024, @@ -47290,14 +48628,14 @@ ], "type": { "type": "reference", - "target": 2791, + "target": 2813, "name": "RealtimePresence", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2812, + "id": 2834, "name": "private", "variant": "declaration", "kind": 1024, @@ -47315,7 +48653,7 @@ } }, { - "id": 2808, + "id": 2830, "name": "socket", "variant": "declaration", "kind": 1024, @@ -47329,14 +48667,14 @@ ], "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2810, + "id": 2832, "name": "subTopic", "variant": "declaration", "kind": 1024, @@ -47354,7 +48692,7 @@ } }, { - "id": 2806, + "id": 2828, "name": "topic", "variant": "declaration", "kind": 1024, @@ -47380,7 +48718,7 @@ } }, { - "id": 2818, + "id": 2840, "name": "joinedOnce", "variant": "declaration", "kind": 262144, @@ -47393,7 +48731,7 @@ } ], "getSignature": { - "id": 2819, + "id": 2841, "name": "joinedOnce", "variant": "signature", "kind": 524288, @@ -47412,7 +48750,7 @@ } }, { - "id": 2822, + "id": 2844, "name": "joinPush", "variant": "declaration", "kind": 262144, @@ -47425,7 +48763,7 @@ } ], "getSignature": { - "id": 2823, + "id": 2845, "name": "joinPush", "variant": "signature", "kind": 524288, @@ -47450,7 +48788,7 @@ } }, { - "id": 2824, + "id": 2846, "name": "rejoinTimer", "variant": "declaration", "kind": 262144, @@ -47463,7 +48801,7 @@ } ], "getSignature": { - "id": 2825, + "id": 2847, "name": "rejoinTimer", "variant": "signature", "kind": 524288, @@ -47488,7 +48826,7 @@ } }, { - "id": 2814, + "id": 2836, "name": "state", "variant": "declaration", "kind": 262144, @@ -47506,7 +48844,7 @@ } ], "getSignature": { - "id": 2815, + "id": 2837, "name": "state", "variant": "signature", "kind": 524288, @@ -47529,7 +48867,7 @@ } }, "setSignature": { - "id": 2816, + "id": 2838, "name": "state", "variant": "signature", "kind": 1048576, @@ -47543,7 +48881,7 @@ ], "parameters": [ { - "id": 2817, + "id": 2839, "name": "state", "variant": "param", "kind": 32768, @@ -47566,7 +48904,7 @@ } }, { - "id": 2820, + "id": 2842, "name": "timeout", "variant": "declaration", "kind": 262144, @@ -47579,7 +48917,7 @@ } ], "getSignature": { - "id": 2821, + "id": 2843, "name": "timeout", "variant": "signature", "kind": 524288, @@ -47598,7 +48936,7 @@ } }, { - "id": 3111, + "id": 3133, "name": "copyBindings", "variant": "declaration", "kind": 2048, @@ -47606,13 +48944,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 445, + "line": 463, "character": 4 } ], "signatures": [ { - "id": 3112, + "id": 3134, "name": "copyBindings", "variant": "signature", "kind": 4096, @@ -47620,20 +48958,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 445, + "line": 463, "character": 4 } ], "parameters": [ { - "id": 3113, + "id": 3135, "name": "other", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -47648,7 +48986,7 @@ ] }, { - "id": 3077, + "id": 3099, "name": "httpSend", "variant": "declaration", "kind": 2048, @@ -47656,13 +48994,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 355, + "line": 373, "character": 4 } ], "signatures": [ { - "id": 3078, + "id": 3100, "name": "httpSend", "variant": "signature", "kind": 4096, @@ -47671,7 +49009,39 @@ "summary": [ { "kind": "text", - "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback." + "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback.\n\nPayloads that are " + }, + { + "kind": "code", + "text": "`ArrayBuffer`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`ArrayBufferView`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`Uint8Array`" + }, + { + "kind": "text", + "text": ") are sent as\n" + }, + { + "kind": "code", + "text": "`application/octet-stream`" + }, + { + "kind": "text", + "text": "; all other payloads are JSON-encoded." } ], "blockTags": [ @@ -47698,13 +49068,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 355, + "line": 373, "character": 4 } ], "parameters": [ { - "id": 3079, + "id": 3101, "name": "event", "variant": "param", "kind": 32768, @@ -47723,7 +49093,7 @@ } }, { - "id": 3080, + "id": 3102, "name": "payload", "variant": "param", "kind": 32768, @@ -47742,7 +49112,7 @@ } }, { - "id": 3081, + "id": 3103, "name": "opts", "variant": "param", "kind": 32768, @@ -47760,14 +49130,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3082, + "id": 3104, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3083, + "id": 3105, "name": "timeout", "variant": "declaration", "kind": 1024, @@ -47777,7 +49147,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 356, + "line": 374, "character": 8 } ], @@ -47790,13 +49160,13 @@ "groups": [ { "title": "Properties", - "children": [3083] + "children": [3105] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 355, + "line": 373, "character": 49 } ] @@ -47817,14 +49187,14 @@ { "type": "reflection", "declaration": { - "id": 3084, + "id": 3106, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3085, + "id": 3107, "name": "success", "variant": "declaration", "kind": 1024, @@ -47832,7 +49202,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 358, + "line": 376, "character": 8 } ], @@ -47845,13 +49215,13 @@ "groups": [ { "title": "Properties", - "children": [3085] + "children": [3107] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 357, + "line": 375, "character": 16 } ] @@ -47860,14 +49230,14 @@ { "type": "reflection", "declaration": { - "id": 3086, + "id": 3108, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3089, + "id": 3111, "name": "error", "variant": "declaration", "kind": 1024, @@ -47875,7 +49245,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 362, + "line": 380, "character": 8 } ], @@ -47885,7 +49255,7 @@ } }, { - "id": 3088, + "id": 3110, "name": "status", "variant": "declaration", "kind": 1024, @@ -47893,7 +49263,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 361, + "line": 379, "character": 8 } ], @@ -47903,7 +49273,7 @@ } }, { - "id": 3087, + "id": 3109, "name": "success", "variant": "declaration", "kind": 1024, @@ -47911,7 +49281,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 360, + "line": 378, "character": 8 } ], @@ -47924,13 +49294,13 @@ "groups": [ { "title": "Properties", - "children": [3089, 3088, 3087] + "children": [3111, 3110, 3109] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 359, + "line": 377, "character": 8 } ] @@ -47946,7 +49316,7 @@ ] }, { - "id": 2858, + "id": 2880, "name": "on", "variant": "declaration", "kind": 2048, @@ -47954,88 +49324,88 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 242, + "line": 257, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 245, + "line": 260, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 250, + "line": 265, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 255, + "line": 270, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 260, + "line": 275, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 263, + "line": 278, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 266, + "line": 281, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 269, + "line": 284, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 272, + "line": 287, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 281, + "line": 296, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 292, + "line": 307, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 305, + "line": 320, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 312, + "line": 327, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 321, + "line": 336, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 330, + "line": 345, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 339, + "line": 354, "character": 4 } ], "signatures": [ { - "id": 2859, + "id": 2881, "name": "on", "variant": "signature", "kind": 4096, @@ -48051,13 +49421,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 242, + "line": 257, "character": 4 } ], "parameters": [ { - "id": 2860, + "id": 2882, "name": "type", "variant": "param", "kind": 32768, @@ -48068,7 +49438,7 @@ } }, { - "id": 2861, + "id": 2883, "name": "filter", "variant": "param", "kind": 32768, @@ -48076,14 +49446,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2862, + "id": 2884, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2863, + "id": 2885, "name": "event", "variant": "declaration", "kind": 1024, @@ -48091,7 +49461,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 243, + "line": 258, "character": 8 } ], @@ -48104,13 +49474,13 @@ "groups": [ { "title": "Properties", - "children": [2863] + "children": [2885] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 242, + "line": 257, "character": 58 } ] @@ -48118,7 +49488,7 @@ } }, { - "id": 2864, + "id": 2886, "name": "callback", "variant": "param", "kind": 32768, @@ -48126,7 +49496,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2865, + "id": 2887, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48134,13 +49504,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 244, + "line": 259, "character": 17 } ], "signatures": [ { - "id": 2866, + "id": 2888, "name": "__type", "variant": "signature", "kind": 4096, @@ -48148,7 +49518,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 244, + "line": 259, "character": 17 } ], @@ -48164,14 +49534,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2867, + "id": 2889, "name": "on", "variant": "signature", "kind": 4096, @@ -48187,13 +49557,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 245, + "line": 260, "character": 4 } ], "typeParameters": [ { - "id": 2868, + "id": 2890, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48201,7 +49571,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2869, + "id": 2891, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48209,13 +49579,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 245, + "line": 260, "character": 17 } ], "indexSignatures": [ { - "id": 2870, + "id": 2892, "name": "__index", "variant": "signature", "kind": 8192, @@ -48223,13 +49593,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 246, + "line": 261, "character": 8 } ], "parameters": [ { - "id": 2871, + "id": 2893, "name": "key", "variant": "param", "kind": 32768, @@ -48252,7 +49622,7 @@ ], "parameters": [ { - "id": 2872, + "id": 2894, "name": "type", "variant": "param", "kind": 32768, @@ -48263,7 +49633,7 @@ } }, { - "id": 2873, + "id": 2895, "name": "filter", "variant": "param", "kind": 32768, @@ -48271,14 +49641,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2874, + "id": 2896, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2875, + "id": 2897, "name": "event", "variant": "declaration", "kind": 1024, @@ -48286,7 +49656,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 248, + "line": 263, "character": 8 } ], @@ -48299,13 +49669,13 @@ "groups": [ { "title": "Properties", - "children": [2875] + "children": [2897] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 247, + "line": 262, "character": 58 } ] @@ -48313,7 +49683,7 @@ } }, { - "id": 2876, + "id": 2898, "name": "callback", "variant": "param", "kind": 32768, @@ -48321,7 +49691,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2877, + "id": 2899, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48329,13 +49699,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 249, + "line": 264, "character": 17 } ], "signatures": [ { - "id": 2878, + "id": 2900, "name": "__type", "variant": "signature", "kind": 4096, @@ -48343,24 +49713,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 249, + "line": 264, "character": 17 } ], "parameters": [ { - "id": 2879, + "id": 2901, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3340, + "target": 3362, "typeArguments": [ { "type": "reference", - "target": 2868, + "target": 2890, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48383,14 +49753,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2880, + "id": 2902, "name": "on", "variant": "signature", "kind": 4096, @@ -48406,13 +49776,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 250, + "line": 265, "character": 4 } ], "typeParameters": [ { - "id": 2881, + "id": 2903, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48420,7 +49790,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2882, + "id": 2904, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48428,13 +49798,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 250, + "line": 265, "character": 17 } ], "indexSignatures": [ { - "id": 2883, + "id": 2905, "name": "__index", "variant": "signature", "kind": 8192, @@ -48442,13 +49812,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 251, + "line": 266, "character": 8 } ], "parameters": [ { - "id": 2884, + "id": 2906, "name": "key", "variant": "param", "kind": 32768, @@ -48471,7 +49841,7 @@ ], "parameters": [ { - "id": 2885, + "id": 2907, "name": "type", "variant": "param", "kind": 32768, @@ -48482,7 +49852,7 @@ } }, { - "id": 2886, + "id": 2908, "name": "filter", "variant": "param", "kind": 32768, @@ -48490,14 +49860,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2887, + "id": 2909, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2888, + "id": 2910, "name": "event", "variant": "declaration", "kind": 1024, @@ -48505,7 +49875,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 253, + "line": 268, "character": 8 } ], @@ -48518,13 +49888,13 @@ "groups": [ { "title": "Properties", - "children": [2888] + "children": [2910] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 252, + "line": 267, "character": 58 } ] @@ -48532,7 +49902,7 @@ } }, { - "id": 2889, + "id": 2911, "name": "callback", "variant": "param", "kind": 32768, @@ -48540,7 +49910,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2890, + "id": 2912, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48548,13 +49918,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 254, + "line": 269, "character": 17 } ], "signatures": [ { - "id": 2891, + "id": 2913, "name": "__type", "variant": "signature", "kind": 4096, @@ -48562,24 +49932,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 254, + "line": 269, "character": 17 } ], "parameters": [ { - "id": 2892, + "id": 2914, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3350, + "target": 3372, "typeArguments": [ { "type": "reference", - "target": 2881, + "target": 2903, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48602,14 +49972,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2893, + "id": 2915, "name": "on", "variant": "signature", "kind": 4096, @@ -48625,13 +49995,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 255, + "line": 270, "character": 4 } ], "typeParameters": [ { - "id": 2894, + "id": 2916, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48639,7 +50009,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2895, + "id": 2917, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48647,13 +50017,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 255, + "line": 270, "character": 17 } ], "indexSignatures": [ { - "id": 2896, + "id": 2918, "name": "__index", "variant": "signature", "kind": 8192, @@ -48661,13 +50031,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 256, + "line": 271, "character": 8 } ], "parameters": [ { - "id": 2897, + "id": 2919, "name": "key", "variant": "param", "kind": 32768, @@ -48690,7 +50060,7 @@ ], "parameters": [ { - "id": 2898, + "id": 2920, "name": "type", "variant": "param", "kind": 32768, @@ -48701,7 +50071,7 @@ } }, { - "id": 2899, + "id": 2921, "name": "filter", "variant": "param", "kind": 32768, @@ -48709,14 +50079,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2900, + "id": 2922, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2901, + "id": 2923, "name": "event", "variant": "declaration", "kind": 1024, @@ -48724,7 +50094,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 258, + "line": 273, "character": 8 } ], @@ -48737,13 +50107,13 @@ "groups": [ { "title": "Properties", - "children": [2901] + "children": [2923] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 257, + "line": 272, "character": 58 } ] @@ -48751,7 +50121,7 @@ } }, { - "id": 2902, + "id": 2924, "name": "callback", "variant": "param", "kind": 32768, @@ -48759,7 +50129,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2903, + "id": 2925, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48767,13 +50137,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 259, + "line": 274, "character": 17 } ], "signatures": [ { - "id": 2904, + "id": 2926, "name": "__type", "variant": "signature", "kind": 4096, @@ -48781,13 +50151,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 259, + "line": 274, "character": 17 } ], "parameters": [ { - "id": 2905, + "id": 2927, "name": "payload", "variant": "param", "kind": 32768, @@ -48799,11 +50169,11 @@ "types": [ { "type": "reference", - "target": 3340, + "target": 3362, "typeArguments": [ { "type": "reference", - "target": 2894, + "target": 2916, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48814,11 +50184,11 @@ }, { "type": "reference", - "target": 3350, + "target": 3372, "typeArguments": [ { "type": "reference", - "target": 2894, + "target": 2916, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48843,14 +50213,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2906, + "id": 2928, "name": "on", "variant": "signature", "kind": 4096, @@ -48866,13 +50236,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 260, + "line": 275, "character": 4 } ], "typeParameters": [ { - "id": 2907, + "id": 2929, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48880,7 +50250,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2908, + "id": 2930, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48888,13 +50258,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 260, + "line": 275, "character": 17 } ], "indexSignatures": [ { - "id": 2909, + "id": 2931, "name": "__index", "variant": "signature", "kind": 8192, @@ -48902,13 +50272,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 261, + "line": 276, "character": 8 } ], "parameters": [ { - "id": 2910, + "id": 2932, "name": "key", "variant": "param", "kind": 32768, @@ -48931,7 +50301,7 @@ ], "parameters": [ { - "id": 2911, + "id": 2933, "name": "type", "variant": "param", "kind": 32768, @@ -48942,14 +50312,14 @@ } }, { - "id": 2912, + "id": 2934, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -48961,7 +50331,7 @@ } }, { - "id": 2913, + "id": 2935, "name": "callback", "variant": "param", "kind": 32768, @@ -48969,7 +50339,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2914, + "id": 2936, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48977,13 +50347,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 262, + "line": 277, "character": 156 } ], "signatures": [ { - "id": 2915, + "id": 2937, "name": "__type", "variant": "signature", "kind": 4096, @@ -48991,24 +50361,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 262, + "line": 277, "character": 156 } ], "parameters": [ { - "id": 2916, + "id": 2938, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3306, + "target": 3328, "typeArguments": [ { "type": "reference", - "target": 2907, + "target": 2929, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49031,14 +50401,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2917, + "id": 2939, "name": "on", "variant": "signature", "kind": 4096, @@ -49054,13 +50424,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 263, + "line": 278, "character": 4 } ], "typeParameters": [ { - "id": 2918, + "id": 2940, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49068,7 +50438,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2919, + "id": 2941, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49076,13 +50446,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 263, + "line": 278, "character": 17 } ], "indexSignatures": [ { - "id": 2920, + "id": 2942, "name": "__index", "variant": "signature", "kind": 8192, @@ -49090,13 +50460,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 264, + "line": 279, "character": 8 } ], "parameters": [ { - "id": 2921, + "id": 2943, "name": "key", "variant": "param", "kind": 32768, @@ -49119,7 +50489,7 @@ ], "parameters": [ { - "id": 2922, + "id": 2944, "name": "type", "variant": "param", "kind": 32768, @@ -49130,14 +50500,14 @@ } }, { - "id": 2923, + "id": 2945, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -49149,7 +50519,7 @@ } }, { - "id": 2924, + "id": 2946, "name": "callback", "variant": "param", "kind": 32768, @@ -49157,7 +50527,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2925, + "id": 2947, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49165,13 +50535,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 265, + "line": 280, "character": 159 } ], "signatures": [ { - "id": 2926, + "id": 2948, "name": "__type", "variant": "signature", "kind": 4096, @@ -49179,24 +50549,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 265, + "line": 280, "character": 159 } ], "parameters": [ { - "id": 2927, + "id": 2949, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3311, + "target": 3333, "typeArguments": [ { "type": "reference", - "target": 2918, + "target": 2940, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49219,14 +50589,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2928, + "id": 2950, "name": "on", "variant": "signature", "kind": 4096, @@ -49242,13 +50612,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 266, + "line": 281, "character": 4 } ], "typeParameters": [ { - "id": 2929, + "id": 2951, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49256,7 +50626,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2930, + "id": 2952, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49264,13 +50634,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 266, + "line": 281, "character": 17 } ], "indexSignatures": [ { - "id": 2931, + "id": 2953, "name": "__index", "variant": "signature", "kind": 8192, @@ -49278,13 +50648,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 267, + "line": 282, "character": 8 } ], "parameters": [ { - "id": 2932, + "id": 2954, "name": "key", "variant": "param", "kind": 32768, @@ -49307,7 +50677,7 @@ ], "parameters": [ { - "id": 2933, + "id": 2955, "name": "type", "variant": "param", "kind": 32768, @@ -49318,14 +50688,14 @@ } }, { - "id": 2934, + "id": 2956, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -49337,7 +50707,7 @@ } }, { - "id": 2935, + "id": 2957, "name": "callback", "variant": "param", "kind": 32768, @@ -49345,7 +50715,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2936, + "id": 2958, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49353,13 +50723,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 268, + "line": 283, "character": 159 } ], "signatures": [ { - "id": 2937, + "id": 2959, "name": "__type", "variant": "signature", "kind": 4096, @@ -49367,24 +50737,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 268, + "line": 283, "character": 159 } ], "parameters": [ { - "id": 2938, + "id": 2960, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3321, + "target": 3343, "typeArguments": [ { "type": "reference", - "target": 2929, + "target": 2951, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49407,14 +50777,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2939, + "id": 2961, "name": "on", "variant": "signature", "kind": 4096, @@ -49430,13 +50800,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 269, + "line": 284, "character": 4 } ], "typeParameters": [ { - "id": 2940, + "id": 2962, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49444,7 +50814,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2941, + "id": 2963, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49452,13 +50822,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 269, + "line": 284, "character": 17 } ], "indexSignatures": [ { - "id": 2942, + "id": 2964, "name": "__index", "variant": "signature", "kind": 8192, @@ -49466,13 +50836,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 270, + "line": 285, "character": 8 } ], "parameters": [ { - "id": 2943, + "id": 2965, "name": "key", "variant": "param", "kind": 32768, @@ -49495,7 +50865,7 @@ ], "parameters": [ { - "id": 2944, + "id": 2966, "name": "type", "variant": "param", "kind": 32768, @@ -49506,14 +50876,14 @@ } }, { - "id": 2945, + "id": 2967, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -49525,7 +50895,7 @@ } }, { - "id": 2946, + "id": 2968, "name": "callback", "variant": "param", "kind": 32768, @@ -49533,7 +50903,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2947, + "id": 2969, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49541,13 +50911,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 271, + "line": 286, "character": 159 } ], "signatures": [ { - "id": 2948, + "id": 2970, "name": "__type", "variant": "signature", "kind": 4096, @@ -49555,24 +50925,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 271, + "line": 286, "character": 159 } ], "parameters": [ { - "id": 2949, + "id": 2971, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3330, + "target": 3352, "typeArguments": [ { "type": "reference", - "target": 2940, + "target": 2962, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49595,14 +50965,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2950, + "id": 2972, "name": "on", "variant": "signature", "kind": 4096, @@ -49618,13 +50988,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 272, + "line": 287, "character": 4 } ], "typeParameters": [ { - "id": 2951, + "id": 2973, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49632,7 +51002,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2952, + "id": 2974, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49640,13 +51010,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 272, + "line": 287, "character": 17 } ], "indexSignatures": [ { - "id": 2953, + "id": 2975, "name": "__index", "variant": "signature", "kind": 8192, @@ -49654,13 +51024,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 273, + "line": 288, "character": 8 } ], "parameters": [ { - "id": 2954, + "id": 2976, "name": "key", "variant": "param", "kind": 32768, @@ -49683,7 +51053,7 @@ ], "parameters": [ { - "id": 2955, + "id": 2977, "name": "type", "variant": "param", "kind": 32768, @@ -49694,14 +51064,14 @@ } }, { - "id": 2956, + "id": 2978, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "union", @@ -49730,7 +51100,7 @@ } }, { - "id": 2957, + "id": 2979, "name": "callback", "variant": "param", "kind": 32768, @@ -49738,7 +51108,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2958, + "id": 2980, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49746,13 +51116,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 274, + "line": 289, "character": 152 } ], "signatures": [ { - "id": 2959, + "id": 2981, "name": "__type", "variant": "signature", "kind": 4096, @@ -49760,24 +51130,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 274, + "line": 289, "character": 152 } ], "parameters": [ { - "id": 2960, + "id": 2982, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3306, + "target": 3328, "typeArguments": [ { "type": "reference", - "target": 2951, + "target": 2973, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49800,14 +51170,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2961, + "id": 2983, "name": "on", "variant": "signature", "kind": 4096, @@ -49823,13 +51193,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 281, + "line": 296, "character": 4 } ], "parameters": [ { - "id": 2962, + "id": 2984, "name": "type", "variant": "param", "kind": 32768, @@ -49848,7 +51218,7 @@ } }, { - "id": 2963, + "id": 2985, "name": "filter", "variant": "param", "kind": 32768, @@ -49864,14 +51234,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2964, + "id": 2986, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2965, + "id": 2987, "name": "event", "variant": "declaration", "kind": 1024, @@ -49879,7 +51249,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 282, + "line": 297, "character": 8 } ], @@ -49892,13 +51262,13 @@ "groups": [ { "title": "Properties", - "children": [2965] + "children": [2987] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 281, + "line": 296, "character": 59 } ] @@ -49906,7 +51276,7 @@ } }, { - "id": 2966, + "id": 2988, "name": "callback", "variant": "param", "kind": 32768, @@ -49922,7 +51292,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2967, + "id": 2989, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49930,13 +51300,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 283, + "line": 298, "character": 17 } ], "signatures": [ { - "id": 2968, + "id": 2990, "name": "__type", "variant": "signature", "kind": 4096, @@ -49944,13 +51314,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 283, + "line": 298, "character": 17 } ], "parameters": [ { - "id": 2969, + "id": 2991, "name": "payload", "variant": "param", "kind": 32768, @@ -49958,14 +51328,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2970, + "id": 2992, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2972, + "id": 2994, "name": "event", "variant": "declaration", "kind": 1024, @@ -49973,7 +51343,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 285, + "line": 300, "character": 8 } ], @@ -49983,7 +51353,7 @@ } }, { - "id": 2973, + "id": 2995, "name": "meta", "variant": "declaration", "kind": 1024, @@ -49993,21 +51363,21 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 286, + "line": 301, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2974, + "id": 2996, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2976, + "id": 2998, "name": "id", "variant": "declaration", "kind": 1024, @@ -50015,7 +51385,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 288, + "line": 303, "character": 12 } ], @@ -50025,7 +51395,7 @@ } }, { - "id": 2975, + "id": 2997, "name": "replayed", "variant": "declaration", "kind": 1024, @@ -50035,7 +51405,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 287, + "line": 302, "character": 12 } ], @@ -50048,13 +51418,13 @@ "groups": [ { "title": "Properties", - "children": [2976, 2975] + "children": [2998, 2997] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 286, + "line": 301, "character": 15 } ] @@ -50062,7 +51432,7 @@ } }, { - "id": 2971, + "id": 2993, "name": "type", "variant": "declaration", "kind": 1024, @@ -50070,7 +51440,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 284, + "line": 299, "character": 8 } ], @@ -50083,19 +51453,19 @@ "groups": [ { "title": "Properties", - "children": [2972, 2973, 2971] + "children": [2994, 2995, 2993] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 283, + "line": 298, "character": 27 } ], "indexSignatures": [ { - "id": 2977, + "id": 2999, "name": "__index", "variant": "signature", "kind": 8192, @@ -50103,13 +51473,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 290, + "line": 305, "character": 8 } ], "parameters": [ { - "id": 2978, + "id": 3000, "name": "key", "variant": "param", "kind": 32768, @@ -50142,14 +51512,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2979, + "id": 3001, "name": "on", "variant": "signature", "kind": 4096, @@ -50165,13 +51535,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 292, + "line": 307, "character": 4 } ], "typeParameters": [ { - "id": 2980, + "id": 3002, "name": "T", "variant": "typeParam", "kind": 131072, @@ -50179,7 +51549,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2981, + "id": 3003, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50187,13 +51557,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 292, + "line": 307, "character": 17 } ], "indexSignatures": [ { - "id": 2982, + "id": 3004, "name": "__index", "variant": "signature", "kind": 8192, @@ -50201,13 +51571,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 293, + "line": 308, "character": 8 } ], "parameters": [ { - "id": 2983, + "id": 3005, "name": "key", "variant": "param", "kind": 32768, @@ -50230,7 +51600,7 @@ ], "parameters": [ { - "id": 2984, + "id": 3006, "name": "type", "variant": "param", "kind": 32768, @@ -50241,7 +51611,7 @@ } }, { - "id": 2985, + "id": 3007, "name": "filter", "variant": "param", "kind": 32768, @@ -50249,14 +51619,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2986, + "id": 3008, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2987, + "id": 3009, "name": "event", "variant": "declaration", "kind": 1024, @@ -50264,7 +51634,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 295, + "line": 310, "character": 8 } ], @@ -50277,13 +51647,13 @@ "groups": [ { "title": "Properties", - "children": [2987] + "children": [3009] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 294, + "line": 309, "character": 59 } ] @@ -50291,7 +51661,7 @@ } }, { - "id": 2988, + "id": 3010, "name": "callback", "variant": "param", "kind": 32768, @@ -50299,7 +51669,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2989, + "id": 3011, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50307,13 +51677,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 296, + "line": 311, "character": 17 } ], "signatures": [ { - "id": 2990, + "id": 3012, "name": "__type", "variant": "signature", "kind": 4096, @@ -50321,13 +51691,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 296, + "line": 311, "character": 17 } ], "parameters": [ { - "id": 2991, + "id": 3013, "name": "payload", "variant": "param", "kind": 32768, @@ -50335,14 +51705,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2992, + "id": 3014, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2994, + "id": 3016, "name": "event", "variant": "declaration", "kind": 1024, @@ -50350,7 +51720,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 298, + "line": 313, "character": 8 } ], @@ -50360,7 +51730,7 @@ } }, { - "id": 2995, + "id": 3017, "name": "meta", "variant": "declaration", "kind": 1024, @@ -50370,21 +51740,21 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 299, + "line": 314, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2996, + "id": 3018, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2998, + "id": 3020, "name": "id", "variant": "declaration", "kind": 1024, @@ -50392,7 +51762,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 301, + "line": 316, "character": 12 } ], @@ -50402,7 +51772,7 @@ } }, { - "id": 2997, + "id": 3019, "name": "replayed", "variant": "declaration", "kind": 1024, @@ -50412,7 +51782,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 300, + "line": 315, "character": 12 } ], @@ -50425,13 +51795,13 @@ "groups": [ { "title": "Properties", - "children": [2998, 2997] + "children": [3020, 3019] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 299, + "line": 314, "character": 15 } ] @@ -50439,7 +51809,7 @@ } }, { - "id": 2999, + "id": 3021, "name": "payload", "variant": "declaration", "kind": 1024, @@ -50447,20 +51817,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 303, + "line": 318, "character": 8 } ], "type": { "type": "reference", - "target": 2980, + "target": 3002, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 2993, + "id": 3015, "name": "type", "variant": "declaration", "kind": 1024, @@ -50468,7 +51838,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 297, + "line": 312, "character": 8 } ], @@ -50481,13 +51851,13 @@ "groups": [ { "title": "Properties", - "children": [2994, 2995, 2999, 2993] + "children": [3016, 3017, 3021, 3015] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 296, + "line": 311, "character": 27 } ] @@ -50507,14 +51877,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3000, + "id": 3022, "name": "on", "variant": "signature", "kind": 4096, @@ -50530,13 +51900,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 305, + "line": 320, "character": 4 } ], "typeParameters": [ { - "id": 3001, + "id": 3023, "name": "T", "variant": "typeParam", "kind": 131072, @@ -50564,7 +51934,7 @@ ], "parameters": [ { - "id": 3002, + "id": 3024, "name": "type", "variant": "param", "kind": 32768, @@ -50575,7 +51945,7 @@ } }, { - "id": 3003, + "id": 3025, "name": "filter", "variant": "param", "kind": 32768, @@ -50583,14 +51953,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3004, + "id": 3026, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3005, + "id": 3027, "name": "event", "variant": "declaration", "kind": 1024, @@ -50598,13 +51968,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 306, + "line": 321, "character": 8 } ], "type": { "type": "reference", - "target": 3377, + "target": 3399, "name": "ALL", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL" @@ -50614,13 +51984,13 @@ "groups": [ { "title": "Properties", - "children": [3005] + "children": [3027] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 305, + "line": 320, "character": 94 } ] @@ -50628,7 +51998,7 @@ } }, { - "id": 3006, + "id": 3028, "name": "callback", "variant": "param", "kind": 32768, @@ -50636,7 +52006,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3007, + "id": 3029, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50644,13 +52014,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 307, + "line": 322, "character": 17 } ], "signatures": [ { - "id": 3008, + "id": 3030, "name": "__type", "variant": "signature", "kind": 4096, @@ -50658,13 +52028,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 307, + "line": 322, "character": 17 } ], "parameters": [ { - "id": 3009, + "id": 3031, "name": "payload", "variant": "param", "kind": 32768, @@ -50672,14 +52042,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3010, + "id": 3032, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3012, + "id": 3034, "name": "event", "variant": "declaration", "kind": 1024, @@ -50687,20 +52057,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 309, + "line": 324, "character": 8 } ], "type": { "type": "reference", - "target": 3377, + "target": 3399, "name": "ALL", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL" } }, { - "id": 3013, + "id": 3035, "name": "payload", "variant": "declaration", "kind": 1024, @@ -50708,7 +52078,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 310, + "line": 325, "character": 8 } ], @@ -50721,7 +52091,7 @@ "typeArguments": [ { "type": "reference", - "target": 3001, + "target": 3023, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -50732,7 +52102,7 @@ } }, { - "id": 3011, + "id": 3033, "name": "type", "variant": "declaration", "kind": 1024, @@ -50740,7 +52110,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 308, + "line": 323, "character": 8 } ], @@ -50753,13 +52123,13 @@ "groups": [ { "title": "Properties", - "children": [3012, 3013, 3011] + "children": [3034, 3035, 3033] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 307, + "line": 322, "character": 27 } ] @@ -50779,14 +52149,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3014, + "id": 3036, "name": "on", "variant": "signature", "kind": 4096, @@ -50802,13 +52172,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 312, + "line": 327, "character": 4 } ], "typeParameters": [ { - "id": 3015, + "id": 3037, "name": "T", "variant": "typeParam", "kind": 131072, @@ -50816,7 +52186,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3016, + "id": 3038, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50824,13 +52194,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 312, + "line": 327, "character": 17 } ], "indexSignatures": [ { - "id": 3017, + "id": 3039, "name": "__index", "variant": "signature", "kind": 8192, @@ -50838,13 +52208,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 313, + "line": 328, "character": 8 } ], "parameters": [ { - "id": 3018, + "id": 3040, "name": "key", "variant": "param", "kind": 32768, @@ -50867,7 +52237,7 @@ ], "parameters": [ { - "id": 3019, + "id": 3041, "name": "type", "variant": "param", "kind": 32768, @@ -50878,7 +52248,7 @@ } }, { - "id": 3020, + "id": 3042, "name": "filter", "variant": "param", "kind": 32768, @@ -50886,14 +52256,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3021, + "id": 3043, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3022, + "id": 3044, "name": "event", "variant": "declaration", "kind": 1024, @@ -50901,13 +52271,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 315, + "line": 330, "character": 8 } ], "type": { "type": "reference", - "target": 3378, + "target": 3400, "name": "INSERT", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT" @@ -50917,13 +52287,13 @@ "groups": [ { "title": "Properties", - "children": [3022] + "children": [3044] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 314, + "line": 329, "character": 59 } ] @@ -50931,7 +52301,7 @@ } }, { - "id": 3023, + "id": 3045, "name": "callback", "variant": "param", "kind": 32768, @@ -50939,7 +52309,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3024, + "id": 3046, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50947,13 +52317,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 316, + "line": 331, "character": 17 } ], "signatures": [ { - "id": 3025, + "id": 3047, "name": "__type", "variant": "signature", "kind": 4096, @@ -50961,13 +52331,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 316, + "line": 331, "character": 17 } ], "parameters": [ { - "id": 3026, + "id": 3048, "name": "payload", "variant": "param", "kind": 32768, @@ -50975,14 +52345,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3027, + "id": 3049, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3029, + "id": 3051, "name": "event", "variant": "declaration", "kind": 1024, @@ -50990,20 +52360,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 318, + "line": 333, "character": 8 } ], "type": { "type": "reference", - "target": 3378, + "target": 3400, "name": "INSERT", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT" } }, { - "id": 3030, + "id": 3052, "name": "payload", "variant": "declaration", "kind": 1024, @@ -51011,7 +52381,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 319, + "line": 334, "character": 8 } ], @@ -51024,7 +52394,7 @@ "typeArguments": [ { "type": "reference", - "target": 3015, + "target": 3037, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51035,7 +52405,7 @@ } }, { - "id": 3028, + "id": 3050, "name": "type", "variant": "declaration", "kind": 1024, @@ -51043,7 +52413,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 317, + "line": 332, "character": 8 } ], @@ -51056,13 +52426,13 @@ "groups": [ { "title": "Properties", - "children": [3029, 3030, 3028] + "children": [3051, 3052, 3050] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 316, + "line": 331, "character": 27 } ] @@ -51082,14 +52452,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3031, + "id": 3053, "name": "on", "variant": "signature", "kind": 4096, @@ -51105,13 +52475,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 321, + "line": 336, "character": 4 } ], "typeParameters": [ { - "id": 3032, + "id": 3054, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51119,7 +52489,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3033, + "id": 3055, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51127,13 +52497,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 321, + "line": 336, "character": 17 } ], "indexSignatures": [ { - "id": 3034, + "id": 3056, "name": "__index", "variant": "signature", "kind": 8192, @@ -51141,13 +52511,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 322, + "line": 337, "character": 8 } ], "parameters": [ { - "id": 3035, + "id": 3057, "name": "key", "variant": "param", "kind": 32768, @@ -51170,7 +52540,7 @@ ], "parameters": [ { - "id": 3036, + "id": 3058, "name": "type", "variant": "param", "kind": 32768, @@ -51181,7 +52551,7 @@ } }, { - "id": 3037, + "id": 3059, "name": "filter", "variant": "param", "kind": 32768, @@ -51189,14 +52559,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3038, + "id": 3060, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3039, + "id": 3061, "name": "event", "variant": "declaration", "kind": 1024, @@ -51204,13 +52574,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 324, + "line": 339, "character": 8 } ], "type": { "type": "reference", - "target": 3379, + "target": 3401, "name": "UPDATE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE" @@ -51220,13 +52590,13 @@ "groups": [ { "title": "Properties", - "children": [3039] + "children": [3061] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 323, + "line": 338, "character": 59 } ] @@ -51234,7 +52604,7 @@ } }, { - "id": 3040, + "id": 3062, "name": "callback", "variant": "param", "kind": 32768, @@ -51242,7 +52612,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3041, + "id": 3063, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51250,13 +52620,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 325, + "line": 340, "character": 17 } ], "signatures": [ { - "id": 3042, + "id": 3064, "name": "__type", "variant": "signature", "kind": 4096, @@ -51264,13 +52634,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 325, + "line": 340, "character": 17 } ], "parameters": [ { - "id": 3043, + "id": 3065, "name": "payload", "variant": "param", "kind": 32768, @@ -51278,14 +52648,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3044, + "id": 3066, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3046, + "id": 3068, "name": "event", "variant": "declaration", "kind": 1024, @@ -51293,20 +52663,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 327, + "line": 342, "character": 8 } ], "type": { "type": "reference", - "target": 3379, + "target": 3401, "name": "UPDATE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE" } }, { - "id": 3047, + "id": 3069, "name": "payload", "variant": "declaration", "kind": 1024, @@ -51314,7 +52684,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 328, + "line": 343, "character": 8 } ], @@ -51327,7 +52697,7 @@ "typeArguments": [ { "type": "reference", - "target": 3032, + "target": 3054, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51338,7 +52708,7 @@ } }, { - "id": 3045, + "id": 3067, "name": "type", "variant": "declaration", "kind": 1024, @@ -51346,7 +52716,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 326, + "line": 341, "character": 8 } ], @@ -51359,13 +52729,13 @@ "groups": [ { "title": "Properties", - "children": [3046, 3047, 3045] + "children": [3068, 3069, 3067] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 325, + "line": 340, "character": 27 } ] @@ -51385,14 +52755,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3048, + "id": 3070, "name": "on", "variant": "signature", "kind": 4096, @@ -51408,13 +52778,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 330, + "line": 345, "character": 4 } ], "typeParameters": [ { - "id": 3049, + "id": 3071, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51422,7 +52792,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3050, + "id": 3072, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51430,13 +52800,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 330, + "line": 345, "character": 17 } ], "indexSignatures": [ { - "id": 3051, + "id": 3073, "name": "__index", "variant": "signature", "kind": 8192, @@ -51444,13 +52814,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 331, + "line": 346, "character": 8 } ], "parameters": [ { - "id": 3052, + "id": 3074, "name": "key", "variant": "param", "kind": 32768, @@ -51473,7 +52843,7 @@ ], "parameters": [ { - "id": 3053, + "id": 3075, "name": "type", "variant": "param", "kind": 32768, @@ -51484,7 +52854,7 @@ } }, { - "id": 3054, + "id": 3076, "name": "filter", "variant": "param", "kind": 32768, @@ -51492,14 +52862,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3055, + "id": 3077, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3056, + "id": 3078, "name": "event", "variant": "declaration", "kind": 1024, @@ -51507,13 +52877,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 333, + "line": 348, "character": 8 } ], "type": { "type": "reference", - "target": 3380, + "target": 3402, "name": "DELETE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE" @@ -51523,13 +52893,13 @@ "groups": [ { "title": "Properties", - "children": [3056] + "children": [3078] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 332, + "line": 347, "character": 59 } ] @@ -51537,7 +52907,7 @@ } }, { - "id": 3057, + "id": 3079, "name": "callback", "variant": "param", "kind": 32768, @@ -51545,7 +52915,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3058, + "id": 3080, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51553,13 +52923,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 334, + "line": 349, "character": 17 } ], "signatures": [ { - "id": 3059, + "id": 3081, "name": "__type", "variant": "signature", "kind": 4096, @@ -51567,13 +52937,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 334, + "line": 349, "character": 17 } ], "parameters": [ { - "id": 3060, + "id": 3082, "name": "payload", "variant": "param", "kind": 32768, @@ -51581,14 +52951,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3061, + "id": 3083, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3063, + "id": 3085, "name": "event", "variant": "declaration", "kind": 1024, @@ -51596,20 +52966,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 336, + "line": 351, "character": 8 } ], "type": { "type": "reference", - "target": 3380, + "target": 3402, "name": "DELETE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE" } }, { - "id": 3064, + "id": 3086, "name": "payload", "variant": "declaration", "kind": 1024, @@ -51617,7 +52987,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 337, + "line": 352, "character": 8 } ], @@ -51630,7 +53000,7 @@ "typeArguments": [ { "type": "reference", - "target": 3049, + "target": 3071, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51641,7 +53011,7 @@ } }, { - "id": 3062, + "id": 3084, "name": "type", "variant": "declaration", "kind": 1024, @@ -51649,7 +53019,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 335, + "line": 350, "character": 8 } ], @@ -51662,13 +53032,13 @@ "groups": [ { "title": "Properties", - "children": [3063, 3064, 3062] + "children": [3085, 3086, 3084] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 334, + "line": 349, "character": 27 } ] @@ -51688,14 +53058,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3065, + "id": 3087, "name": "on", "variant": "signature", "kind": 4096, @@ -51711,13 +53081,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 339, + "line": 354, "character": 4 } ], "typeParameters": [ { - "id": 3066, + "id": 3088, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51725,7 +53095,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3067, + "id": 3089, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51733,13 +53103,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 339, + "line": 354, "character": 17 } ], "indexSignatures": [ { - "id": 3068, + "id": 3090, "name": "__index", "variant": "signature", "kind": 8192, @@ -51747,13 +53117,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 340, + "line": 355, "character": 8 } ], "parameters": [ { - "id": 3069, + "id": 3091, "name": "key", "variant": "param", "kind": 32768, @@ -51776,7 +53146,7 @@ ], "parameters": [ { - "id": 3070, + "id": 3092, "name": "type", "variant": "param", "kind": 32768, @@ -51787,7 +53157,7 @@ } }, { - "id": 3071, + "id": 3093, "name": "filter", "variant": "param", "kind": 32768, @@ -51795,7 +53165,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3072, + "id": 3094, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51804,7 +53174,7 @@ } }, { - "id": 3073, + "id": 3095, "name": "callback", "variant": "param", "kind": 32768, @@ -51812,7 +53182,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3074, + "id": 3096, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51820,13 +53190,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 341, + "line": 356, "character": 70 } ], "signatures": [ { - "id": 3075, + "id": 3097, "name": "__type", "variant": "signature", "kind": 4096, @@ -51834,13 +53204,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 341, + "line": 356, "character": 70 } ], "parameters": [ { - "id": 3076, + "id": 3098, "name": "payload", "variant": "param", "kind": 32768, @@ -51863,7 +53233,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -51872,7 +53242,7 @@ ] }, { - "id": 2835, + "id": 2857, "name": "presenceState", "variant": "declaration", "kind": 2048, @@ -51880,13 +53250,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 217, + "line": 232, "character": 4 } ], "signatures": [ { - "id": 2836, + "id": 2858, "name": "presenceState", "variant": "signature", "kind": 4096, @@ -51913,13 +53283,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 217, + "line": 232, "character": 4 } ], "typeParameters": [ { - "id": 2837, + "id": 2859, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51927,7 +53297,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2838, + "id": 2860, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51935,13 +53305,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 217, + "line": 232, "character": 28 } ], "indexSignatures": [ { - "id": 2839, + "id": 2861, "name": "__index", "variant": "signature", "kind": 8192, @@ -51949,13 +53319,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 218, + "line": 233, "character": 8 } ], "parameters": [ { - "id": 2840, + "id": 2862, "name": "key", "variant": "param", "kind": 32768, @@ -51977,7 +53347,7 @@ "default": { "type": "reflection", "declaration": { - "id": 2841, + "id": 2863, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51988,11 +53358,11 @@ ], "type": { "type": "reference", - "target": 3360, + "target": 3382, "typeArguments": [ { "type": "reference", - "target": 2837, + "target": 2859, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -52005,7 +53375,7 @@ ] }, { - "id": 3090, + "id": 3112, "name": "send", "variant": "declaration", "kind": 2048, @@ -52013,13 +53383,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 412, + "line": 430, "character": 4 } ], "signatures": [ { - "id": 3091, + "id": 3113, "name": "send", "variant": "signature", "kind": 4096, @@ -52088,13 +53458,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 412, + "line": 430, "character": 4 } ], "parameters": [ { - "id": 3092, + "id": 3114, "name": "args", "variant": "param", "kind": 32768, @@ -52110,14 +53480,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3093, + "id": 3115, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3095, + "id": 3117, "name": "event", "variant": "declaration", "kind": 1024, @@ -52133,7 +53503,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 414, + "line": 432, "character": 8 } ], @@ -52143,7 +53513,7 @@ } }, { - "id": 3096, + "id": 3118, "name": "payload", "variant": "declaration", "kind": 1024, @@ -52161,7 +53531,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 415, + "line": 433, "character": 8 } ], @@ -52171,7 +53541,7 @@ } }, { - "id": 3094, + "id": 3116, "name": "type", "variant": "declaration", "kind": 1024, @@ -52187,7 +53557,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 413, + "line": 431, "character": 8 } ], @@ -52213,19 +53583,19 @@ "groups": [ { "title": "Properties", - "children": [3095, 3096, 3094] + "children": [3117, 3118, 3116] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 412, + "line": 430, "character": 15 } ], "indexSignatures": [ { - "id": 3097, + "id": 3119, "name": "__index", "variant": "signature", "kind": 8192, @@ -52233,13 +53603,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 416, + "line": 434, "character": 8 } ], "parameters": [ { - "id": 3098, + "id": 3120, "name": "key", "variant": "param", "kind": 32768, @@ -52260,7 +53630,7 @@ } }, { - "id": 3099, + "id": 3121, "name": "opts", "variant": "param", "kind": 32768, @@ -52278,7 +53648,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3100, + "id": 3122, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52286,13 +53656,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 417, + "line": 435, "character": 14 } ], "indexSignatures": [ { - "id": 3101, + "id": 3123, "name": "__index", "variant": "signature", "kind": 8192, @@ -52300,13 +53670,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 418, + "line": 436, "character": 8 } ], "parameters": [ { - "id": 3102, + "id": 3124, "name": "key", "variant": "param", "kind": 32768, @@ -52336,7 +53706,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52348,7 +53718,7 @@ ] }, { - "id": 2826, + "id": 2848, "name": "subscribe", "variant": "declaration", "kind": 2048, @@ -52356,13 +53726,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 4 } ], "signatures": [ { - "id": 2827, + "id": 2849, "name": "subscribe", "variant": "signature", "kind": 4096, @@ -52371,7 +53741,63 @@ "summary": [ { "kind": "text", - "text": "Subscribe registers your client with the server" + "text": "Subscribe registers your client with the server.\n\nThe optional " + }, + { + "kind": "code", + "text": "`callback`" + }, + { + "kind": "text", + "text": " receives a " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": " and, on failure, an " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " argument.\nLog the full " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " so its " + }, + { + "kind": "code", + "text": "`cause`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": ", and any structured fields aren't hidden\nbehind " + }, + { + "kind": "code", + "text": "`err.message`" + }, + { + "kind": "text", + "text": "." } ], "blockTags": [ @@ -52383,19 +53809,29 @@ "text": "Realtime" } ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nsupabase.channel('room1').subscribe((status, err) => {\n if (status === 'CHANNEL_ERROR' || status === 'TIMED_OUT') {\n // Log the full error: its `cause` often holds the underlying reason.\n console.error(status, err)\n }\n})\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 4 } ], "parameters": [ { - "id": 2828, + "id": 2850, "name": "callback", "variant": "param", "kind": 32768, @@ -52405,7 +53841,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2829, + "id": 2851, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52413,13 +53849,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 25 } ], "signatures": [ { - "id": 2830, + "id": 2852, "name": "__type", "variant": "signature", "kind": 4096, @@ -52427,26 +53863,26 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 25 } ], "parameters": [ { - "id": 2831, + "id": 2853, "name": "status", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3385, + "target": 3407, "name": "REALTIME_SUBSCRIBE_STATES", "package": "@supabase/realtime-js" } }, { - "id": 2832, + "id": 2854, "name": "err", "variant": "param", "kind": 32768, @@ -52474,7 +53910,7 @@ } }, { - "id": 2833, + "id": 2855, "name": "timeout", "variant": "param", "kind": 32768, @@ -52489,7 +53925,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -52498,7 +53934,7 @@ ] }, { - "id": 3109, + "id": 3131, "name": "teardown", "variant": "declaration", "kind": 2048, @@ -52506,13 +53942,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 444, + "line": 462, "character": 4 } ], "signatures": [ { - "id": 3110, + "id": 3132, "name": "teardown", "variant": "signature", "kind": 4096, @@ -52539,7 +53975,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 444, + "line": 462, "character": 4 } ], @@ -52551,7 +53987,7 @@ ] }, { - "id": 2842, + "id": 2864, "name": "track", "variant": "declaration", "kind": 2048, @@ -52559,13 +53995,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 226, + "line": 241, "character": 4 } ], "signatures": [ { - "id": 2843, + "id": 2865, "name": "track", "variant": "signature", "kind": 4096, @@ -52600,13 +54036,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 226, + "line": 241, "character": 4 } ], "parameters": [ { - "id": 2844, + "id": 2866, "name": "payload", "variant": "param", "kind": 32768, @@ -52614,7 +54050,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2845, + "id": 2867, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52622,13 +54058,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 226, + "line": 241, "character": 19 } ], "indexSignatures": [ { - "id": 2846, + "id": 2868, "name": "__index", "variant": "signature", "kind": 8192, @@ -52636,13 +54072,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 227, + "line": 242, "character": 8 } ], "parameters": [ { - "id": 2847, + "id": 2869, "name": "key", "variant": "param", "kind": 32768, @@ -52663,7 +54099,7 @@ } }, { - "id": 2848, + "id": 2870, "name": "opts", "variant": "param", "kind": 32768, @@ -52673,7 +54109,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2849, + "id": 2871, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52681,13 +54117,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 228, + "line": 243, "character": 14 } ], "indexSignatures": [ { - "id": 2850, + "id": 2872, "name": "__index", "variant": "signature", "kind": 8192, @@ -52695,13 +54131,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 229, + "line": 244, "character": 8 } ], "parameters": [ { - "id": 2851, + "id": 2873, "name": "key", "variant": "param", "kind": 32768, @@ -52731,7 +54167,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52743,7 +54179,7 @@ ] }, { - "id": 3106, + "id": 3128, "name": "unsubscribe", "variant": "declaration", "kind": 2048, @@ -52751,13 +54187,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 438, + "line": 456, "character": 4 } ], "signatures": [ { - "id": 3107, + "id": 3129, "name": "unsubscribe", "variant": "signature", "kind": 4096, @@ -52792,13 +54228,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 438, + "line": 456, "character": 4 } ], "parameters": [ { - "id": 3108, + "id": 3130, "name": "timeout", "variant": "param", "kind": 32768, @@ -52820,7 +54256,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52832,7 +54268,7 @@ ] }, { - "id": 2852, + "id": 2874, "name": "untrack", "variant": "declaration", "kind": 2048, @@ -52840,13 +54276,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 236, + "line": 251, "character": 4 } ], "signatures": [ { - "id": 2853, + "id": 2875, "name": "untrack", "variant": "signature", "kind": 4096, @@ -52873,13 +54309,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 236, + "line": 251, "character": 4 } ], "parameters": [ { - "id": 2854, + "id": 2876, "name": "opts", "variant": "param", "kind": 32768, @@ -52889,7 +54325,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2855, + "id": 2877, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52897,13 +54333,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 236, + "line": 251, "character": 19 } ], "indexSignatures": [ { - "id": 2856, + "id": 2878, "name": "__index", "variant": "signature", "kind": 8192, @@ -52911,13 +54347,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 237, + "line": 252, "character": 8 } ], "parameters": [ { - "id": 2857, + "id": 2879, "name": "key", "variant": "param", "kind": 32768, @@ -52947,7 +54383,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52959,7 +54395,7 @@ ] }, { - "id": 3103, + "id": 3125, "name": "updateJoinPayload", "variant": "declaration", "kind": 2048, @@ -52967,13 +54403,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 426, + "line": 444, "character": 4 } ], "signatures": [ { - "id": 3104, + "id": 3126, "name": "updateJoinPayload", "variant": "signature", "kind": 4096, @@ -53000,13 +54436,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 426, + "line": 444, "character": 4 } ], "parameters": [ { - "id": 3105, + "id": 3127, "name": "payload", "variant": "param", "kind": 32768, @@ -53043,32 +54479,32 @@ "groups": [ { "title": "Constructors", - "children": [2801] + "children": [2823] }, { "title": "Properties", - "children": [2809, 2811, 2807, 2813, 2812, 2808, 2810, 2806] + "children": [2831, 2833, 2829, 2835, 2834, 2830, 2832, 2828] }, { "title": "Accessors", - "children": [2818, 2822, 2824, 2814, 2820] + "children": [2840, 2844, 2846, 2836, 2842] }, { "title": "Methods", - "children": [3111, 3077, 2858, 2835, 3090, 2826, 3109, 2842, 3106, 2852, 3103] + "children": [3133, 3099, 2880, 2857, 3112, 2848, 3131, 2864, 3128, 2874, 3125] } ], "categories": [ { "title": "Other", "children": [ - 2809, 2811, 2807, 2813, 2812, 2808, 2810, 2806, 2818, 2822, 2824, 2814, 2820, - 3111, 2858 + 2831, 2833, 2829, 2835, 2834, 2830, 2832, 2828, 2840, 2844, 2846, 2836, 2842, + 3133, 2880 ] }, { "title": "Realtime", - "children": [2801, 3077, 2835, 3090, 2826, 3109, 2842, 3106, 2852, 3103] + "children": [2823, 3099, 2857, 3112, 2848, 3131, 2864, 3128, 2874, 3125] } ], "sources": [ @@ -53080,14 +54516,14 @@ ] }, { - "id": 3130, + "id": 3152, "name": "RealtimeClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 3131, + "id": 3153, "name": "constructor", "variant": "declaration", "kind": 512, @@ -53101,7 +54537,7 @@ ], "signatures": [ { - "id": 3132, + "id": 3154, "name": "RealtimeClient", "variant": "signature", "kind": 16384, @@ -53154,7 +54590,7 @@ ], "parameters": [ { - "id": 3133, + "id": 3155, "name": "endPoint", "variant": "param", "kind": 32768, @@ -53173,7 +54609,7 @@ } }, { - "id": 3134, + "id": 3156, "name": "options", "variant": "param", "kind": 32768, @@ -53182,7 +54618,7 @@ }, "type": { "type": "reference", - "target": 3251, + "target": 3273, "name": "RealtimeClientOptions", "package": "@supabase/realtime-js", "highlightedProperties": { @@ -53284,7 +54720,7 @@ ], "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -53293,7 +54729,7 @@ ] }, { - "id": 3137, + "id": 3159, "name": "accessToken", "variant": "declaration", "kind": 1024, @@ -53315,7 +54751,7 @@ { "type": "reflection", "declaration": { - "id": 3138, + "id": 3160, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53329,7 +54765,7 @@ ], "signatures": [ { - "id": 3139, + "id": 3161, "name": "__type", "variant": "signature", "kind": 4096, @@ -53373,7 +54809,7 @@ } }, { - "id": 3136, + "id": 3158, "name": "accessTokenValue", "variant": "declaration", "kind": 1024, @@ -53400,7 +54836,7 @@ } }, { - "id": 3140, + "id": 3162, "name": "apiKey", "variant": "declaration", "kind": 1024, @@ -53427,7 +54863,7 @@ } }, { - "id": 3135, + "id": 3157, "name": "channels", "variant": "declaration", "kind": 1024, @@ -53443,7 +54879,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -53451,7 +54887,7 @@ } }, { - "id": 3152, + "id": 3174, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -53466,7 +54902,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3153, + "id": 3175, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53485,7 +54921,7 @@ ], "signatures": [ { - "id": 3154, + "id": 3176, "name": "__type", "variant": "signature", "kind": 4096, @@ -53507,7 +54943,7 @@ ], "parameters": [ { - "id": 3155, + "id": 3177, "name": "input", "variant": "param", "kind": 32768, @@ -53537,7 +54973,7 @@ } }, { - "id": 3156, + "id": 3178, "name": "init", "variant": "param", "kind": 32768, @@ -53577,7 +55013,7 @@ } }, { - "id": 3157, + "id": 3179, "name": "__type", "variant": "signature", "kind": 4096, @@ -53599,7 +55035,7 @@ ], "parameters": [ { - "id": 3158, + "id": 3180, "name": "input", "variant": "param", "kind": 32768, @@ -53633,7 +55069,7 @@ } }, { - "id": 3159, + "id": 3181, "name": "init", "variant": "param", "kind": 32768, @@ -53677,7 +55113,7 @@ } }, { - "id": 3142, + "id": 3164, "name": "headers", "variant": "declaration", "kind": 1024, @@ -53708,7 +55144,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3143, + "id": 3165, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53722,7 +55158,7 @@ ], "indexSignatures": [ { - "id": 3144, + "id": 3166, "name": "__index", "variant": "signature", "kind": 8192, @@ -53736,7 +55172,7 @@ ], "parameters": [ { - "id": 3145, + "id": 3167, "name": "key", "variant": "param", "kind": 32768, @@ -53757,7 +55193,7 @@ } }, { - "id": 3141, + "id": 3163, "name": "httpEndpoint", "variant": "declaration", "kind": 1024, @@ -53775,7 +55211,7 @@ } }, { - "id": 3151, + "id": 3173, "name": "logLevel", "variant": "declaration", "kind": 1024, @@ -53800,7 +55236,7 @@ } }, { - "id": 3146, + "id": 3168, "name": "params", "variant": "declaration", "kind": 1024, @@ -53817,7 +55253,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3147, + "id": 3169, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53831,7 +55267,7 @@ ], "indexSignatures": [ { - "id": 3148, + "id": 3170, "name": "__index", "variant": "signature", "kind": 8192, @@ -53845,7 +55281,7 @@ ], "parameters": [ { - "id": 3149, + "id": 3171, "name": "key", "variant": "param", "kind": 32768, @@ -53866,7 +55302,7 @@ } }, { - "id": 3150, + "id": 3172, "name": "ref", "variant": "declaration", "kind": 1024, @@ -53884,7 +55320,7 @@ } }, { - "id": 3163, + "id": 3185, "name": "serializer", "variant": "declaration", "kind": 1024, @@ -53908,7 +55344,7 @@ } }, { - "id": 3160, + "id": 3182, "name": "worker", "variant": "declaration", "kind": 1024, @@ -53928,7 +55364,7 @@ } }, { - "id": 3162, + "id": 3184, "name": "workerRef", "variant": "declaration", "kind": 1024, @@ -53953,7 +55389,7 @@ } }, { - "id": 3161, + "id": 3183, "name": "workerUrl", "variant": "declaration", "kind": 1024, @@ -53973,7 +55409,7 @@ } }, { - "id": 3184, + "id": 3206, "name": "decode", "variant": "declaration", "kind": 262144, @@ -53986,7 +55422,7 @@ } ], "getSignature": { - "id": 3185, + "id": 3207, "name": "decode", "variant": "signature", "kind": 524288, @@ -54016,7 +55452,7 @@ } }, { - "id": 3182, + "id": 3204, "name": "encode", "variant": "declaration", "kind": 262144, @@ -54029,7 +55465,7 @@ } ], "getSignature": { - "id": 3183, + "id": 3205, "name": "encode", "variant": "signature", "kind": 524288, @@ -54059,7 +55495,7 @@ } }, { - "id": 3164, + "id": 3186, "name": "endPoint", "variant": "declaration", "kind": 262144, @@ -54072,7 +55508,7 @@ } ], "getSignature": { - "id": 3165, + "id": 3187, "name": "endPoint", "variant": "signature", "kind": 524288, @@ -54091,7 +55527,7 @@ } }, { - "id": 3170, + "id": 3192, "name": "heartbeatCallback", "variant": "declaration", "kind": 262144, @@ -54104,7 +55540,7 @@ } ], "getSignature": { - "id": 3171, + "id": 3193, "name": "heartbeatCallback", "variant": "signature", "kind": 524288, @@ -54128,7 +55564,7 @@ } }, { - "id": 3172, + "id": 3194, "name": "heartbeatIntervalMs", "variant": "declaration", "kind": 262144, @@ -54141,7 +55577,7 @@ } ], "getSignature": { - "id": 3173, + "id": 3195, "name": "heartbeatIntervalMs", "variant": "signature", "kind": 524288, @@ -54160,7 +55596,7 @@ } }, { - "id": 3174, + "id": 3196, "name": "heartbeatTimer", "variant": "declaration", "kind": 262144, @@ -54173,7 +55609,7 @@ } ], "getSignature": { - "id": 3175, + "id": 3197, "name": "heartbeatTimer", "variant": "signature", "kind": 524288, @@ -54197,7 +55633,7 @@ } }, { - "id": 3176, + "id": 3198, "name": "pendingHeartbeatRef", "variant": "declaration", "kind": 262144, @@ -54210,7 +55646,7 @@ } ], "getSignature": { - "id": 3177, + "id": 3199, "name": "pendingHeartbeatRef", "variant": "signature", "kind": 524288, @@ -54238,7 +55674,7 @@ } }, { - "id": 3186, + "id": 3208, "name": "reconnectAfterMs", "variant": "declaration", "kind": 262144, @@ -54251,7 +55687,7 @@ } ], "getSignature": { - "id": 3187, + "id": 3209, "name": "reconnectAfterMs", "variant": "signature", "kind": 524288, @@ -54266,7 +55702,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3188, + "id": 3210, "name": "__type", "variant": "declaration", "kind": 65536, @@ -54280,7 +55716,7 @@ ], "signatures": [ { - "id": 3189, + "id": 3211, "name": "__type", "variant": "signature", "kind": 4096, @@ -54294,7 +55730,7 @@ ], "parameters": [ { - "id": 3190, + "id": 3212, "name": "tries", "variant": "param", "kind": 32768, @@ -54316,7 +55752,7 @@ } }, { - "id": 3178, + "id": 3200, "name": "reconnectTimer", "variant": "declaration", "kind": 262144, @@ -54329,7 +55765,7 @@ } ], "getSignature": { - "id": 3179, + "id": 3201, "name": "reconnectTimer", "variant": "signature", "kind": 524288, @@ -54354,7 +55790,7 @@ } }, { - "id": 3191, + "id": 3213, "name": "sendBuffer", "variant": "declaration", "kind": 262144, @@ -54367,7 +55803,7 @@ } ], "getSignature": { - "id": 3192, + "id": 3214, "name": "sendBuffer", "variant": "signature", "kind": 524288, @@ -54384,7 +55820,7 @@ "elementType": { "type": "reflection", "declaration": { - "id": 3193, + "id": 3215, "name": "__type", "variant": "declaration", "kind": 65536, @@ -54398,7 +55834,7 @@ ], "signatures": [ { - "id": 3194, + "id": 3216, "name": "__type", "variant": "signature", "kind": 4096, @@ -54422,7 +55858,7 @@ } }, { - "id": 3195, + "id": 3217, "name": "stateChangeCallbacks", "variant": "declaration", "kind": 262144, @@ -54435,7 +55871,7 @@ } ], "getSignature": { - "id": 3196, + "id": 3218, "name": "stateChangeCallbacks", "variant": "signature", "kind": 524288, @@ -54450,14 +55886,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3197, + "id": 3219, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3199, + "id": 3221, "name": "close", "variant": "declaration", "kind": 1024, @@ -54492,7 +55928,7 @@ } }, { - "id": 3200, + "id": 3222, "name": "error", "variant": "declaration", "kind": 1024, @@ -54527,7 +55963,7 @@ } }, { - "id": 3201, + "id": 3223, "name": "message", "variant": "declaration", "kind": 1024, @@ -54562,7 +55998,7 @@ } }, { - "id": 3198, + "id": 3220, "name": "open", "variant": "declaration", "kind": 1024, @@ -54600,7 +56036,7 @@ "groups": [ { "title": "Properties", - "children": [3199, 3200, 3201, 3198] + "children": [3221, 3222, 3223, 3220] } ], "sources": [ @@ -54615,7 +56051,7 @@ } }, { - "id": 3166, + "id": 3188, "name": "timeout", "variant": "declaration", "kind": 262144, @@ -54628,7 +56064,7 @@ } ], "getSignature": { - "id": 3167, + "id": 3189, "name": "timeout", "variant": "signature", "kind": 524288, @@ -54647,7 +56083,7 @@ } }, { - "id": 3168, + "id": 3190, "name": "transport", "variant": "declaration", "kind": 262144, @@ -54660,7 +56096,7 @@ } ], "getSignature": { - "id": 3169, + "id": 3191, "name": "transport", "variant": "signature", "kind": 524288, @@ -54674,14 +56110,14 @@ ], "type": { "type": "reference", - "target": 3459, + "target": 3481, "name": "WebSocketLikeConstructor", "package": "@supabase/realtime-js" } } }, { - "id": 3180, + "id": 3202, "name": "vsn", "variant": "declaration", "kind": 262144, @@ -54694,7 +56130,7 @@ } ], "getSignature": { - "id": 3181, + "id": 3203, "name": "vsn", "variant": "signature", "kind": 524288, @@ -54718,7 +56154,7 @@ } }, { - "id": 3236, + "id": 3258, "name": "channel", "variant": "declaration", "kind": 2048, @@ -54732,7 +56168,7 @@ ], "signatures": [ { - "id": 3237, + "id": 3259, "name": "channel", "variant": "signature", "kind": 4096, @@ -54747,7 +56183,7 @@ "kind": "inline-tag", "tag": "@link", "text": "RealtimeChannel", - "target": 2800 + "target": 2822 }, { "kind": "text", @@ -54783,7 +56219,7 @@ ], "parameters": [ { - "id": 3238, + "id": 3260, "name": "topic", "variant": "param", "kind": 32768, @@ -54794,7 +56230,7 @@ } }, { - "id": 3239, + "id": 3261, "name": "params", "variant": "param", "kind": 32768, @@ -54803,7 +56239,7 @@ }, "type": { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" } @@ -54811,7 +56247,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -54820,7 +56256,7 @@ ] }, { - "id": 3208, + "id": 3230, "name": "connect", "variant": "declaration", "kind": 2048, @@ -54834,7 +56270,7 @@ ], "signatures": [ { - "id": 3209, + "id": 3231, "name": "connect", "variant": "signature", "kind": 4096, @@ -54873,7 +56309,7 @@ ] }, { - "id": 3228, + "id": 3250, "name": "connectionState", "variant": "declaration", "kind": 2048, @@ -54887,7 +56323,7 @@ ], "signatures": [ { - "id": 3229, + "id": 3251, "name": "connectionState", "variant": "signature", "kind": 4096, @@ -54931,7 +56367,7 @@ ] }, { - "id": 3212, + "id": 3234, "name": "disconnect", "variant": "declaration", "kind": 2048, @@ -54945,7 +56381,7 @@ ], "signatures": [ { - "id": 3213, + "id": 3235, "name": "disconnect", "variant": "signature", "kind": 4096, @@ -54978,7 +56414,7 @@ ], "parameters": [ { - "id": 3214, + "id": 3236, "name": "code", "variant": "param", "kind": 32768, @@ -54999,7 +56435,7 @@ } }, { - "id": 3215, + "id": 3237, "name": "reason", "variant": "param", "kind": 32768, @@ -55048,7 +56484,7 @@ ] }, { - "id": 3210, + "id": 3232, "name": "endpointURL", "variant": "declaration", "kind": 2048, @@ -55062,7 +56498,7 @@ ], "signatures": [ { - "id": 3211, + "id": 3233, "name": "endpointURL", "variant": "signature", "kind": 4096, @@ -55110,7 +56546,7 @@ ] }, { - "id": 3216, + "id": 3238, "name": "getChannels", "variant": "declaration", "kind": 2048, @@ -55124,7 +56560,7 @@ ], "signatures": [ { - "id": 3217, + "id": 3239, "name": "getChannels", "variant": "signature", "kind": 4096, @@ -55159,7 +56595,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -55169,7 +56605,7 @@ ] }, { - "id": 3230, + "id": 3252, "name": "isConnected", "variant": "declaration", "kind": 2048, @@ -55183,7 +56619,7 @@ ], "signatures": [ { - "id": 3231, + "id": 3253, "name": "isConnected", "variant": "signature", "kind": 4096, @@ -55230,7 +56666,7 @@ ] }, { - "id": 3232, + "id": 3254, "name": "isConnecting", "variant": "declaration", "kind": 2048, @@ -55244,7 +56680,7 @@ ], "signatures": [ { - "id": 3233, + "id": 3255, "name": "isConnecting", "variant": "signature", "kind": 4096, @@ -55291,7 +56727,7 @@ ] }, { - "id": 3234, + "id": 3256, "name": "isDisconnecting", "variant": "declaration", "kind": 2048, @@ -55305,7 +56741,7 @@ ], "signatures": [ { - "id": 3235, + "id": 3257, "name": "isDisconnecting", "variant": "signature", "kind": 4096, @@ -55352,7 +56788,7 @@ ] }, { - "id": 3223, + "id": 3245, "name": "log", "variant": "declaration", "kind": 2048, @@ -55366,7 +56802,7 @@ ], "signatures": [ { - "id": 3224, + "id": 3246, "name": "log", "variant": "signature", "kind": 4096, @@ -55407,7 +56843,7 @@ ], "parameters": [ { - "id": 3225, + "id": 3247, "name": "kind", "variant": "param", "kind": 32768, @@ -55418,7 +56854,7 @@ } }, { - "id": 3226, + "id": 3248, "name": "msg", "variant": "param", "kind": 32768, @@ -55429,7 +56865,7 @@ } }, { - "id": 3227, + "id": 3249, "name": "data", "variant": "param", "kind": 32768, @@ -55450,7 +56886,7 @@ ] }, { - "id": 3248, + "id": 3270, "name": "onHeartbeat", "variant": "declaration", "kind": 2048, @@ -55464,7 +56900,7 @@ ], "signatures": [ { - "id": 3249, + "id": 3271, "name": "onHeartbeat", "variant": "signature", "kind": 4096, @@ -55497,7 +56933,7 @@ ], "parameters": [ { - "id": 3250, + "id": 3272, "name": "callback", "variant": "param", "kind": 32768, @@ -55521,7 +56957,7 @@ ] }, { - "id": 3240, + "id": 3262, "name": "push", "variant": "declaration", "kind": 2048, @@ -55535,7 +56971,7 @@ ], "signatures": [ { - "id": 3241, + "id": 3263, "name": "push", "variant": "signature", "kind": 4096, @@ -55568,14 +57004,14 @@ ], "parameters": [ { - "id": 3242, + "id": 3264, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3292, + "target": 3314, "name": "RealtimeMessage", "package": "@supabase/realtime-js" } @@ -55589,7 +57025,7 @@ ] }, { - "id": 3221, + "id": 3243, "name": "removeAllChannels", "variant": "declaration", "kind": 2048, @@ -55603,7 +57039,7 @@ ], "signatures": [ { - "id": 3222, + "id": 3244, "name": "removeAllChannels", "variant": "signature", "kind": 4096, @@ -55645,7 +57081,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -55658,7 +57094,7 @@ ] }, { - "id": 3218, + "id": 3240, "name": "removeChannel", "variant": "declaration", "kind": 2048, @@ -55672,7 +57108,7 @@ ], "signatures": [ { - "id": 3219, + "id": 3241, "name": "removeChannel", "variant": "signature", "kind": 4096, @@ -55705,7 +57141,7 @@ ], "parameters": [ { - "id": 3220, + "id": 3242, "name": "channel", "variant": "param", "kind": 32768, @@ -55720,7 +57156,7 @@ }, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -55736,7 +57172,7 @@ "typeArguments": [ { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -55748,7 +57184,7 @@ ] }, { - "id": 3246, + "id": 3268, "name": "sendHeartbeat", "variant": "declaration", "kind": 2048, @@ -55762,7 +57198,7 @@ ], "signatures": [ { - "id": 3247, + "id": 3269, "name": "sendHeartbeat", "variant": "signature", "kind": 4096, @@ -55812,7 +57248,7 @@ ] }, { - "id": 3243, + "id": 3265, "name": "setAuth", "variant": "declaration", "kind": 2048, @@ -55826,7 +57262,7 @@ ], "signatures": [ { - "id": 3244, + "id": 3266, "name": "setAuth", "variant": "signature", "kind": 4096, @@ -55892,7 +57328,7 @@ ], "parameters": [ { - "id": 3245, + "id": 3267, "name": "token", "variant": "param", "kind": 32768, @@ -55944,27 +57380,27 @@ "groups": [ { "title": "Constructors", - "children": [3131] + "children": [3153] }, { "title": "Properties", "children": [ - 3137, 3136, 3140, 3135, 3152, 3142, 3141, 3151, 3146, 3150, 3163, 3160, 3162, - 3161 + 3159, 3158, 3162, 3157, 3174, 3164, 3163, 3173, 3168, 3172, 3185, 3182, 3184, + 3183 ] }, { "title": "Accessors", "children": [ - 3184, 3182, 3164, 3170, 3172, 3174, 3176, 3186, 3178, 3191, 3195, 3166, 3168, - 3180 + 3206, 3204, 3186, 3192, 3194, 3196, 3198, 3208, 3200, 3213, 3217, 3188, 3190, + 3202 ] }, { "title": "Methods", "children": [ - 3236, 3208, 3228, 3212, 3210, 3216, 3230, 3232, 3234, 3223, 3248, 3240, 3221, - 3218, 3246, 3243 + 3258, 3230, 3250, 3234, 3232, 3238, 3252, 3254, 3256, 3245, 3270, 3262, 3243, + 3240, 3268, 3265 ] } ], @@ -55972,16 +57408,16 @@ { "title": "Other", "children": [ - 3137, 3136, 3140, 3135, 3152, 3142, 3141, 3151, 3146, 3150, 3163, 3160, 3162, - 3161, 3184, 3182, 3164, 3170, 3172, 3174, 3176, 3186, 3178, 3191, 3195, 3166, - 3168, 3180 + 3159, 3158, 3162, 3157, 3174, 3164, 3163, 3173, 3168, 3172, 3185, 3182, 3184, + 3183, 3206, 3204, 3186, 3192, 3194, 3196, 3198, 3208, 3200, 3213, 3217, 3188, + 3190, 3202 ] }, { "title": "Realtime", "children": [ - 3131, 3236, 3208, 3228, 3212, 3210, 3216, 3230, 3232, 3234, 3223, 3248, 3240, - 3221, 3218, 3246, 3243 + 3153, 3258, 3230, 3250, 3234, 3232, 3238, 3252, 3254, 3256, 3245, 3270, 3262, + 3243, 3240, 3268, 3265 ] } ], @@ -55994,14 +57430,14 @@ ] }, { - "id": 2791, + "id": 2813, "name": "RealtimePresence", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2792, + "id": 2814, "name": "constructor", "variant": "declaration", "kind": 512, @@ -56015,7 +57451,7 @@ ], "signatures": [ { - "id": 2793, + "id": 2815, "name": "RealtimePresence", "variant": "signature", "kind": 16384, @@ -56058,7 +57494,7 @@ ], "parameters": [ { - "id": 2794, + "id": 2816, "name": "channel", "variant": "param", "kind": 32768, @@ -56073,14 +57509,14 @@ }, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2795, + "id": 2817, "name": "opts", "variant": "param", "kind": 32768, @@ -56116,7 +57552,7 @@ ], "type": { "type": "reference", - "target": 2791, + "target": 2813, "name": "RealtimePresence", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -56125,7 +57561,7 @@ ] }, { - "id": 2796, + "id": 2818, "name": "channel", "variant": "declaration", "kind": 1024, @@ -56139,14 +57575,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2797, + "id": 2819, "name": "state", "variant": "declaration", "kind": 262144, @@ -56159,7 +57595,7 @@ } ], "getSignature": { - "id": 2798, + "id": 2820, "name": "state", "variant": "signature", "kind": 524288, @@ -56173,7 +57609,7 @@ ], "type": { "type": "reference", - "target": 3360, + "target": 3382, "name": "RealtimePresenceState", "package": "@supabase/realtime-js" } @@ -56183,25 +57619,25 @@ "groups": [ { "title": "Constructors", - "children": [2792] + "children": [2814] }, { "title": "Properties", - "children": [2796] + "children": [2818] }, { "title": "Accessors", - "children": [2797] + "children": [2819] } ], "categories": [ { "title": "Other", - "children": [2796, 2797] + "children": [2818, 2819] }, { "title": "Realtime", - "children": [2792] + "children": [2814] } ], "sources": [ @@ -56644,7 +58080,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L309" } ], "signatures": [ @@ -56957,7 +58393,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L309" } ], "typeParameters": [ @@ -57005,7 +58441,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ], "type": { @@ -57025,7 +58461,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ] } @@ -57375,7 +58811,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ], "type": { @@ -57395,7 +58831,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ] } @@ -57476,7 +58912,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -57499,7 +58935,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -57519,7 +58955,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -57537,7 +58973,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -57587,7 +59023,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ], "type": { @@ -57607,7 +59043,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ] } @@ -57643,7 +59079,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ], "type": { @@ -57663,7 +59099,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ] } @@ -57839,7 +59275,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 93, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L93" } ], "type": { @@ -57855,7 +59291,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 93, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L93" } ], "signatures": [ @@ -57870,7 +59306,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 93, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L93" } ], "type": { @@ -57921,7 +59357,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L78" } ], "type": { @@ -57947,7 +59383,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L86" } ], "type": { @@ -57974,7 +59410,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 92, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L92" } ], "type": { @@ -57996,7 +59432,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 91, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L91" } ], "type": { @@ -58225,7 +59661,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "type": { @@ -58251,7 +59687,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 95, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L95" } ], "type": { @@ -58285,12 +59721,12 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L79" } ], "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -58309,7 +59745,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L85" } ], "type": { @@ -58335,7 +59771,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 89, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L89" } ], "type": { @@ -58388,7 +59824,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 96, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L96" } ], "type": { @@ -58430,7 +59866,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L83" } ], "type": { @@ -58456,7 +59892,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L90" } ], "type": { @@ -58477,7 +59913,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L87" } ], "type": { @@ -58511,7 +59947,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 311, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L311" } ], "type": { @@ -58540,7 +59976,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 310, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L310" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L310" } ], "type": { @@ -58559,7 +59995,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 403, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L403" } ], "getSignature": { @@ -58581,7 +60017,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 403, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L403" } ], "type": { @@ -58606,7 +60042,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L515" } ], "signatures": [ @@ -58640,7 +60076,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L515" } ], "parameters": [ @@ -58679,7 +60115,7 @@ }, "type": { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" }, @@ -58688,7 +60124,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -58727,19 +60163,19 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L411" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L415" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 423, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L423" } ], "signatures": [ @@ -58754,7 +60190,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L411" } ], "typeParameters": [ @@ -58852,7 +60288,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L415" } ], "typeParameters": [ @@ -58952,7 +60388,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 529, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L529" } ], "signatures": [ @@ -58996,14 +60432,14 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 529, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L529" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -59023,7 +60459,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L566" } ], "signatures": [ @@ -59076,7 +60512,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L566" } ], "type": { @@ -59090,7 +60526,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -59113,7 +60549,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L549" } ], "signatures": [ @@ -59166,7 +60602,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L549" } ], "parameters": [ @@ -59186,7 +60622,7 @@ }, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -59202,7 +60638,7 @@ "typeArguments": [ { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -59224,7 +60660,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L470" } ], "signatures": [ @@ -59247,7 +60683,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L470" } ], "typeParameters": [ @@ -59473,7 +60909,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 481, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L481" } ], "type": { @@ -59523,7 +60959,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 480, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L480" } ], "type": { @@ -59568,7 +61004,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 479, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L479" } ], "type": { @@ -59588,7 +61024,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 478, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L478" } ] } @@ -59694,7 +61130,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L435" } ], "signatures": [ @@ -59717,7 +61153,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L435" } ], "typeParameters": [ @@ -59882,7 +61318,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 43, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L43" } ], "typeParameters": [ @@ -59962,7 +61398,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ], "type": { @@ -59982,7 +61418,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ] } @@ -60452,7 +61888,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ], "type": { @@ -60472,7 +61908,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ] } @@ -60553,7 +61989,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -60576,7 +62012,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -60596,7 +62032,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -60614,7 +62050,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -60654,7 +62090,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ], "type": { @@ -60674,7 +62110,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ] } @@ -60710,7 +62146,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ], "type": { @@ -60730,7 +62166,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ] } @@ -60753,7 +62189,7 @@ ] }, { - "id": 3397, + "id": 3419, "name": "WebSocketFactory", "variant": "declaration", "kind": 128, @@ -60768,7 +62204,7 @@ }, "children": [ { - "id": 3399, + "id": 3421, "name": "getWebSocketConstructor", "variant": "declaration", "kind": 2048, @@ -60784,7 +62220,7 @@ ], "signatures": [ { - "id": 3400, + "id": 3422, "name": "getWebSocketConstructor", "variant": "signature", "kind": 4096, @@ -60828,7 +62264,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3401, + "id": 3423, "name": "__type", "variant": "declaration", "kind": 65536, @@ -60842,7 +62278,7 @@ ], "signatures": [ { - "id": 3402, + "id": 3424, "name": "getWebSocketConstructor", "variant": "signature", "kind": 16384, @@ -60856,7 +62292,7 @@ ], "parameters": [ { - "id": 3403, + "id": 3425, "name": "url", "variant": "param", "kind": 32768, @@ -60881,7 +62317,7 @@ } }, { - "id": 3404, + "id": 3426, "name": "protocols", "variant": "param", "kind": 32768, @@ -60923,7 +62359,7 @@ ] }, { - "id": 3405, + "id": 3427, "name": "isWebSocketSupported", "variant": "declaration", "kind": 2048, @@ -60939,7 +62375,7 @@ ], "signatures": [ { - "id": 3406, + "id": 3428, "name": "isWebSocketSupported", "variant": "signature", "kind": 4096, @@ -60991,13 +62427,13 @@ "groups": [ { "title": "Methods", - "children": [3399, 3405] + "children": [3421, 3427] } ], "categories": [ { "title": "Realtime", - "children": [3399, 3405] + "children": [3421, 3427] } ], "sources": [ @@ -61009,14 +62445,14 @@ ] }, { - "id": 1748, + "id": 1750, "name": "AdminUserAttributes", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1750, + "id": 1752, "name": "app_metadata", "variant": "declaration", "kind": 1024, @@ -61050,7 +62486,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 443, + "line": 432, "character": 4 } ], @@ -61060,7 +62496,7 @@ } }, { - "id": 1753, + "id": 1755, "name": "ban_duration", "variant": "declaration", "kind": 1024, @@ -61078,7 +62514,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 466, + "line": 455, "character": 4 } ], @@ -61088,7 +62524,7 @@ } }, { - "id": 1761, + "id": 1763, "name": "current_password", "variant": "declaration", "kind": 1024, @@ -61107,7 +62543,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 396, + "line": 385, "character": 4 } ], @@ -61122,7 +62558,7 @@ } }, { - "id": 1758, + "id": 1760, "name": "email", "variant": "declaration", "kind": 1024, @@ -61141,7 +62577,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 400, + "line": 389, "character": 4 } ], @@ -61156,7 +62592,7 @@ } }, { - "id": 1751, + "id": 1753, "name": "email_confirm", "variant": "declaration", "kind": 1024, @@ -61174,7 +62610,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 449, + "line": 438, "character": 4 } ], @@ -61184,7 +62620,7 @@ } }, { - "id": 1756, + "id": 1758, "name": "id", "variant": "declaration", "kind": 1024, @@ -61218,7 +62654,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 488, + "line": 477, "character": 4 } ], @@ -61228,7 +62664,7 @@ } }, { - "id": 1757, + "id": 1759, "name": "nonce", "variant": "declaration", "kind": 1024, @@ -61247,7 +62683,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 414, + "line": 403, "character": 4 } ], @@ -61262,7 +62698,7 @@ } }, { - "id": 1759, + "id": 1761, "name": "password", "variant": "declaration", "kind": 1024, @@ -61281,7 +62717,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 408, + "line": 397, "character": 4 } ], @@ -61296,7 +62732,7 @@ } }, { - "id": 1755, + "id": 1757, "name": "password_hash", "variant": "declaration", "kind": 1024, @@ -61322,7 +62758,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 482, + "line": 471, "character": 4 } ], @@ -61332,7 +62768,7 @@ } }, { - "id": 1760, + "id": 1762, "name": "phone", "variant": "declaration", "kind": 1024, @@ -61351,7 +62787,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 404, + "line": 393, "character": 4 } ], @@ -61366,7 +62802,7 @@ } }, { - "id": 1752, + "id": 1754, "name": "phone_confirm", "variant": "declaration", "kind": 1024, @@ -61384,7 +62820,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 455, + "line": 444, "character": 4 } ], @@ -61394,7 +62830,7 @@ } }, { - "id": 1754, + "id": 1756, "name": "role", "variant": "declaration", "kind": 1024, @@ -61444,7 +62880,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 474, + "line": 463, "character": 4 } ], @@ -61454,7 +62890,7 @@ } }, { - "id": 1749, + "id": 1751, "name": "user_metadata", "variant": "declaration", "kind": 1024, @@ -61488,7 +62924,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 434, + "line": 423, "character": 4 } ], @@ -61502,14 +62938,14 @@ { "title": "Properties", "children": [ - 1750, 1753, 1761, 1758, 1751, 1756, 1757, 1759, 1755, 1760, 1752, 1754, 1749 + 1752, 1755, 1763, 1760, 1753, 1758, 1759, 1761, 1757, 1762, 1754, 1756, 1751 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 423, + "line": 412, "character": 17 } ], @@ -61523,7 +62959,7 @@ "typeArguments": [ { "type": "reference", - "target": 1741, + "target": 1743, "name": "UserAttributes", "package": "@supabase/auth-js" }, @@ -61538,7 +62974,7 @@ ] }, { - "id": 1705, + "id": 1707, "name": "AMREntry", "variant": "declaration", "kind": 256, @@ -61558,7 +62994,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel", - "target": 2077 + "target": 2079 }, { "kind": "text", @@ -61570,7 +63006,7 @@ }, "children": [ { - "id": 1706, + "id": 1708, "name": "method", "variant": "declaration", "kind": 1024, @@ -61586,19 +63022,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 293, + "line": 282, "character": 4 } ], "type": { "type": "reference", - "target": 1703, + "target": 1705, "name": "AMRMethod", "package": "@supabase/auth-js" } }, { - "id": 1707, + "id": 1709, "name": "timestamp", "variant": "declaration", "kind": 1024, @@ -61614,7 +63050,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 298, + "line": 287, "character": 4 } ], @@ -61627,19 +63063,19 @@ "groups": [ { "title": "Properties", - "children": [1706, 1707] + "children": [1708, 1709] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 291, + "line": 280, "character": 17 } ] }, { - "id": 2390, + "id": 2392, "name": "AuthOAuthServerApi", "variant": "declaration", "kind": 256, @@ -61654,7 +63090,7 @@ }, "children": [ { - "id": 2394, + "id": 2396, "name": "approveAuthorization", "variant": "declaration", "kind": 2048, @@ -61662,13 +63098,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2275, + "line": 2264, "character": 4 } ], "signatures": [ { - "id": 2395, + "id": 2397, "name": "approveAuthorization", "variant": "signature", "kind": 4096, @@ -61713,13 +63149,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2275, + "line": 2264, "character": 4 } ], "parameters": [ { - "id": 2396, + "id": 2398, "name": "authorizationId", "variant": "param", "kind": 32768, @@ -61738,7 +63174,7 @@ } }, { - "id": 2397, + "id": 2399, "name": "options", "variant": "param", "kind": 32768, @@ -61756,14 +63192,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2398, + "id": 2400, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2399, + "id": 2401, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -61781,7 +63217,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2276, + "line": 2265, "character": 8 } ], @@ -61794,13 +63230,13 @@ "groups": [ { "title": "Properties", - "children": [2399] + "children": [2401] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2275, + "line": 2264, "character": 60 } ] @@ -61817,7 +63253,7 @@ "typeArguments": [ { "type": "reference", - "target": 2381, + "target": 2383, "name": "AuthOAuthConsentResponse", "package": "@supabase/auth-js" } @@ -61829,7 +63265,7 @@ ] }, { - "id": 2400, + "id": 2402, "name": "denyAuthorization", "variant": "declaration", "kind": 2048, @@ -61837,13 +63273,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2293, + "line": 2282, "character": 4 } ], "signatures": [ { - "id": 2401, + "id": 2403, "name": "denyAuthorization", "variant": "signature", "kind": 4096, @@ -61888,13 +63324,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2293, + "line": 2282, "character": 4 } ], "parameters": [ { - "id": 2402, + "id": 2404, "name": "authorizationId", "variant": "param", "kind": 32768, @@ -61913,7 +63349,7 @@ } }, { - "id": 2403, + "id": 2405, "name": "options", "variant": "param", "kind": 32768, @@ -61931,14 +63367,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2404, + "id": 2406, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2405, + "id": 2407, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -61956,7 +63392,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2294, + "line": 2283, "character": 8 } ], @@ -61969,13 +63405,13 @@ "groups": [ { "title": "Properties", - "children": [2405] + "children": [2407] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2293, + "line": 2282, "character": 57 } ] @@ -61992,7 +63428,7 @@ "typeArguments": [ { "type": "reference", - "target": 2381, + "target": 2383, "name": "AuthOAuthConsentResponse", "package": "@supabase/auth-js" } @@ -62004,7 +63440,7 @@ ] }, { - "id": 2391, + "id": 2393, "name": "getAuthorizationDetails", "variant": "declaration", "kind": 2048, @@ -62012,13 +63448,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2259, + "line": 2248, "character": 4 } ], "signatures": [ { - "id": 2392, + "id": 2394, "name": "getAuthorizationDetails", "variant": "signature", "kind": 4096, @@ -62083,13 +63519,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2259, + "line": 2248, "character": 4 } ], "parameters": [ { - "id": 2393, + "id": 2395, "name": "authorizationId", "variant": "param", "kind": 32768, @@ -62117,7 +63553,7 @@ "typeArguments": [ { "type": "reference", - "target": 2380, + "target": 2382, "name": "AuthOAuthAuthorizationDetailsResponse", "package": "@supabase/auth-js" } @@ -62129,7 +63565,7 @@ ] }, { - "id": 2406, + "id": 2408, "name": "listGrants", "variant": "declaration", "kind": 2048, @@ -62137,13 +63573,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2305, + "line": 2294, "character": 4 } ], "signatures": [ { - "id": 2407, + "id": 2409, "name": "listGrants", "variant": "signature", "kind": 4096, @@ -62188,7 +63624,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2305, + "line": 2294, "character": 4 } ], @@ -62201,7 +63637,7 @@ "typeArguments": [ { "type": "reference", - "target": 2387, + "target": 2389, "name": "AuthOAuthGrantsResponse", "package": "@supabase/auth-js" } @@ -62213,7 +63649,7 @@ ] }, { - "id": 2408, + "id": 2410, "name": "revokeGrant", "variant": "declaration", "kind": 2048, @@ -62221,13 +63657,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2320, + "line": 2309, "character": 4 } ], "signatures": [ { - "id": 2409, + "id": 2411, "name": "revokeGrant", "variant": "signature", "kind": 4096, @@ -62272,13 +63708,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2320, + "line": 2309, "character": 4 } ], "parameters": [ { - "id": 2410, + "id": 2412, "name": "options", "variant": "param", "kind": 32768, @@ -62294,14 +63730,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2411, + "id": 2413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2412, + "id": 2414, "name": "clientId", "variant": "declaration", "kind": 1024, @@ -62317,7 +63753,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2321, + "line": 2310, "character": 8 } ], @@ -62330,13 +63766,13 @@ "groups": [ { "title": "Properties", - "children": [2412] + "children": [2414] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2320, + "line": 2309, "character": 25 } ] @@ -62353,7 +63789,7 @@ "typeArguments": [ { "type": "reference", - "target": 2388, + "target": 2390, "name": "AuthOAuthRevokeGrantResponse", "package": "@supabase/auth-js" } @@ -62368,25 +63804,25 @@ "groups": [ { "title": "Methods", - "children": [2394, 2400, 2391, 2406, 2408] + "children": [2396, 2402, 2393, 2408, 2410] } ], "categories": [ { "title": "Auth", - "children": [2394, 2400, 2391, 2406, 2408] + "children": [2396, 2402, 2393, 2408, 2410] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2234, + "line": 2223, "character": 17 } ] }, { - "id": 2490, + "id": 2492, "name": "AuthPasskeyApi", "variant": "declaration", "kind": 256, @@ -62409,7 +63845,7 @@ }, "children": [ { - "id": 2507, + "id": 2509, "name": "delete", "variant": "declaration", "kind": 2048, @@ -62417,13 +63853,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2475, + "line": 2464, "character": 4 } ], "signatures": [ { - "id": 2508, + "id": 2510, "name": "delete", "variant": "signature", "kind": 4096, @@ -62459,20 +63895,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2475, + "line": 2464, "character": 4 } ], "parameters": [ { - "id": 2509, + "id": 2511, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2470, + "target": 2472, "name": "PasskeyDeleteParams", "package": "@supabase/auth-js" } @@ -62487,7 +63923,7 @@ "typeArguments": [ { "type": "reference", - "target": 2482, + "target": 2484, "name": "AuthPasskeyDeleteResponse", "package": "@supabase/auth-js" } @@ -62499,7 +63935,7 @@ ] }, { - "id": 2502, + "id": 2504, "name": "list", "variant": "declaration", "kind": 2048, @@ -62507,13 +63943,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2461, + "line": 2450, "character": 4 } ], "signatures": [ { - "id": 2503, + "id": 2505, "name": "list", "variant": "signature", "kind": 4096, @@ -62549,7 +63985,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2461, + "line": 2450, "character": 4 } ], @@ -62562,7 +63998,7 @@ "typeArguments": [ { "type": "reference", - "target": 2480, + "target": 2482, "name": "AuthPasskeyListResponse", "package": "@supabase/auth-js" } @@ -62574,7 +64010,7 @@ ] }, { - "id": 2496, + "id": 2498, "name": "startAuthentication", "variant": "declaration", "kind": 2048, @@ -62582,13 +64018,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2446, + "line": 2435, "character": 4 } ], "signatures": [ { - "id": 2497, + "id": 2499, "name": "startAuthentication", "variant": "signature", "kind": 4096, @@ -62632,13 +64068,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2446, + "line": 2435, "character": 4 } ], "parameters": [ { - "id": 2498, + "id": 2500, "name": "params", "variant": "param", "kind": 32768, @@ -62647,7 +64083,7 @@ }, "type": { "type": "reference", - "target": 2457, + "target": 2459, "name": "StartPasskeyAuthenticationParams", "package": "@supabase/auth-js" } @@ -62662,7 +64098,7 @@ "typeArguments": [ { "type": "reference", - "target": 2475, + "target": 2477, "name": "AuthPasskeyAuthenticationOptionsResponse", "package": "@supabase/auth-js" } @@ -62674,7 +64110,7 @@ ] }, { - "id": 2491, + "id": 2493, "name": "startRegistration", "variant": "declaration", "kind": 2048, @@ -62682,13 +64118,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2428, + "line": 2417, "character": 4 } ], "signatures": [ { - "id": 2492, + "id": 2494, "name": "startRegistration", "variant": "signature", "kind": 4096, @@ -62732,7 +64168,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2428, + "line": 2417, "character": 4 } ], @@ -62745,7 +64181,7 @@ "typeArguments": [ { "type": "reference", - "target": 2473, + "target": 2475, "name": "AuthPasskeyRegistrationOptionsResponse", "package": "@supabase/auth-js" } @@ -62757,7 +64193,7 @@ ] }, { - "id": 2504, + "id": 2506, "name": "update", "variant": "declaration", "kind": 2048, @@ -62765,13 +64201,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2468, + "line": 2457, "character": 4 } ], "signatures": [ { - "id": 2505, + "id": 2507, "name": "update", "variant": "signature", "kind": 4096, @@ -62807,20 +64243,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2468, + "line": 2457, "character": 4 } ], "parameters": [ { - "id": 2506, + "id": 2508, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2466, + "target": 2468, "name": "PasskeyUpdateParams", "package": "@supabase/auth-js" } @@ -62835,7 +64271,7 @@ "typeArguments": [ { "type": "reference", - "target": 2481, + "target": 2483, "name": "AuthPasskeyUpdateResponse", "package": "@supabase/auth-js" } @@ -62847,7 +64283,7 @@ ] }, { - "id": 2499, + "id": 2501, "name": "verifyAuthentication", "variant": "declaration", "kind": 2048, @@ -62855,13 +64291,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2454, + "line": 2443, "character": 4 } ], "signatures": [ { - "id": 2500, + "id": 2502, "name": "verifyAuthentication", "variant": "signature", "kind": 4096, @@ -62897,20 +64333,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2454, + "line": 2443, "character": 4 } ], "parameters": [ { - "id": 2501, + "id": 2503, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2462, + "target": 2464, "name": "VerifyPasskeyAuthenticationParams", "package": "@supabase/auth-js" } @@ -62925,7 +64361,7 @@ "typeArguments": [ { "type": "reference", - "target": 2476, + "target": 2478, "name": "AuthPasskeyAuthenticationVerifyResponse", "package": "@supabase/auth-js" } @@ -62937,7 +64373,7 @@ ] }, { - "id": 2493, + "id": 2495, "name": "verifyRegistration", "variant": "declaration", "kind": 2048, @@ -62945,13 +64381,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2436, + "line": 2425, "character": 4 } ], "signatures": [ { - "id": 2494, + "id": 2496, "name": "verifyRegistration", "variant": "signature", "kind": 4096, @@ -62987,20 +64423,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2436, + "line": 2425, "character": 4 } ], "parameters": [ { - "id": 2495, + "id": 2497, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2453, + "target": 2455, "name": "VerifyPasskeyRegistrationParams", "package": "@supabase/auth-js" } @@ -63015,7 +64451,7 @@ "typeArguments": [ { "type": "reference", - "target": 2474, + "target": 2476, "name": "AuthPasskeyRegistrationVerifyResponse", "package": "@supabase/auth-js" } @@ -63030,19 +64466,19 @@ "groups": [ { "title": "Methods", - "children": [2507, 2502, 2496, 2491, 2504, 2499, 2493] + "children": [2509, 2504, 2498, 2493, 2506, 2501, 2495] } ], "categories": [ { "title": "Auth", - "children": [2507, 2502, 2496, 2491, 2504, 2499, 2493] + "children": [2509, 2504, 2498, 2493, 2506, 2501, 2495] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2418, + "line": 2407, "character": 17 } ] @@ -63071,7 +64507,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 258, + "line": 247, "character": 4 } ], @@ -63099,7 +64535,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 270, + "line": 259, "character": 4 } ], @@ -63125,7 +64561,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 266, + "line": 255, "character": 4 } ], @@ -63153,7 +64589,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 254, + "line": 243, "character": 4 } ], @@ -63190,7 +64626,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 249, + "line": 238, "character": 4 } ], @@ -63225,7 +64661,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 262, + "line": 251, "character": 4 } ], @@ -63243,7 +64679,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 271, + "line": 260, "character": 4 } ], @@ -63269,7 +64705,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 275, + "line": 264, "character": 4 } ], @@ -63290,7 +64726,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 245, + "line": 234, "character": 17 } ] @@ -63313,7 +64749,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 371, + "line": 360, "character": 4 } ], @@ -63331,13 +64767,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 362, + "line": 351, "character": 4 } ], "type": { "type": "reference", - "target": 1732, + "target": 1734, "name": "UserAppMetadata", "package": "@supabase/auth-js" } @@ -63351,7 +64787,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 364, + "line": 353, "character": 4 } ], @@ -63371,7 +64807,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 386, + "line": 375, "character": 4 } ], @@ -63391,7 +64827,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 365, + "line": 354, "character": 4 } ], @@ -63411,7 +64847,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 375, + "line": 364, "character": 4 } ], @@ -63429,7 +64865,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 374, + "line": 363, "character": 4 } ], @@ -63449,7 +64885,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 385, + "line": 374, "character": 4 } ], @@ -63469,7 +64905,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 372, + "line": 361, "character": 4 } ], @@ -63489,7 +64925,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 367, + "line": 356, "character": 4 } ], @@ -63509,7 +64945,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 376, + "line": 365, "character": 4 } ], @@ -63529,7 +64965,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 384, + "line": 373, "character": 4 } ], @@ -63540,7 +64976,7 @@ "types": [ { "type": "reference", - "target": 1721, + "target": 1723, "typeArguments": [ { "type": "union", @@ -63569,7 +65005,7 @@ }, { "type": "reference", - "target": 1721, + "target": 1723, "typeArguments": [ { "type": "union", @@ -63609,7 +65045,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 361, + "line": 350, "character": 4 } ], @@ -63629,7 +65065,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 381, + "line": 370, "character": 4 } ], @@ -63637,7 +65073,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1708, + "target": 1710, "name": "UserIdentity", "package": "@supabase/auth-js" } @@ -63654,7 +65090,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 370, + "line": 359, "character": 4 } ], @@ -63674,7 +65110,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 382, + "line": 371, "character": 4 } ], @@ -63694,7 +65130,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 383, + "line": 372, "character": 4 } ], @@ -63714,7 +65150,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 378, + "line": 367, "character": 4 } ], @@ -63734,7 +65170,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 368, + "line": 357, "character": 4 } ], @@ -63754,7 +65190,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 369, + "line": 358, "character": 4 } ], @@ -63774,7 +65210,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 373, + "line": 362, "character": 4 } ], @@ -63794,7 +65230,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 377, + "line": 366, "character": 4 } ], @@ -63814,7 +65250,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 366, + "line": 355, "character": 4 } ], @@ -63834,7 +65270,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 379, + "line": 368, "character": 4 } ], @@ -63854,7 +65290,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 380, + "line": 369, "character": 4 } ], @@ -63872,13 +65308,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 363, + "line": 352, "character": 4 } ], "type": { "type": "reference", - "target": 1737, + "target": 1739, "name": "UserMetadata", "package": "@supabase/auth-js" } @@ -63896,20 +65332,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 360, + "line": 349, "character": 17 } ] }, { - "id": 1959, + "id": 1961, "name": "GenerateLinkOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1960, + "id": 1962, "name": "data", "variant": "declaration", "kind": 1024, @@ -63943,7 +65379,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 787, + "line": 776, "character": 4 } ], @@ -63953,7 +65389,7 @@ } }, { - "id": 1961, + "id": 1963, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -63971,7 +65407,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 789, + "line": 778, "character": 4 } ], @@ -63984,19 +65420,19 @@ "groups": [ { "title": "Properties", - "children": [1960, 1961] + "children": [1962, 1963] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 781, + "line": 770, "character": 17 } ] }, { - "id": 2341, + "id": 2343, "name": "GoTrueAdminCustomProvidersApi", "variant": "declaration", "kind": 256, @@ -64011,7 +65447,7 @@ }, "children": [ { - "id": 2345, + "id": 2347, "name": "createProvider", "variant": "declaration", "kind": 2048, @@ -64019,13 +65455,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2082, + "line": 2071, "character": 4 } ], "signatures": [ { - "id": 2346, + "id": 2348, "name": "createProvider", "variant": "signature", "kind": 4096, @@ -64085,20 +65521,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2082, + "line": 2071, "character": 4 } ], "parameters": [ { - "id": 2347, + "id": 2349, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2286, + "target": 2288, "name": "CreateCustomProviderParams", "package": "@supabase/auth-js" } @@ -64113,7 +65549,7 @@ "typeArguments": [ { "type": "reference", - "target": 2329, + "target": 2331, "name": "CustomProviderResponse", "package": "@supabase/auth-js" } @@ -64125,7 +65561,7 @@ ] }, { - "id": 2355, + "id": 2357, "name": "deleteProvider", "variant": "declaration", "kind": 2048, @@ -64133,13 +65569,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2114, + "line": 2103, "character": 4 } ], "signatures": [ { - "id": 2356, + "id": 2358, "name": "deleteProvider", "variant": "signature", "kind": 4096, @@ -64183,13 +65619,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2114, + "line": 2103, "character": 4 } ], "parameters": [ { - "id": 2357, + "id": 2359, "name": "identifier", "variant": "param", "kind": 32768, @@ -64210,14 +65646,14 @@ { "type": "reflection", "declaration": { - "id": 2358, + "id": 2360, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2359, + "id": 2361, "name": "data", "variant": "declaration", "kind": 1024, @@ -64225,7 +65661,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2115, + "line": 2104, "character": 8 } ], @@ -64235,7 +65671,7 @@ } }, { - "id": 2360, + "id": 2362, "name": "error", "variant": "declaration", "kind": 1024, @@ -64243,7 +65679,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2116, + "line": 2105, "character": 8 } ], @@ -64256,7 +65692,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -64267,13 +65703,13 @@ "groups": [ { "title": "Properties", - "children": [2359, 2360] + "children": [2361, 2362] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2114, + "line": 2103, "character": 48 } ] @@ -64287,7 +65723,7 @@ ] }, { - "id": 2348, + "id": 2350, "name": "getProvider", "variant": "declaration", "kind": 2048, @@ -64295,13 +65731,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2091, + "line": 2080, "character": 4 } ], "signatures": [ { - "id": 2349, + "id": 2351, "name": "getProvider", "variant": "signature", "kind": 4096, @@ -64345,13 +65781,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2091, + "line": 2080, "character": 4 } ], "parameters": [ { - "id": 2350, + "id": 2352, "name": "identifier", "variant": "param", "kind": 32768, @@ -64371,7 +65807,7 @@ "typeArguments": [ { "type": "reference", - "target": 2329, + "target": 2331, "name": "CustomProviderResponse", "package": "@supabase/auth-js" } @@ -64383,7 +65819,7 @@ ] }, { - "id": 2342, + "id": 2344, "name": "listProviders", "variant": "declaration", "kind": 2048, @@ -64391,13 +65827,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2067, + "line": 2056, "character": 4 } ], "signatures": [ { - "id": 2343, + "id": 2345, "name": "listProviders", "variant": "signature", "kind": 4096, @@ -64441,13 +65877,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2067, + "line": 2056, "character": 4 } ], "parameters": [ { - "id": 2344, + "id": 2346, "name": "params", "variant": "param", "kind": 32768, @@ -64456,7 +65892,7 @@ }, "type": { "type": "reference", - "target": 2326, + "target": 2328, "name": "ListCustomProvidersParams", "package": "@supabase/auth-js" } @@ -64471,7 +65907,7 @@ "typeArguments": [ { "type": "reference", - "target": 2330, + "target": 2332, "name": "CustomProviderListResponse", "package": "@supabase/auth-js" } @@ -64483,7 +65919,7 @@ ] }, { - "id": 2351, + "id": 2353, "name": "updateProvider", "variant": "declaration", "kind": 2048, @@ -64491,13 +65927,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2105, + "line": 2094, "character": 4 } ], "signatures": [ { - "id": 2352, + "id": 2354, "name": "updateProvider", "variant": "signature", "kind": 4096, @@ -64565,13 +66001,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2105, + "line": 2094, "character": 4 } ], "parameters": [ { - "id": 2353, + "id": 2355, "name": "identifier", "variant": "param", "kind": 32768, @@ -64582,14 +66018,14 @@ } }, { - "id": 2354, + "id": 2356, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2307, + "target": 2309, "name": "UpdateCustomProviderParams", "package": "@supabase/auth-js" } @@ -64604,7 +66040,7 @@ "typeArguments": [ { "type": "reference", - "target": 2329, + "target": 2331, "name": "CustomProviderResponse", "package": "@supabase/auth-js" } @@ -64619,25 +66055,25 @@ "groups": [ { "title": "Methods", - "children": [2345, 2355, 2348, 2342, 2351] + "children": [2347, 2357, 2350, 2344, 2353] } ], "categories": [ { "title": "Auth", - "children": [2345, 2355, 2348, 2342, 2351] + "children": [2347, 2357, 2350, 2344, 2353] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2058, + "line": 2047, "character": 17 } ] }, { - "id": 2094, + "id": 2096, "name": "GoTrueAdminMFAApi", "variant": "declaration", "kind": 256, @@ -64658,7 +66094,7 @@ }, "children": [ { - "id": 2098, + "id": 2100, "name": "deleteFactor", "variant": "declaration", "kind": 2048, @@ -64666,13 +66102,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1522, + "line": 1511, "character": 4 } ], "signatures": [ { - "id": 2099, + "id": 2101, "name": "deleteFactor", "variant": "signature", "kind": 4096, @@ -64692,7 +66128,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#unenroll", - "target": 2069 + "target": 2071 } ] }, @@ -64746,20 +66182,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1522, + "line": 1511, "character": 4 } ], "parameters": [ { - "id": 2100, + "id": 2102, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2084, + "target": 2086, "name": "AuthMFAAdminDeleteFactorParams", "package": "@supabase/auth-js" } @@ -64774,7 +66210,7 @@ "typeArguments": [ { "type": "reference", - "target": 2081, + "target": 2083, "name": "AuthMFAAdminDeleteFactorResponse", "package": "@supabase/auth-js" } @@ -64786,7 +66222,7 @@ ] }, { - "id": 2095, + "id": 2097, "name": "listFactors", "variant": "declaration", "kind": 2048, @@ -64794,13 +66230,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1492, + "line": 1481, "character": 4 } ], "signatures": [ { - "id": 2096, + "id": 2098, "name": "listFactors", "variant": "signature", "kind": 4096, @@ -64859,20 +66295,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1492, + "line": 1481, "character": 4 } ], "parameters": [ { - "id": 2097, + "id": 2099, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2091, + "target": 2093, "name": "AuthMFAAdminListFactorsParams", "package": "@supabase/auth-js" } @@ -64887,7 +66323,7 @@ "typeArguments": [ { "type": "reference", - "target": 2088, + "target": 2090, "name": "AuthMFAAdminListFactorsResponse", "package": "@supabase/auth-js" } @@ -64902,25 +66338,25 @@ "groups": [ { "title": "Methods", - "children": [2098, 2095] + "children": [2100, 2097] } ], "categories": [ { "title": "Auth", - "children": [2098, 2095] + "children": [2100, 2097] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1460, + "line": 1449, "character": 17 } ] }, { - "id": 2226, + "id": 2228, "name": "GoTrueAdminOAuthApi", "variant": "declaration", "kind": 256, @@ -64935,7 +66371,7 @@ }, "children": [ { - "id": 2230, + "id": 2232, "name": "createClient", "variant": "declaration", "kind": 2048, @@ -64943,13 +66379,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1821, + "line": 1810, "character": 4 } ], "signatures": [ { - "id": 2231, + "id": 2233, "name": "createClient", "variant": "signature", "kind": 4096, @@ -64993,20 +66429,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1821, + "line": 1810, "character": 4 } ], "parameters": [ { - "id": 2232, + "id": 2234, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2196, + "target": 2198, "name": "CreateOAuthClientParams", "package": "@supabase/auth-js" } @@ -65021,7 +66457,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65033,7 +66469,7 @@ ] }, { - "id": 2240, + "id": 2242, "name": "deleteClient", "variant": "declaration", "kind": 2048, @@ -65041,13 +66477,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1851, + "line": 1840, "character": 4 } ], "signatures": [ { - "id": 2241, + "id": 2243, "name": "deleteClient", "variant": "signature", "kind": 4096, @@ -65091,13 +66527,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1851, + "line": 1840, "character": 4 } ], "parameters": [ { - "id": 2242, + "id": 2244, "name": "clientId", "variant": "param", "kind": 32768, @@ -65118,14 +66554,14 @@ { "type": "reflection", "declaration": { - "id": 2243, + "id": 2245, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2244, + "id": 2246, "name": "data", "variant": "declaration", "kind": 1024, @@ -65133,7 +66569,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1852, + "line": 1841, "character": 8 } ], @@ -65143,7 +66579,7 @@ } }, { - "id": 2245, + "id": 2247, "name": "error", "variant": "declaration", "kind": 1024, @@ -65151,7 +66587,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1853, + "line": 1842, "character": 8 } ], @@ -65164,7 +66600,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -65175,13 +66611,13 @@ "groups": [ { "title": "Properties", - "children": [2244, 2245] + "children": [2246, 2247] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1851, + "line": 1840, "character": 44 } ] @@ -65195,7 +66631,7 @@ ] }, { - "id": 2233, + "id": 2235, "name": "getClient", "variant": "declaration", "kind": 2048, @@ -65203,13 +66639,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1831, + "line": 1820, "character": 4 } ], "signatures": [ { - "id": 2234, + "id": 2236, "name": "getClient", "variant": "signature", "kind": 4096, @@ -65253,13 +66689,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1831, + "line": 1820, "character": 4 } ], "parameters": [ { - "id": 2235, + "id": 2237, "name": "clientId", "variant": "param", "kind": 32768, @@ -65279,7 +66715,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65291,7 +66727,7 @@ ] }, { - "id": 2227, + "id": 2229, "name": "listClients", "variant": "declaration", "kind": 2048, @@ -65299,13 +66735,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1811, + "line": 1800, "character": 4 } ], "signatures": [ { - "id": 2228, + "id": 2230, "name": "listClients", "variant": "signature", "kind": 4096, @@ -65349,13 +66785,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1811, + "line": 1800, "character": 4 } ], "parameters": [ { - "id": 2229, + "id": 2231, "name": "params", "variant": "param", "kind": 32768, @@ -65364,7 +66800,7 @@ }, "type": { "type": "reference", - "target": 2115, + "target": 2117, "name": "PageParams", "package": "@supabase/auth-js" } @@ -65379,7 +66815,7 @@ "typeArguments": [ { "type": "reference", - "target": 2214, + "target": 2216, "name": "OAuthClientListResponse", "package": "@supabase/auth-js" } @@ -65391,7 +66827,7 @@ ] }, { - "id": 2246, + "id": 2248, "name": "regenerateClientSecret", "variant": "declaration", "kind": 2048, @@ -65399,13 +66835,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1864, + "line": 1853, "character": 4 } ], "signatures": [ { - "id": 2247, + "id": 2249, "name": "regenerateClientSecret", "variant": "signature", "kind": 4096, @@ -65449,13 +66885,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1864, + "line": 1853, "character": 4 } ], "parameters": [ { - "id": 2248, + "id": 2250, "name": "clientId", "variant": "param", "kind": 32768, @@ -65475,7 +66911,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65487,7 +66923,7 @@ ] }, { - "id": 2236, + "id": 2238, "name": "updateClient", "variant": "declaration", "kind": 2048, @@ -65495,13 +66931,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1841, + "line": 1830, "character": 4 } ], "signatures": [ { - "id": 2237, + "id": 2239, "name": "updateClient", "variant": "signature", "kind": 4096, @@ -65545,13 +66981,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1841, + "line": 1830, "character": 4 } ], "parameters": [ { - "id": 2238, + "id": 2240, "name": "clientId", "variant": "param", "kind": 32768, @@ -65562,14 +66998,14 @@ } }, { - "id": 2239, + "id": 2241, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2205, + "target": 2207, "name": "UpdateOAuthClientParams", "package": "@supabase/auth-js" } @@ -65584,7 +67020,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65599,32 +67035,32 @@ "groups": [ { "title": "Methods", - "children": [2230, 2240, 2233, 2227, 2246, 2236] + "children": [2232, 2242, 2235, 2229, 2248, 2238] } ], "categories": [ { "title": "Auth", - "children": [2230, 2240, 2233, 2227, 2246, 2236] + "children": [2232, 2242, 2235, 2229, 2248, 2238] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1801, + "line": 1790, "character": 17 } ] }, { - "id": 2510, + "id": 2512, "name": "GoTrueAdminPasskeyApi", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2514, + "id": 2516, "name": "deletePasskey", "variant": "declaration", "kind": 2048, @@ -65632,13 +67068,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2495, + "line": 2484, "character": 4 } ], "signatures": [ { - "id": 2515, + "id": 2517, "name": "deletePasskey", "variant": "signature", "kind": 4096, @@ -65682,20 +67118,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2495, + "line": 2484, "character": 4 } ], "parameters": [ { - "id": 2516, + "id": 2518, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2486, + "target": 2488, "name": "AuthPasskeyAdminDeleteParams", "package": "@supabase/auth-js" } @@ -65710,7 +67146,7 @@ "typeArguments": [ { "type": "reference", - "target": 2482, + "target": 2484, "name": "AuthPasskeyDeleteResponse", "package": "@supabase/auth-js" } @@ -65722,7 +67158,7 @@ ] }, { - "id": 2511, + "id": 2513, "name": "listPasskeys", "variant": "declaration", "kind": 2048, @@ -65730,13 +67166,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2486, + "line": 2475, "character": 4 } ], "signatures": [ { - "id": 2512, + "id": 2514, "name": "listPasskeys", "variant": "signature", "kind": 4096, @@ -65780,20 +67216,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2486, + "line": 2475, "character": 4 } ], "parameters": [ { - "id": 2513, + "id": 2515, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2483, + "target": 2485, "name": "AuthPasskeyAdminListParams", "package": "@supabase/auth-js" } @@ -65808,7 +67244,7 @@ "typeArguments": [ { "type": "reference", - "target": 2480, + "target": 2482, "name": "AuthPasskeyListResponse", "package": "@supabase/auth-js" } @@ -65823,25 +67259,25 @@ "groups": [ { "title": "Methods", - "children": [2514, 2511] + "children": [2516, 2513] } ], "categories": [ { "title": "Auth", - "children": [2514, 2511] + "children": [2516, 2513] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2477, + "line": 2466, "character": 17 } ] }, { - "id": 2023, + "id": 2025, "name": "GoTrueMFAApi", "variant": "declaration", "kind": 256, @@ -65856,7 +67292,7 @@ }, "children": [ { - "id": 2080, + "id": 2082, "name": "webauthn", "variant": "declaration", "kind": 1024, @@ -65864,7 +67300,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1423, + "line": 1412, "character": 4 } ], @@ -65879,7 +67315,7 @@ } }, { - "id": 2033, + "id": 2035, "name": "challenge", "variant": "declaration", "kind": 2048, @@ -65887,28 +67323,28 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1165, + "line": 1154, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1166, + "line": 1155, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1167, + "line": 1156, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1168, + "line": 1157, "character": 4 } ], "signatures": [ { - "id": 2034, + "id": 2036, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66038,13 +67474,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1165, + "line": 1154, "character": 4 } ], "parameters": [ { - "id": 2035, + "id": 2037, "name": "params", "variant": "param", "kind": 32768, @@ -66073,14 +67509,14 @@ { "type": "reflection", "declaration": { - "id": 2036, + "id": 2038, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2037, + "id": 2039, "name": "data", "variant": "declaration", "kind": 1024, @@ -66088,7 +67524,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -66098,7 +67534,7 @@ } }, { - "id": 2038, + "id": 2040, "name": "error", "variant": "declaration", "kind": 1024, @@ -66106,13 +67542,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -66121,13 +67557,13 @@ "groups": [ { "title": "Properties", - "children": [2037, 2038] + "children": [2039, 2040] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66136,14 +67572,14 @@ { "type": "reflection", "declaration": { - "id": 2039, + "id": 2041, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2040, + "id": 2042, "name": "data", "variant": "declaration", "kind": 1024, @@ -66151,7 +67587,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], @@ -66166,7 +67602,7 @@ } }, { - "id": 2041, + "id": 2043, "name": "error", "variant": "declaration", "kind": 1024, @@ -66174,7 +67610,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -66187,13 +67623,13 @@ "groups": [ { "title": "Properties", - "children": [2040, 2041] + "children": [2042, 2043] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66207,7 +67643,7 @@ } }, { - "id": 2042, + "id": 2044, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66215,20 +67651,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1166, + "line": 1155, "character": 4 } ], "parameters": [ { - "id": 2043, + "id": 2045, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1990, + "target": 1992, "name": "MFAChallengePhoneParams", "package": "@supabase/auth-js" } @@ -66247,14 +67683,14 @@ { "type": "reflection", "declaration": { - "id": 2044, + "id": 2046, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2045, + "id": 2047, "name": "data", "variant": "declaration", "kind": 1024, @@ -66262,7 +67698,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -66272,7 +67708,7 @@ } }, { - "id": 2046, + "id": 2048, "name": "error", "variant": "declaration", "kind": 1024, @@ -66280,13 +67716,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -66295,13 +67731,13 @@ "groups": [ { "title": "Properties", - "children": [2045, 2046] + "children": [2047, 2048] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66310,14 +67746,14 @@ { "type": "reflection", "declaration": { - "id": 2047, + "id": 2049, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2048, + "id": 2050, "name": "data", "variant": "declaration", "kind": 1024, @@ -66325,7 +67761,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], @@ -66340,7 +67776,7 @@ } }, { - "id": 2049, + "id": 2051, "name": "error", "variant": "declaration", "kind": 1024, @@ -66348,7 +67784,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -66361,13 +67797,13 @@ "groups": [ { "title": "Properties", - "children": [2048, 2049] + "children": [2050, 2051] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66381,7 +67817,7 @@ } }, { - "id": 2050, + "id": 2052, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66389,20 +67825,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1167, + "line": 1156, "character": 4 } ], "parameters": [ { - "id": 2051, + "id": 2053, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1991, + "target": 1993, "name": "MFAChallengeWebauthnParams", "package": "@supabase/auth-js" } @@ -66421,14 +67857,14 @@ { "type": "reflection", "declaration": { - "id": 2052, + "id": 2054, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2053, + "id": 2055, "name": "data", "variant": "declaration", "kind": 1024, @@ -66436,7 +67872,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -66446,7 +67882,7 @@ } }, { - "id": 2054, + "id": 2056, "name": "error", "variant": "declaration", "kind": 1024, @@ -66454,13 +67890,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -66469,13 +67905,13 @@ "groups": [ { "title": "Properties", - "children": [2053, 2054] + "children": [2055, 2056] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66484,14 +67920,14 @@ { "type": "reflection", "declaration": { - "id": 2055, + "id": 2057, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2056, + "id": 2058, "name": "data", "variant": "declaration", "kind": 1024, @@ -66499,7 +67935,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], @@ -66534,7 +67970,7 @@ } }, { - "id": 2057, + "id": 2059, "name": "error", "variant": "declaration", "kind": 1024, @@ -66542,7 +67978,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -66555,13 +67991,13 @@ "groups": [ { "title": "Properties", - "children": [2056, 2057] + "children": [2058, 2059] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66575,7 +68011,7 @@ } }, { - "id": 2058, + "id": 2060, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66583,20 +68019,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1168, + "line": 1157, "character": 4 } ], "parameters": [ { - "id": 2059, + "id": 2061, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1992, + "target": 1994, "name": "MFAChallengeParams", "package": "@supabase/auth-js" } @@ -66611,7 +68047,7 @@ "typeArguments": [ { "type": "reference", - "target": 2011, + "target": 2013, "name": "AuthMFAChallengeResponse", "package": "@supabase/auth-js" } @@ -66623,7 +68059,7 @@ ] }, { - "id": 2072, + "id": 2074, "name": "challengeAndVerify", "variant": "declaration", "kind": 2048, @@ -66631,13 +68067,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1357, + "line": 1346, "character": 4 } ], "signatures": [ { - "id": 2073, + "id": 2075, "name": "challengeAndVerify", "variant": "signature", "kind": 4096, @@ -66729,13 +68165,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1357, + "line": 1346, "character": 4 } ], "parameters": [ { - "id": 2074, + "id": 2076, "name": "params", "variant": "param", "kind": 32768, @@ -66760,7 +68196,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -66772,7 +68208,7 @@ ] }, { - "id": 2024, + "id": 2026, "name": "enroll", "variant": "declaration", "kind": 2048, @@ -66780,28 +68216,28 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1092, + "line": 1081, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1093, + "line": 1082, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1094, + "line": 1083, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1095, + "line": 1084, "character": 4 } ], "signatures": [ { - "id": 2025, + "id": 2027, "name": "enroll", "variant": "signature", "kind": 4096, @@ -66996,20 +68432,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1092, + "line": 1081, "character": 4 } ], "parameters": [ { - "id": 2026, + "id": 2028, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2122, + "target": 2124, "name": "MFAEnrollTOTPParams", "package": "@supabase/auth-js" } @@ -67024,7 +68460,7 @@ "typeArguments": [ { "type": "reference", - "target": 2125, + "target": 2127, "name": "AuthMFAEnrollTOTPResponse", "package": "@supabase/auth-js" } @@ -67034,7 +68470,7 @@ } }, { - "id": 2027, + "id": 2029, "name": "enroll", "variant": "signature", "kind": 4096, @@ -67042,20 +68478,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1093, + "line": 1082, "character": 4 } ], "parameters": [ { - "id": 2028, + "id": 2030, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2123, + "target": 2125, "name": "MFAEnrollPhoneParams", "package": "@supabase/auth-js" } @@ -67070,7 +68506,7 @@ "typeArguments": [ { "type": "reference", - "target": 2126, + "target": 2128, "name": "AuthMFAEnrollPhoneResponse", "package": "@supabase/auth-js" } @@ -67080,7 +68516,7 @@ } }, { - "id": 2029, + "id": 2031, "name": "enroll", "variant": "signature", "kind": 4096, @@ -67088,13 +68524,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1094, + "line": 1083, "character": 4 } ], "parameters": [ { - "id": 2030, + "id": 2032, "name": "params", "variant": "param", "kind": 32768, @@ -67119,7 +68555,7 @@ "typeArguments": [ { "type": "reference", - "target": 2127, + "target": 2129, "name": "AuthMFAEnrollWebauthnResponse", "package": "@supabase/auth-js" } @@ -67129,7 +68565,7 @@ } }, { - "id": 2031, + "id": 2033, "name": "enroll", "variant": "signature", "kind": 4096, @@ -67137,20 +68573,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1095, + "line": 1084, "character": 4 } ], "parameters": [ { - "id": 2032, + "id": 2034, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1975, + "target": 1977, "name": "MFAEnrollParams", "package": "@supabase/auth-js" } @@ -67165,7 +68601,7 @@ "typeArguments": [ { "type": "reference", - "target": 2002, + "target": 2004, "name": "AuthMFAEnrollResponse", "package": "@supabase/auth-js" } @@ -67177,7 +68613,7 @@ ] }, { - "id": 2077, + "id": 2079, "name": "getAuthenticatorAssuranceLevel", "variant": "declaration", "kind": 2048, @@ -67185,13 +68621,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1422, + "line": 1411, "character": 4 } ], "signatures": [ { - "id": 2078, + "id": 2080, "name": "getAuthenticatorAssuranceLevel", "variant": "signature", "kind": 4096, @@ -67341,13 +68777,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1422, + "line": 1411, "character": 4 } ], "parameters": [ { - "id": 2079, + "id": 2081, "name": "jwt", "variant": "param", "kind": 32768, @@ -67377,7 +68813,7 @@ "typeArguments": [ { "type": "reference", - "target": 2018, + "target": 2020, "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse", "package": "@supabase/auth-js" } @@ -67389,7 +68825,7 @@ ] }, { - "id": 2075, + "id": 2077, "name": "listFactors", "variant": "declaration", "kind": 2048, @@ -67397,13 +68833,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1369, + "line": 1358, "character": 4 } ], "signatures": [ { - "id": 2076, + "id": 2078, "name": "listFactors", "variant": "signature", "kind": 4096, @@ -67427,7 +68863,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#enroll", - "target": 2024 + "target": 2026 }, { "kind": "text", @@ -67441,7 +68877,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel", - "target": 2077 + "target": 2079 }, { "kind": "text", @@ -67486,7 +68922,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1369, + "line": 1358, "character": 4 } ], @@ -67499,7 +68935,7 @@ "typeArguments": [ { "type": "reference", - "target": 2012, + "target": 2014, "typeArguments": [ { "type": "typeOperator", @@ -67534,7 +68970,7 @@ ] }, { - "id": 2069, + "id": 2071, "name": "unenroll", "variant": "declaration", "kind": 2048, @@ -67542,13 +68978,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1276, + "line": 1265, "character": 4 } ], "signatures": [ { - "id": 2070, + "id": 2072, "name": "unenroll", "variant": "signature", "kind": 4096, @@ -67623,20 +69059,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1276, + "line": 1265, "character": 4 } ], "parameters": [ { - "id": 2071, + "id": 2073, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1976, + "target": 1978, "name": "MFAUnenrollParams", "package": "@supabase/auth-js" } @@ -67651,7 +69087,7 @@ "typeArguments": [ { "type": "reference", - "target": 2003, + "target": 2005, "name": "AuthMFAUnenrollResponse", "package": "@supabase/auth-js" } @@ -67663,7 +69099,7 @@ ] }, { - "id": 2060, + "id": 2062, "name": "verify", "variant": "declaration", "kind": 2048, @@ -67671,28 +69107,28 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1248, + "line": 1237, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1249, + "line": 1238, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1250, + "line": 1239, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1251, + "line": 1240, "character": 4 } ], "signatures": [ { - "id": 2061, + "id": 2063, "name": "verify", "variant": "signature", "kind": 4096, @@ -67760,20 +69196,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1248, + "line": 1237, "character": 4 } ], "parameters": [ { - "id": 2062, + "id": 2064, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1979, + "target": 1981, "name": "MFAVerifyTOTPParams", "package": "@supabase/auth-js" } @@ -67788,7 +69224,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67798,7 +69234,7 @@ } }, { - "id": 2063, + "id": 2065, "name": "verify", "variant": "signature", "kind": 4096, @@ -67806,20 +69242,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1249, + "line": 1238, "character": 4 } ], "parameters": [ { - "id": 2064, + "id": 2066, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1980, + "target": 1982, "name": "MFAVerifyPhoneParams", "package": "@supabase/auth-js" } @@ -67834,7 +69270,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67844,7 +69280,7 @@ } }, { - "id": 2065, + "id": 2067, "name": "verify", "variant": "signature", "kind": 4096, @@ -67852,20 +69288,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1250, + "line": 1239, "character": 4 } ], "parameters": [ { - "id": 2066, + "id": 2068, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1985, + "target": 1987, "name": "MFAVerifyWebauthnParams", "package": "@supabase/auth-js" } @@ -67880,7 +69316,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67890,7 +69326,7 @@ } }, { - "id": 2067, + "id": 2069, "name": "verify", "variant": "signature", "kind": 4096, @@ -67898,20 +69334,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1251, + "line": 1240, "character": 4 } ], "parameters": [ { - "id": 2068, + "id": 2070, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1987, + "target": 1989, "name": "MFAVerifyParams", "package": "@supabase/auth-js" } @@ -67926,7 +69362,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67941,40 +69377,40 @@ "groups": [ { "title": "Properties", - "children": [2080] + "children": [2082] }, { "title": "Methods", - "children": [2033, 2072, 2024, 2077, 2075, 2069, 2060] + "children": [2035, 2074, 2026, 2079, 2077, 2071, 2062] } ], "categories": [ { "title": "Auth", - "children": [2033, 2072, 2024, 2077, 2075, 2069, 2060] + "children": [2035, 2074, 2026, 2079, 2077, 2071, 2062] }, { "title": "Other", - "children": [2080] + "children": [2082] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1010, + "line": 999, "character": 17 } ] }, { - "id": 2164, + "id": 2166, "name": "JWK", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2168, + "id": 2170, "name": "alg", "variant": "declaration", "kind": 1024, @@ -67984,7 +69420,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1672, + "line": 1661, "character": 4 } ], @@ -67994,7 +69430,7 @@ } }, { - "id": 2167, + "id": 2169, "name": "key_ops", "variant": "declaration", "kind": 1024, @@ -68002,7 +69438,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1671, + "line": 1660, "character": 4 } ], @@ -68015,7 +69451,7 @@ } }, { - "id": 2169, + "id": 2171, "name": "kid", "variant": "declaration", "kind": 1024, @@ -68025,7 +69461,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1673, + "line": 1662, "character": 4 } ], @@ -68035,7 +69471,7 @@ } }, { - "id": 2165, + "id": 2167, "name": "kty", "variant": "declaration", "kind": 1024, @@ -68043,7 +69479,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1670, + "line": 1659, "character": 4 } ], @@ -68060,7 +69496,7 @@ { "type": "reflection", "declaration": { - "id": 2166, + "id": 2168, "name": "__type", "variant": "declaration", "kind": 65536, @@ -68088,19 +69524,19 @@ "groups": [ { "title": "Properties", - "children": [2168, 2167, 2169, 2165] + "children": [2170, 2169, 2171, 2167] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1669, + "line": 1658, "character": 17 } ], "indexSignatures": [ { - "id": 2170, + "id": 2172, "name": "__index", "variant": "signature", "kind": 8192, @@ -68108,13 +69544,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1674, + "line": 1663, "character": 4 } ], "parameters": [ { - "id": 2171, + "id": 2173, "name": "key", "variant": "param", "kind": 32768, @@ -68133,7 +69569,7 @@ ] }, { - "id": 2144, + "id": 2146, "name": "JwtPayload", "variant": "declaration", "kind": 256, @@ -68159,7 +69595,7 @@ }, "children": [ { - "id": 2160, + "id": 2162, "name": "aal", "variant": "declaration", "kind": 1024, @@ -68169,13 +69605,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1640, + "line": 1629, "character": 4 } ], "type": { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" }, @@ -68186,7 +69622,7 @@ } }, { - "id": 2152, + "id": 2154, "name": "amr", "variant": "declaration", "kind": 1024, @@ -68204,7 +69640,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1665, + "line": 1654, "character": 4 } ], @@ -68222,7 +69658,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1705, + "target": 1707, "name": "AMREntry", "package": "@supabase/auth-js" } @@ -68231,7 +69667,7 @@ } }, { - "id": 2150, + "id": 2152, "name": "app_metadata", "variant": "declaration", "kind": 1024, @@ -68241,19 +69677,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1657, + "line": 1646, "character": 4 } ], "type": { "type": "reference", - "target": 1732, + "target": 1734, "name": "UserAppMetadata", "package": "@supabase/auth-js" } }, { - "id": 2156, + "id": 2158, "name": "aud", "variant": "declaration", "kind": 1024, @@ -68263,7 +69699,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1636, + "line": 1625, "character": 4 } ], @@ -68290,7 +69726,7 @@ } }, { - "id": 2145, + "id": 2147, "name": "email", "variant": "declaration", "kind": 1024, @@ -68300,7 +69736,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1652, + "line": 1641, "character": 4 } ], @@ -68310,7 +69746,7 @@ } }, { - "id": 2157, + "id": 2159, "name": "exp", "variant": "declaration", "kind": 1024, @@ -68320,7 +69756,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1637, + "line": 1626, "character": 4 } ], @@ -68335,7 +69771,7 @@ } }, { - "id": 2158, + "id": 2160, "name": "iat", "variant": "declaration", "kind": 1024, @@ -68345,7 +69781,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1638, + "line": 1627, "character": 4 } ], @@ -68360,7 +69796,7 @@ } }, { - "id": 2147, + "id": 2149, "name": "is_anonymous", "variant": "declaration", "kind": 1024, @@ -68370,7 +69806,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1654, + "line": 1643, "character": 4 } ], @@ -68380,7 +69816,7 @@ } }, { - "id": 2154, + "id": 2156, "name": "iss", "variant": "declaration", "kind": 1024, @@ -68390,7 +69826,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1634, + "line": 1623, "character": 4 } ], @@ -68405,7 +69841,7 @@ } }, { - "id": 2148, + "id": 2150, "name": "jti", "variant": "declaration", "kind": 1024, @@ -68415,7 +69851,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1655, + "line": 1644, "character": 4 } ], @@ -68425,7 +69861,7 @@ } }, { - "id": 2149, + "id": 2151, "name": "nbf", "variant": "declaration", "kind": 1024, @@ -68435,7 +69871,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1656, + "line": 1645, "character": 4 } ], @@ -68445,7 +69881,7 @@ } }, { - "id": 2146, + "id": 2148, "name": "phone", "variant": "declaration", "kind": 1024, @@ -68455,7 +69891,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1653, + "line": 1642, "character": 4 } ], @@ -68465,7 +69901,7 @@ } }, { - "id": 2153, + "id": 2155, "name": "ref", "variant": "declaration", "kind": 1024, @@ -68475,7 +69911,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1666, + "line": 1655, "character": 4 } ], @@ -68485,7 +69921,7 @@ } }, { - "id": 2159, + "id": 2161, "name": "role", "variant": "declaration", "kind": 1024, @@ -68495,7 +69931,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1639, + "line": 1628, "character": 4 } ], @@ -68510,7 +69946,7 @@ } }, { - "id": 2161, + "id": 2163, "name": "session_id", "variant": "declaration", "kind": 1024, @@ -68520,7 +69956,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1641, + "line": 1630, "character": 4 } ], @@ -68535,7 +69971,7 @@ } }, { - "id": 2155, + "id": 2157, "name": "sub", "variant": "declaration", "kind": 1024, @@ -68545,7 +69981,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1635, + "line": 1624, "character": 4 } ], @@ -68560,7 +69996,7 @@ } }, { - "id": 2151, + "id": 2153, "name": "user_metadata", "variant": "declaration", "kind": 1024, @@ -68570,13 +70006,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1658, + "line": 1647, "character": 4 } ], "type": { "type": "reference", - "target": 1737, + "target": 1739, "name": "UserMetadata", "package": "@supabase/auth-js" } @@ -68586,21 +70022,21 @@ { "title": "Properties", "children": [ - 2160, 2152, 2150, 2156, 2145, 2157, 2158, 2147, 2154, 2148, 2149, 2146, 2153, - 2159, 2161, 2155, 2151 + 2162, 2154, 2152, 2158, 2147, 2159, 2160, 2149, 2156, 2150, 2151, 2148, 2155, + 2161, 2163, 2157, 2153 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1651, + "line": 1640, "character": 17 } ], "indexSignatures": [ { - "id": 2162, + "id": 2164, "name": "__index", "variant": "signature", "kind": 8192, @@ -68608,13 +70044,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1667, + "line": 1656, "character": 4 } ], "parameters": [ { - "id": 2163, + "id": 2165, "name": "key", "variant": "param", "kind": 32768, @@ -68634,21 +70070,21 @@ "extendedTypes": [ { "type": "reference", - "target": 2134, + "target": 2136, "name": "RequiredClaims", "package": "@supabase/auth-js" } ] }, { - "id": 1762, + "id": 1764, "name": "Subscription", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1764, + "id": 1766, "name": "callback", "variant": "declaration", "kind": 1024, @@ -68664,14 +70100,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 500, + "line": 489, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1765, + "id": 1767, "name": "__type", "variant": "declaration", "kind": 65536, @@ -68679,13 +70115,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 500, + "line": 489, "character": 14 } ], "signatures": [ { - "id": 1766, + "id": 1768, "name": "__type", "variant": "signature", "kind": 4096, @@ -68693,26 +70129,26 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 500, + "line": 489, "character": 14 } ], "parameters": [ { - "id": 1767, + "id": 1769, "name": "event", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1587, + "target": 1589, "name": "AuthChangeEvent", "package": "@supabase/auth-js" } }, { - "id": 1768, + "id": 1770, "name": "session", "variant": "param", "kind": 32768, @@ -68744,7 +70180,7 @@ } }, { - "id": 1763, + "id": 1765, "name": "id", "variant": "declaration", "kind": 1024, @@ -68760,7 +70196,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 496, + "line": 485, "character": 4 } ], @@ -68779,7 +70215,7 @@ } }, { - "id": 1769, + "id": 1771, "name": "unsubscribe", "variant": "declaration", "kind": 1024, @@ -68795,14 +70231,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 504, + "line": 493, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1770, + "id": 1772, "name": "__type", "variant": "declaration", "kind": 65536, @@ -68810,13 +70246,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 504, + "line": 493, "character": 17 } ], "signatures": [ { - "id": 1771, + "id": 1773, "name": "__type", "variant": "signature", "kind": 4096, @@ -68824,7 +70260,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 504, + "line": 493, "character": 17 } ], @@ -68841,13 +70277,13 @@ "groups": [ { "title": "Properties", - "children": [1764, 1763, 1769] + "children": [1766, 1765, 1771] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 490, + "line": 479, "character": 17 } ] @@ -69025,7 +70461,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L71" } ], "type": { @@ -69107,7 +70543,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L93" } ], "type": { @@ -69127,19 +70563,19 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 53, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L53" } ] }, { - "id": 1732, + "id": 1734, "name": "UserAppMetadata", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1733, + "id": 1735, "name": "provider", "variant": "declaration", "kind": 1024, @@ -69157,7 +70593,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 350, + "line": 339, "character": 4 } ], @@ -69167,7 +70603,7 @@ } }, { - "id": 1734, + "id": 1736, "name": "providers", "variant": "declaration", "kind": 1024, @@ -69185,7 +70621,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 354, + "line": 343, "character": 4 } ], @@ -69201,19 +70637,19 @@ "groups": [ { "title": "Properties", - "children": [1733, 1734] + "children": [1735, 1736] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 346, + "line": 335, "character": 17 } ], "indexSignatures": [ { - "id": 1735, + "id": 1737, "name": "__index", "variant": "signature", "kind": 8192, @@ -69221,13 +70657,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 355, + "line": 344, "character": 4 } ], "parameters": [ { - "id": 1736, + "id": 1738, "name": "key", "variant": "param", "kind": 32768, @@ -69246,14 +70682,14 @@ ] }, { - "id": 1741, + "id": 1743, "name": "UserAttributes", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1742, + "id": 1744, "name": "current_password", "variant": "declaration", "kind": 1024, @@ -69271,7 +70707,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 396, + "line": 385, "character": 4 } ], @@ -69281,7 +70717,7 @@ } }, { - "id": 1747, + "id": 1749, "name": "data", "variant": "declaration", "kind": 1024, @@ -69315,7 +70751,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 421, + "line": 410, "character": 4 } ], @@ -69325,7 +70761,7 @@ } }, { - "id": 1743, + "id": 1745, "name": "email", "variant": "declaration", "kind": 1024, @@ -69343,7 +70779,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 400, + "line": 389, "character": 4 } ], @@ -69353,7 +70789,7 @@ } }, { - "id": 1746, + "id": 1748, "name": "nonce", "variant": "declaration", "kind": 1024, @@ -69371,7 +70807,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 414, + "line": 403, "character": 4 } ], @@ -69381,7 +70817,7 @@ } }, { - "id": 1745, + "id": 1747, "name": "password", "variant": "declaration", "kind": 1024, @@ -69399,7 +70835,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 408, + "line": 397, "character": 4 } ], @@ -69409,7 +70845,7 @@ } }, { - "id": 1744, + "id": 1746, "name": "phone", "variant": "declaration", "kind": 1024, @@ -69427,7 +70863,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 404, + "line": 393, "character": 4 } ], @@ -69440,26 +70876,26 @@ "groups": [ { "title": "Properties", - "children": [1742, 1747, 1743, 1746, 1745, 1744] + "children": [1744, 1749, 1745, 1748, 1747, 1746] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 388, + "line": 377, "character": 17 } ] }, { - "id": 1708, + "id": 1710, "name": "UserIdentity", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1717, + "id": 1719, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -69469,7 +70905,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 308, + "line": 297, "character": 4 } ], @@ -69479,7 +70915,7 @@ } }, { - "id": 1709, + "id": 1711, "name": "id", "variant": "declaration", "kind": 1024, @@ -69487,7 +70923,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 301, + "line": 290, "character": 4 } ], @@ -69497,7 +70933,7 @@ } }, { - "id": 1711, + "id": 1713, "name": "identity_data", "variant": "declaration", "kind": 1024, @@ -69507,14 +70943,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 303, + "line": 292, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1712, + "id": 1714, "name": "__type", "variant": "declaration", "kind": 65536, @@ -69522,13 +70958,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 303, + "line": 292, "character": 20 } ], "indexSignatures": [ { - "id": 1713, + "id": 1715, "name": "__index", "variant": "signature", "kind": 8192, @@ -69536,13 +70972,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 304, + "line": 293, "character": 8 } ], "parameters": [ { - "id": 1714, + "id": 1716, "name": "key", "variant": "param", "kind": 32768, @@ -69563,7 +70999,7 @@ } }, { - "id": 1715, + "id": 1717, "name": "identity_id", "variant": "declaration", "kind": 1024, @@ -69571,7 +71007,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 306, + "line": 295, "character": 4 } ], @@ -69581,7 +71017,7 @@ } }, { - "id": 1718, + "id": 1720, "name": "last_sign_in_at", "variant": "declaration", "kind": 1024, @@ -69591,7 +71027,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 309, + "line": 298, "character": 4 } ], @@ -69601,7 +71037,7 @@ } }, { - "id": 1716, + "id": 1718, "name": "provider", "variant": "declaration", "kind": 1024, @@ -69609,7 +71045,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 307, + "line": 296, "character": 4 } ], @@ -69619,7 +71055,7 @@ } }, { - "id": 1719, + "id": 1721, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -69629,7 +71065,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 310, + "line": 299, "character": 4 } ], @@ -69639,7 +71075,7 @@ } }, { - "id": 1710, + "id": 1712, "name": "user_id", "variant": "declaration", "kind": 1024, @@ -69647,7 +71083,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 302, + "line": 291, "character": 4 } ], @@ -69660,19 +71096,19 @@ "groups": [ { "title": "Properties", - "children": [1717, 1709, 1711, 1715, 1718, 1716, 1719, 1710] + "children": [1719, 1711, 1713, 1717, 1720, 1718, 1721, 1712] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 300, + "line": 289, "character": 17 } ] }, { - "id": 1737, + "id": 1739, "name": "UserMetadata", "variant": "declaration", "kind": 256, @@ -69680,13 +71116,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 357, + "line": 346, "character": 17 } ], "indexSignatures": [ { - "id": 1738, + "id": 1740, "name": "__index", "variant": "signature", "kind": 8192, @@ -69694,13 +71130,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 358, + "line": 347, "character": 4 } ], "parameters": [ { - "id": 1739, + "id": 1741, "name": "key", "variant": "param", "kind": 32768, @@ -69719,14 +71155,14 @@ ] }, { - "id": 1893, + "id": 1895, "name": "VerifyEmailOtpParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1894, + "id": 1896, "name": "email", "variant": "declaration", "kind": 1024, @@ -69742,7 +71178,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 682, + "line": 671, "character": 4 } ], @@ -69752,7 +71188,7 @@ } }, { - "id": 1897, + "id": 1899, "name": "options", "variant": "declaration", "kind": 1024, @@ -69762,21 +71198,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 687, + "line": 676, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1898, + "id": 1900, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1900, + "id": 1902, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -69800,7 +71236,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 694, + "line": 683, "character": 8 } ], @@ -69810,7 +71246,7 @@ } }, { - "id": 1899, + "id": 1901, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -69828,7 +71264,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 689, + "line": 678, "character": 8 } ], @@ -69841,13 +71277,13 @@ "groups": [ { "title": "Properties", - "children": [1900, 1899] + "children": [1902, 1901] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 687, + "line": 676, "character": 14 } ] @@ -69855,7 +71291,7 @@ } }, { - "id": 1895, + "id": 1897, "name": "token", "variant": "declaration", "kind": 1024, @@ -69871,7 +71307,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 684, + "line": 673, "character": 4 } ], @@ -69881,7 +71317,7 @@ } }, { - "id": 1896, + "id": 1898, "name": "type", "variant": "declaration", "kind": 1024, @@ -69897,13 +71333,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 686, + "line": 675, "character": 4 } ], "type": { "type": "reference", - "target": 1906, + "target": 1908, "name": "EmailOtpType", "package": "@supabase/auth-js" } @@ -69912,26 +71348,26 @@ "groups": [ { "title": "Properties", - "children": [1894, 1897, 1895, 1896] + "children": [1896, 1899, 1897, 1898] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 680, + "line": 669, "character": 17 } ] }, { - "id": 1885, + "id": 1887, "name": "VerifyMobileOtpParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1889, + "id": 1891, "name": "options", "variant": "declaration", "kind": 1024, @@ -69941,21 +71377,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 669, + "line": 658, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1890, + "id": 1892, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1892, + "id": 1894, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -69979,7 +71415,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 677, + "line": 666, "character": 8 } ], @@ -69989,7 +71425,7 @@ } }, { - "id": 1891, + "id": 1893, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -70007,7 +71443,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 671, + "line": 660, "character": 8 } ], @@ -70020,13 +71456,13 @@ "groups": [ { "title": "Properties", - "children": [1892, 1891] + "children": [1894, 1893] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 669, + "line": 658, "character": 14 } ] @@ -70034,7 +71470,7 @@ } }, { - "id": 1886, + "id": 1888, "name": "phone", "variant": "declaration", "kind": 1024, @@ -70050,7 +71486,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 664, + "line": 653, "character": 4 } ], @@ -70060,7 +71496,7 @@ } }, { - "id": 1887, + "id": 1889, "name": "token", "variant": "declaration", "kind": 1024, @@ -70076,7 +71512,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 666, + "line": 655, "character": 4 } ], @@ -70086,7 +71522,7 @@ } }, { - "id": 1888, + "id": 1890, "name": "type", "variant": "declaration", "kind": 1024, @@ -70102,13 +71538,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 668, + "line": 657, "character": 4 } ], "type": { "type": "reference", - "target": 1904, + "target": 1906, "name": "MobileOtpType", "package": "@supabase/auth-js" } @@ -70117,26 +71553,26 @@ "groups": [ { "title": "Properties", - "children": [1889, 1886, 1887, 1888] + "children": [1891, 1888, 1889, 1890] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 662, + "line": 651, "character": 17 } ] }, { - "id": 1901, + "id": 1903, "name": "VerifyTokenHashParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1902, + "id": 1904, "name": "token_hash", "variant": "declaration", "kind": 1024, @@ -70152,7 +71588,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 699, + "line": 688, "character": 4 } ], @@ -70162,7 +71598,7 @@ } }, { - "id": 1903, + "id": 1905, "name": "type", "variant": "declaration", "kind": 1024, @@ -70178,13 +71614,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 701, + "line": 690, "character": 4 } ], "type": { "type": "reference", - "target": 1906, + "target": 1908, "name": "EmailOtpType", "package": "@supabase/auth-js" } @@ -70193,26 +71629,26 @@ "groups": [ { "title": "Properties", - "children": [1902, 1903] + "children": [1904, 1905] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 697, + "line": 686, "character": 17 } ] }, { - "id": 3409, + "id": 3431, "name": "WebSocketLike", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3452, + "id": 3474, "name": "binaryType", "variant": "declaration", "kind": 1024, @@ -70232,7 +71668,7 @@ } }, { - "id": 3453, + "id": 3475, "name": "bufferedAmount", "variant": "declaration", "kind": 1024, @@ -70252,7 +71688,7 @@ } }, { - "id": 3413, + "id": 3435, "name": "CLOSED", "variant": "declaration", "kind": 1024, @@ -70272,7 +71708,7 @@ } }, { - "id": 3412, + "id": 3434, "name": "CLOSING", "variant": "declaration", "kind": 1024, @@ -70292,7 +71728,7 @@ } }, { - "id": 3410, + "id": 3432, "name": "CONNECTING", "variant": "declaration", "kind": 1024, @@ -70312,7 +71748,7 @@ } }, { - "id": 3455, + "id": 3477, "name": "dispatchEvent", "variant": "declaration", "kind": 1024, @@ -70329,7 +71765,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3456, + "id": 3478, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70343,7 +71779,7 @@ ], "signatures": [ { - "id": 3457, + "id": 3479, "name": "__type", "variant": "signature", "kind": 4096, @@ -70357,7 +71793,7 @@ ], "parameters": [ { - "id": 3458, + "id": 3480, "name": "event", "variant": "param", "kind": 32768, @@ -70383,7 +71819,7 @@ } }, { - "id": 3454, + "id": 3476, "name": "extensions", "variant": "declaration", "kind": 1024, @@ -70403,7 +71839,7 @@ } }, { - "id": 3434, + "id": 3456, "name": "onclose", "variant": "declaration", "kind": 1024, @@ -70425,7 +71861,7 @@ { "type": "reflection", "declaration": { - "id": 3435, + "id": 3457, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70439,7 +71875,7 @@ ], "signatures": [ { - "id": 3436, + "id": 3458, "name": "__type", "variant": "signature", "kind": 4096, @@ -70453,7 +71889,7 @@ ], "parameters": [ { - "id": 3437, + "id": 3459, "name": "this", "variant": "param", "kind": 32768, @@ -70464,7 +71900,7 @@ } }, { - "id": 3438, + "id": 3460, "name": "ev", "variant": "param", "kind": 32768, @@ -70492,7 +71928,7 @@ } }, { - "id": 3439, + "id": 3461, "name": "onerror", "variant": "declaration", "kind": 1024, @@ -70514,7 +71950,7 @@ { "type": "reflection", "declaration": { - "id": 3440, + "id": 3462, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70528,7 +71964,7 @@ ], "signatures": [ { - "id": 3441, + "id": 3463, "name": "__type", "variant": "signature", "kind": 4096, @@ -70542,7 +71978,7 @@ ], "parameters": [ { - "id": 3442, + "id": 3464, "name": "this", "variant": "param", "kind": 32768, @@ -70553,7 +71989,7 @@ } }, { - "id": 3443, + "id": 3465, "name": "ev", "variant": "param", "kind": 32768, @@ -70581,7 +72017,7 @@ } }, { - "id": 3429, + "id": 3451, "name": "onmessage", "variant": "declaration", "kind": 1024, @@ -70603,7 +72039,7 @@ { "type": "reflection", "declaration": { - "id": 3430, + "id": 3452, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70617,7 +72053,7 @@ ], "signatures": [ { - "id": 3431, + "id": 3453, "name": "__type", "variant": "signature", "kind": 4096, @@ -70631,7 +72067,7 @@ ], "parameters": [ { - "id": 3432, + "id": 3454, "name": "this", "variant": "param", "kind": 32768, @@ -70642,7 +72078,7 @@ } }, { - "id": 3433, + "id": 3455, "name": "ev", "variant": "param", "kind": 32768, @@ -70670,7 +72106,7 @@ } }, { - "id": 3424, + "id": 3446, "name": "onopen", "variant": "declaration", "kind": 1024, @@ -70692,7 +72128,7 @@ { "type": "reflection", "declaration": { - "id": 3425, + "id": 3447, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70706,7 +72142,7 @@ ], "signatures": [ { - "id": 3426, + "id": 3448, "name": "__type", "variant": "signature", "kind": 4096, @@ -70720,7 +72156,7 @@ ], "parameters": [ { - "id": 3427, + "id": 3449, "name": "this", "variant": "param", "kind": 32768, @@ -70731,7 +72167,7 @@ } }, { - "id": 3428, + "id": 3450, "name": "ev", "variant": "param", "kind": 32768, @@ -70759,7 +72195,7 @@ } }, { - "id": 3411, + "id": 3433, "name": "OPEN", "variant": "declaration", "kind": 1024, @@ -70779,7 +72215,7 @@ } }, { - "id": 3416, + "id": 3438, "name": "protocol", "variant": "declaration", "kind": 1024, @@ -70799,7 +72235,7 @@ } }, { - "id": 3414, + "id": 3436, "name": "readyState", "variant": "declaration", "kind": 1024, @@ -70819,7 +72255,7 @@ } }, { - "id": 3415, + "id": 3437, "name": "url", "variant": "declaration", "kind": 1024, @@ -70839,7 +72275,7 @@ } }, { - "id": 3444, + "id": 3466, "name": "addEventListener", "variant": "declaration", "kind": 2048, @@ -70853,7 +72289,7 @@ ], "signatures": [ { - "id": 3445, + "id": 3467, "name": "addEventListener", "variant": "signature", "kind": 4096, @@ -70875,7 +72311,7 @@ ], "parameters": [ { - "id": 3446, + "id": 3468, "name": "type", "variant": "param", "kind": 32768, @@ -70886,7 +72322,7 @@ } }, { - "id": 3447, + "id": 3469, "name": "listener", "variant": "param", "kind": 32768, @@ -70910,7 +72346,7 @@ ] }, { - "id": 3417, + "id": 3439, "name": "close", "variant": "declaration", "kind": 2048, @@ -70924,7 +72360,7 @@ ], "signatures": [ { - "id": 3418, + "id": 3440, "name": "close", "variant": "signature", "kind": 4096, @@ -70946,7 +72382,7 @@ ], "parameters": [ { - "id": 3419, + "id": 3441, "name": "code", "variant": "param", "kind": 32768, @@ -70959,7 +72395,7 @@ } }, { - "id": 3420, + "id": 3442, "name": "reason", "variant": "param", "kind": 32768, @@ -70980,7 +72416,7 @@ ] }, { - "id": 3448, + "id": 3470, "name": "removeEventListener", "variant": "declaration", "kind": 2048, @@ -70994,7 +72430,7 @@ ], "signatures": [ { - "id": 3449, + "id": 3471, "name": "removeEventListener", "variant": "signature", "kind": 4096, @@ -71016,7 +72452,7 @@ ], "parameters": [ { - "id": 3450, + "id": 3472, "name": "type", "variant": "param", "kind": 32768, @@ -71027,7 +72463,7 @@ } }, { - "id": 3451, + "id": 3473, "name": "listener", "variant": "param", "kind": 32768, @@ -71051,7 +72487,7 @@ ] }, { - "id": 3421, + "id": 3443, "name": "send", "variant": "declaration", "kind": 2048, @@ -71065,7 +72501,7 @@ ], "signatures": [ { - "id": 3422, + "id": 3444, "name": "send", "variant": "signature", "kind": 4096, @@ -71087,7 +72523,7 @@ ], "parameters": [ { - "id": 3423, + "id": 3445, "name": "data", "variant": "param", "kind": 32768, @@ -71153,13 +72589,13 @@ { "title": "Properties", "children": [ - 3452, 3453, 3413, 3412, 3410, 3455, 3454, 3434, 3439, 3429, 3424, 3411, 3416, - 3414, 3415 + 3474, 3475, 3435, 3434, 3432, 3477, 3476, 3456, 3461, 3451, 3446, 3433, 3438, + 3436, 3437 ] }, { "title": "Methods", - "children": [3444, 3417, 3448, 3421] + "children": [3466, 3439, 3470, 3443] } ], "sources": [ @@ -71171,7 +72607,7 @@ ] }, { - "id": 3459, + "id": 3481, "name": "WebSocketLikeConstructor", "variant": "declaration", "kind": 256, @@ -71194,7 +72630,7 @@ }, "children": [ { - "id": 3460, + "id": 3482, "name": "constructor", "variant": "declaration", "kind": 512, @@ -71208,7 +72644,7 @@ ], "signatures": [ { - "id": 3461, + "id": 3483, "name": "WebSocketLikeConstructor", "variant": "signature", "kind": 16384, @@ -71222,7 +72658,7 @@ ], "parameters": [ { - "id": 3462, + "id": 3484, "name": "address", "variant": "param", "kind": 32768, @@ -71247,7 +72683,7 @@ } }, { - "id": 3463, + "id": 3485, "name": "subprotocols", "variant": "param", "kind": 32768, @@ -71274,7 +72710,7 @@ ], "type": { "type": "reference", - "target": 3409, + "target": 3431, "name": "WebSocketLike", "package": "@supabase/realtime-js" } @@ -71285,7 +72721,7 @@ "groups": [ { "title": "Constructors", - "children": [3460] + "children": [3482] } ], "sources": [ @@ -71297,7 +72733,7 @@ ], "indexSignatures": [ { - "id": 3464, + "id": 3486, "name": "__index", "variant": "signature", "kind": 8192, @@ -71311,7 +72747,7 @@ ], "parameters": [ { - "id": 3465, + "id": 3487, "name": "key", "variant": "param", "kind": 32768, @@ -71330,7 +72766,7 @@ ] }, { - "id": 1703, + "id": 1705, "name": "AMRMethod", "variant": "declaration", "kind": 2097152, @@ -71338,7 +72774,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 278, + "line": 267, "character": 12 } ], @@ -71375,7 +72811,7 @@ { "type": "reflection", "declaration": { - "id": 1704, + "id": 1706, "name": "__type", "variant": "declaration", "kind": 65536, @@ -71383,7 +72819,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 278, + "line": 267, "character": 64 } ] @@ -71395,7 +72831,7 @@ } }, { - "id": 1587, + "id": 1589, "name": "AuthChangeEvent", "variant": "declaration", "kind": 2097152, @@ -71436,7 +72872,7 @@ }, { "type": "reference", - "target": 1586, + "target": 1588, "name": "AuthChangeEventMFA", "package": "@supabase/auth-js" } @@ -71444,7 +72880,7 @@ } }, { - "id": 1586, + "id": 1588, "name": "AuthChangeEventMFA", "variant": "declaration", "kind": 2097152, @@ -71462,7 +72898,7 @@ } }, { - "id": 2016, + "id": 2018, "name": "AuthenticatorAssuranceLevels", "variant": "declaration", "kind": 2097152, @@ -71470,7 +72906,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 984, + "line": 973, "character": 12 } ], @@ -71495,7 +72931,7 @@ { "type": "reflection", "declaration": { - "id": 2017, + "id": 2019, "name": "__type", "variant": "declaration", "kind": 65536, @@ -71503,7 +72939,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 984, + "line": 973, "character": 71 } ] @@ -71515,7 +72951,7 @@ } }, { - "id": 1808, + "id": 1810, "name": "AuthFlowType", "variant": "declaration", "kind": 2097152, @@ -71523,7 +72959,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 573, + "line": 562, "character": 12 } ], @@ -71548,7 +72984,7 @@ { "type": "reflection", "declaration": { - "id": 1809, + "id": 1811, "name": "__type", "variant": "declaration", "kind": 65536, @@ -71556,7 +72992,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 573, + "line": 562, "character": 59 } ] @@ -71568,7 +73004,7 @@ } }, { - "id": 2084, + "id": 2086, "name": "AuthMFAAdminDeleteFactorParams", "variant": "declaration", "kind": 2097152, @@ -71585,21 +73021,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1435, + "line": 1424, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2085, + "id": 2087, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2086, + "id": 2088, "name": "id", "variant": "declaration", "kind": 1024, @@ -71615,7 +73051,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1437, + "line": 1426, "character": 4 } ], @@ -71625,7 +73061,7 @@ } }, { - "id": 2087, + "id": 2089, "name": "userId", "variant": "declaration", "kind": 1024, @@ -71641,7 +73077,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1439, + "line": 1428, "character": 4 } ], @@ -71654,13 +73090,13 @@ "groups": [ { "title": "Properties", - "children": [2086, 2087] + "children": [2088, 2089] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1435, + "line": 1424, "character": 45 } ] @@ -71668,7 +73104,7 @@ } }, { - "id": 2081, + "id": 2083, "name": "AuthMFAAdminDeleteFactorResponse", "variant": "declaration", "kind": 2097152, @@ -71685,25 +73121,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1428, + "line": 1417, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2082, + "id": 2084, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2083, + "id": 2085, "name": "id", "variant": "declaration", "kind": 1024, @@ -71719,7 +73155,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1430, + "line": 1419, "character": 4 } ], @@ -71732,13 +73168,13 @@ "groups": [ { "title": "Properties", - "children": [2083] + "children": [2085] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1428, + "line": 1417, "character": 61 } ] @@ -71750,7 +73186,7 @@ } }, { - "id": 2091, + "id": 2093, "name": "AuthMFAAdminListFactorsParams", "variant": "declaration", "kind": 2097152, @@ -71767,21 +73203,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1451, + "line": 1440, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2092, + "id": 2094, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2093, + "id": 2095, "name": "userId", "variant": "declaration", "kind": 1024, @@ -71797,7 +73233,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1453, + "line": 1442, "character": 4 } ], @@ -71810,13 +73246,13 @@ "groups": [ { "title": "Properties", - "children": [2093] + "children": [2095] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1451, + "line": 1440, "character": 44 } ] @@ -71824,7 +73260,7 @@ } }, { - "id": 2088, + "id": 2090, "name": "AuthMFAAdminListFactorsResponse", "variant": "declaration", "kind": 2097152, @@ -71841,25 +73277,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1444, + "line": 1433, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2089, + "id": 2091, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2090, + "id": 2092, "name": "factors", "variant": "declaration", "kind": 1024, @@ -71875,7 +73311,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1446, + "line": 1435, "character": 4 } ], @@ -71883,7 +73319,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1721, + "target": 1723, "name": "Factor", "package": "@supabase/auth-js" } @@ -71893,13 +73329,13 @@ "groups": [ { "title": "Properties", - "children": [2090] + "children": [2092] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1444, + "line": 1433, "character": 60 } ] @@ -71911,7 +73347,7 @@ } }, { - "id": 2007, + "id": 2009, "name": "AuthMFAChallengePhoneResponse", "variant": "declaration", "kind": 2097152, @@ -71919,13 +73355,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 933, + "line": 922, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -71962,7 +73398,7 @@ } }, { - "id": 2011, + "id": 2013, "name": "AuthMFAChallengeResponse", "variant": "declaration", "kind": 2097152, @@ -71970,7 +73406,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 976, + "line": 965, "character": 12 } ], @@ -71979,19 +73415,19 @@ "types": [ { "type": "reference", - "target": 2006, + "target": 2008, "name": "AuthMFAChallengeTOTPResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2007, + "target": 2009, "name": "AuthMFAChallengePhoneResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2008, + "target": 2010, "name": "AuthMFAChallengeWebauthnResponse", "package": "@supabase/auth-js" } @@ -71999,7 +73435,7 @@ } }, { - "id": 2006, + "id": 2008, "name": "AuthMFAChallengeTOTPResponse", "variant": "declaration", "kind": 2097152, @@ -72007,13 +73443,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 931, + "line": 920, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72050,7 +73486,7 @@ } }, { - "id": 2008, + "id": 2010, "name": "AuthMFAChallengeWebauthnResponse", "variant": "declaration", "kind": 2097152, @@ -72079,13 +73515,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 952, + "line": 941, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72122,7 +73558,7 @@ } }, { - "id": 2009, + "id": 2011, "name": "AuthMFAChallengeWebauthnResponseDataJSON", "variant": "declaration", "kind": 2097152, @@ -72138,7 +73574,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 970, + "line": 959, "character": 12 } ], @@ -72173,7 +73609,7 @@ } }, { - "id": 2010, + "id": 2012, "name": "AuthMFAChallengeWebauthnServerResponse", "variant": "declaration", "kind": 2097152, @@ -72189,17 +73625,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 975, + "line": 964, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2009, + "target": 2011, "name": "AuthMFAChallengeWebauthnResponseDataJSON", "package": "@supabase/auth-js" } @@ -72209,7 +73645,7 @@ } }, { - "id": 2126, + "id": 2128, "name": "AuthMFAEnrollPhoneResponse", "variant": "declaration", "kind": 2097152, @@ -72217,13 +73653,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1620, + "line": 1609, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72260,7 +73696,7 @@ } }, { - "id": 2002, + "id": 2004, "name": "AuthMFAEnrollResponse", "variant": "declaration", "kind": 2097152, @@ -72268,7 +73704,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 917, + "line": 906, "character": 12 } ], @@ -72277,19 +73713,19 @@ "types": [ { "type": "reference", - "target": 2125, + "target": 2127, "name": "AuthMFAEnrollTOTPResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2126, + "target": 2128, "name": "AuthMFAEnrollPhoneResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2127, + "target": 2129, "name": "AuthMFAEnrollWebauthnResponse", "package": "@supabase/auth-js" } @@ -72297,7 +73733,7 @@ } }, { - "id": 2125, + "id": 2127, "name": "AuthMFAEnrollTOTPResponse", "variant": "declaration", "kind": 2097152, @@ -72305,13 +73741,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1615, + "line": 1604, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72348,7 +73784,7 @@ } }, { - "id": 2127, + "id": 2129, "name": "AuthMFAEnrollWebauthnResponse", "variant": "declaration", "kind": 2097152, @@ -72377,13 +73813,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1627, + "line": 1616, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72420,7 +73856,7 @@ } }, { - "id": 2018, + "id": 2020, "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse", "variant": "declaration", "kind": 2097152, @@ -72428,25 +73864,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 985, + "line": 974, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2019, + "id": 2021, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2022, + "id": 2024, "name": "currentAuthenticationMethods", "variant": "declaration", "kind": 1024, @@ -72462,7 +73898,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1004, + "line": 993, "character": 4 } ], @@ -72473,7 +73909,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1705, + "target": 1707, "name": "AMREntry", "package": "@supabase/auth-js" } @@ -72489,7 +73925,7 @@ } }, { - "id": 2020, + "id": 2022, "name": "currentLevel", "variant": "declaration", "kind": 1024, @@ -72505,7 +73941,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 987, + "line": 976, "character": 4 } ], @@ -72514,7 +73950,7 @@ "types": [ { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" }, @@ -72526,7 +73962,7 @@ } }, { - "id": 2021, + "id": 2023, "name": "nextLevel", "variant": "declaration", "kind": 1024, @@ -72546,7 +73982,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#challenge", - "target": 2033 + "target": 2035 } ] } @@ -72555,7 +73991,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 994, + "line": 983, "character": 4 } ], @@ -72564,7 +74000,7 @@ "types": [ { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" }, @@ -72579,13 +74015,13 @@ "groups": [ { "title": "Properties", - "children": [2022, 2020, 2021] + "children": [2024, 2022, 2023] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 985, + "line": 974, "character": 74 } ] @@ -72597,7 +74033,7 @@ } }, { - "id": 2012, + "id": 2014, "name": "AuthMFAListFactorsResponse", "variant": "declaration", "kind": 2097152, @@ -72613,13 +74049,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 978, + "line": 967, "character": 12 } ], "typeParameters": [ { - "id": 2015, + "id": 2017, "name": "T", "variant": "typeParam", "kind": 131072, @@ -72654,7 +74090,7 @@ ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72662,14 +74098,14 @@ { "type": "reflection", "declaration": { - "id": 2013, + "id": 2015, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2014, + "id": 2016, "name": "all", "variant": "declaration", "kind": 1024, @@ -72685,7 +74121,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 980, + "line": 969, "character": 4 } ], @@ -72693,7 +74129,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1721, + "target": 1723, "name": "Factor", "package": "@supabase/auth-js" } @@ -72703,13 +74139,13 @@ "groups": [ { "title": "Properties", - "children": [2014] + "children": [2016] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 978, + "line": 967, "character": 106 } ] @@ -72726,7 +74162,7 @@ }, "objectType": { "type": "reference", - "target": 2015, + "target": 2017, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -72736,7 +74172,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1721, + "target": 1723, "typeArguments": [ { "type": "reference", @@ -72766,7 +74202,7 @@ } }, { - "id": 2003, + "id": 2005, "name": "AuthMFAUnenrollResponse", "variant": "declaration", "kind": 2097152, @@ -72774,25 +74210,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 918, + "line": 907, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2004, + "id": 2006, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2005, + "id": 2007, "name": "id", "variant": "declaration", "kind": 1024, @@ -72808,7 +74244,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 920, + "line": 909, "character": 4 } ], @@ -72821,13 +74257,13 @@ "groups": [ { "title": "Properties", - "children": [2005] + "children": [2007] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 918, + "line": 907, "character": 52 } ] @@ -72839,7 +74275,7 @@ } }, { - "id": 2001, + "id": 2003, "name": "AuthMFAVerifyResponse", "variant": "declaration", "kind": 2097152, @@ -72855,17 +74291,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 916, + "line": 905, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 1994, + "target": 1996, "name": "AuthMFAVerifyResponseData", "package": "@supabase/auth-js" } @@ -72875,7 +74311,7 @@ } }, { - "id": 1994, + "id": 1996, "name": "AuthMFAVerifyResponseData", "variant": "declaration", "kind": 2097152, @@ -72891,21 +74327,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 900, + "line": 889, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1995, + "id": 1997, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1996, + "id": 1998, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -72921,7 +74357,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 902, + "line": 891, "character": 4 } ], @@ -72931,7 +74367,7 @@ } }, { - "id": 1998, + "id": 2000, "name": "expires_in", "variant": "declaration", "kind": 1024, @@ -72947,7 +74383,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 906, + "line": 895, "character": 4 } ], @@ -72957,7 +74393,7 @@ } }, { - "id": 1999, + "id": 2001, "name": "refresh_token", "variant": "declaration", "kind": 1024, @@ -72973,7 +74409,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 908, + "line": 897, "character": 4 } ], @@ -72983,7 +74419,7 @@ } }, { - "id": 1997, + "id": 1999, "name": "token_type", "variant": "declaration", "kind": 1024, @@ -73007,7 +74443,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 904, + "line": 893, "character": 4 } ], @@ -73017,7 +74453,7 @@ } }, { - "id": 2000, + "id": 2002, "name": "user", "variant": "declaration", "kind": 1024, @@ -73033,7 +74469,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 910, + "line": 899, "character": 4 } ], @@ -73048,13 +74484,13 @@ "groups": [ { "title": "Properties", - "children": [1996, 1998, 1999, 1997, 2000] + "children": [1998, 2000, 2001, 1999, 2002] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 900, + "line": 889, "character": 40 } ] @@ -73062,7 +74498,7 @@ } }, { - "id": 2380, + "id": 2382, "name": "AuthOAuthAuthorizationDetailsResponse", "variant": "declaration", "kind": 2097152, @@ -73089,26 +74525,26 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2200, + "line": 2189, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "union", "types": [ { "type": "reference", - "target": 2367, + "target": 2369, "name": "OAuthAuthorizationDetails", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2377, + "target": 2379, "name": "OAuthRedirect", "package": "@supabase/auth-js" } @@ -73120,7 +74556,7 @@ } }, { - "id": 2381, + "id": 2383, "name": "AuthOAuthConsentResponse", "variant": "declaration", "kind": 2097152, @@ -73136,17 +74572,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2205, + "line": 2194, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2377, + "target": 2379, "name": "OAuthRedirect", "package": "@supabase/auth-js" } @@ -73156,7 +74592,7 @@ } }, { - "id": 2387, + "id": 2389, "name": "AuthOAuthGrantsResponse", "variant": "declaration", "kind": 2097152, @@ -73172,19 +74608,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2222, + "line": 2211, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "array", "elementType": { "type": "reference", - "target": 2382, + "target": 2384, "name": "OAuthGrant", "package": "@supabase/auth-js" } @@ -73195,7 +74631,7 @@ } }, { - "id": 2388, + "id": 2390, "name": "AuthOAuthRevokeGrantResponse", "variant": "declaration", "kind": 2097152, @@ -73211,18 +74647,18 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2227, + "line": 2216, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2389, + "id": 2391, "name": "__type", "variant": "declaration", "kind": 65536, @@ -73230,7 +74666,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2227, + "line": 2216, "character": 57 } ] @@ -73242,7 +74678,7 @@ } }, { - "id": 1669, + "id": 1671, "name": "AuthOtpResponse", "variant": "declaration", "kind": 2097152, @@ -73263,25 +74699,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 205, + "line": 194, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1670, + "id": 1672, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1673, + "id": 1675, "name": "messageId", "variant": "declaration", "kind": 1024, @@ -73291,7 +74727,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 208, + "line": 197, "character": 4 } ], @@ -73310,7 +74746,7 @@ } }, { - "id": 1672, + "id": 1674, "name": "session", "variant": "declaration", "kind": 1024, @@ -73318,7 +74754,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 207, + "line": 196, "character": 4 } ], @@ -73328,7 +74764,7 @@ } }, { - "id": 1671, + "id": 1673, "name": "user", "variant": "declaration", "kind": 1024, @@ -73336,7 +74772,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 206, + "line": 195, "character": 4 } ], @@ -73349,13 +74785,13 @@ "groups": [ { "title": "Properties", - "children": [1673, 1672, 1671] + "children": [1675, 1674, 1673] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 205, + "line": 194, "character": 59 } ] @@ -73367,7 +74803,7 @@ } }, { - "id": 2486, + "id": 2488, "name": "AuthPasskeyAdminDeleteParams", "variant": "declaration", "kind": 2097152, @@ -73375,21 +74811,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2410, + "line": 2399, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2487, + "id": 2489, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2489, + "id": 2491, "name": "passkeyId", "variant": "declaration", "kind": 1024, @@ -73397,7 +74833,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2412, + "line": 2401, "character": 4 } ], @@ -73407,7 +74843,7 @@ } }, { - "id": 2488, + "id": 2490, "name": "userId", "variant": "declaration", "kind": 1024, @@ -73415,7 +74851,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2411, + "line": 2400, "character": 4 } ], @@ -73428,13 +74864,13 @@ "groups": [ { "title": "Properties", - "children": [2489, 2488] + "children": [2491, 2490] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2410, + "line": 2399, "character": 43 } ] @@ -73442,7 +74878,7 @@ } }, { - "id": 2483, + "id": 2485, "name": "AuthPasskeyAdminListParams", "variant": "declaration", "kind": 2097152, @@ -73450,21 +74886,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2407, + "line": 2396, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2484, + "id": 2486, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2485, + "id": 2487, "name": "userId", "variant": "declaration", "kind": 1024, @@ -73472,7 +74908,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2408, + "line": 2397, "character": 4 } ], @@ -73485,13 +74921,13 @@ "groups": [ { "title": "Properties", - "children": [2485] + "children": [2487] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2407, + "line": 2396, "character": 41 } ] @@ -73499,7 +74935,7 @@ } }, { - "id": 2475, + "id": 2477, "name": "AuthPasskeyAuthenticationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -73507,17 +74943,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2399, + "line": 2388, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2427, + "target": 2429, "name": "PasskeyAuthenticationOptionsResponse", "package": "@supabase/auth-js" } @@ -73527,7 +74963,7 @@ } }, { - "id": 2476, + "id": 2478, "name": "AuthPasskeyAuthenticationVerifyResponse", "variant": "declaration", "kind": 2097152, @@ -73535,25 +74971,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2400, + "line": 2389, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2477, + "id": 2479, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2478, + "id": 2480, "name": "session", "variant": "declaration", "kind": 1024, @@ -73561,7 +74997,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2401, + "line": 2390, "character": 4 } ], @@ -73582,7 +75018,7 @@ } }, { - "id": 2479, + "id": 2481, "name": "user", "variant": "declaration", "kind": 1024, @@ -73590,7 +75026,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2402, + "line": 2391, "character": 4 } ], @@ -73614,13 +75050,13 @@ "groups": [ { "title": "Properties", - "children": [2478, 2479] + "children": [2480, 2481] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2400, + "line": 2389, "character": 68 } ] @@ -73640,7 +75076,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -73652,7 +75088,7 @@ } }, { - "id": 2482, + "id": 2484, "name": "AuthPasskeyDeleteResponse", "variant": "declaration", "kind": 2097152, @@ -73660,13 +75096,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2406, + "line": 2395, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "literal", @@ -73678,7 +75114,7 @@ } }, { - "id": 2480, + "id": 2482, "name": "AuthPasskeyListResponse", "variant": "declaration", "kind": 2097152, @@ -73686,19 +75122,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2404, + "line": 2393, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "array", "elementType": { "type": "reference", - "target": 2436, + "target": 2438, "name": "PasskeyListItem", "package": "@supabase/auth-js" } @@ -73709,7 +75145,7 @@ } }, { - "id": 2473, + "id": 2475, "name": "AuthPasskeyRegistrationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -73717,17 +75153,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2397, + "line": 2386, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2413, + "target": 2415, "name": "PasskeyRegistrationOptionsResponse", "package": "@supabase/auth-js" } @@ -73737,7 +75173,7 @@ } }, { - "id": 2474, + "id": 2476, "name": "AuthPasskeyRegistrationVerifyResponse", "variant": "declaration", "kind": 2097152, @@ -73745,17 +75181,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2398, + "line": 2387, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2422, + "target": 2424, "name": "PasskeyMetadata", "package": "@supabase/auth-js" }, @@ -73773,7 +75209,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -73785,7 +75221,7 @@ } }, { - "id": 2481, + "id": 2483, "name": "AuthPasskeyUpdateResponse", "variant": "declaration", "kind": 2097152, @@ -73793,17 +75229,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2405, + "line": 2394, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2436, + "target": 2438, "name": "PasskeyListItem", "package": "@supabase/auth-js" } @@ -73813,7 +75249,7 @@ } }, { - "id": 1660, + "id": 1662, "name": "AuthResponse", "variant": "declaration", "kind": 2097152, @@ -73821,25 +75257,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 191, + "line": 180, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1661, + "id": 1663, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1663, + "id": 1665, "name": "session", "variant": "declaration", "kind": 1024, @@ -73847,7 +75283,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 193, + "line": 182, "character": 4 } ], @@ -73868,7 +75304,7 @@ } }, { - "id": 1662, + "id": 1664, "name": "user", "variant": "declaration", "kind": 1024, @@ -73876,7 +75312,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 192, + "line": 181, "character": 4 } ], @@ -73900,13 +75336,13 @@ "groups": [ { "title": "Properties", - "children": [1663, 1662] + "children": [1665, 1664] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 191, + "line": 180, "character": 56 } ] @@ -73918,7 +75354,7 @@ } }, { - "id": 1664, + "id": 1666, "name": "AuthResponsePassword", "variant": "declaration", "kind": 2097152, @@ -73926,25 +75362,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 195, + "line": 184, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1665, + "id": 1667, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1667, + "id": 1669, "name": "session", "variant": "declaration", "kind": 1024, @@ -73952,7 +75388,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 197, + "line": 186, "character": 4 } ], @@ -73973,7 +75409,7 @@ } }, { - "id": 1666, + "id": 1668, "name": "user", "variant": "declaration", "kind": 1024, @@ -73981,7 +75417,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 196, + "line": 185, "character": 4 } ], @@ -74002,7 +75438,7 @@ } }, { - "id": 1668, + "id": 1670, "name": "weak_password", "variant": "declaration", "kind": 1024, @@ -74012,7 +75448,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 198, + "line": 187, "character": 4 } ], @@ -74021,7 +75457,7 @@ "types": [ { "type": "reference", - "target": 1634, + "target": 1636, "name": "WeakPassword", "package": "@supabase/auth-js" }, @@ -74036,13 +75472,13 @@ "groups": [ { "title": "Properties", - "children": [1667, 1666, 1668] + "children": [1669, 1668, 1670] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 195, + "line": 184, "character": 64 } ] @@ -74054,7 +75490,7 @@ } }, { - "id": 1674, + "id": 1676, "name": "AuthTokenResponse", "variant": "declaration", "kind": 2097152, @@ -74062,25 +75498,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 210, + "line": 199, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1675, + "id": 1677, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1677, + "id": 1679, "name": "session", "variant": "declaration", "kind": 1024, @@ -74088,7 +75524,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 212, + "line": 201, "character": 4 } ], @@ -74100,7 +75536,7 @@ } }, { - "id": 1676, + "id": 1678, "name": "user", "variant": "declaration", "kind": 1024, @@ -74108,7 +75544,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 211, + "line": 200, "character": 4 } ], @@ -74123,13 +75559,13 @@ "groups": [ { "title": "Properties", - "children": [1677, 1676] + "children": [1679, 1678] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 210, + "line": 199, "character": 61 } ] @@ -74141,7 +75577,7 @@ } }, { - "id": 1678, + "id": 1680, "name": "AuthTokenResponsePassword", "variant": "declaration", "kind": 2097152, @@ -74149,25 +75585,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 214, + "line": 203, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1679, + "id": 1681, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1681, + "id": 1683, "name": "session", "variant": "declaration", "kind": 1024, @@ -74175,7 +75611,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 216, + "line": 205, "character": 4 } ], @@ -74187,7 +75623,7 @@ } }, { - "id": 1680, + "id": 1682, "name": "user", "variant": "declaration", "kind": 1024, @@ -74195,7 +75631,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 215, + "line": 204, "character": 4 } ], @@ -74207,7 +75643,7 @@ } }, { - "id": 1682, + "id": 1684, "name": "weakPassword", "variant": "declaration", "kind": 1024, @@ -74217,13 +75653,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 217, + "line": 206, "character": 4 } ], "type": { "type": "reference", - "target": 1634, + "target": 1636, "name": "WeakPassword", "package": "@supabase/auth-js" } @@ -74232,13 +75668,13 @@ "groups": [ { "title": "Properties", - "children": [1681, 1680, 1682] + "children": [1683, 1682, 1684] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 214, + "line": 203, "character": 69 } ] @@ -74250,7 +75686,7 @@ } }, { - "id": 2107, + "id": 2109, "name": "CallRefreshTokenResult", "variant": "declaration", "kind": 2097152, @@ -74258,13 +75694,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1542, + "line": 1531, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", @@ -74278,7 +75714,7 @@ } }, { - "id": 2286, + "id": 2288, "name": "CreateCustomProviderParams", "variant": "declaration", "kind": 2097152, @@ -74294,21 +75730,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1949, + "line": 1938, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2287, + "id": 2289, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2293, + "id": 2295, "name": "acceptable_client_ids", "variant": "declaration", "kind": 1024, @@ -74326,7 +75762,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1961, + "line": 1950, "character": 4 } ], @@ -74339,7 +75775,7 @@ } }, { - "id": 2296, + "id": 2298, "name": "attribute_mapping", "variant": "declaration", "kind": 1024, @@ -74357,7 +75793,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1967, + "line": 1956, "character": 4 } ], @@ -74382,7 +75818,7 @@ } }, { - "id": 2297, + "id": 2299, "name": "authorization_params", "variant": "declaration", "kind": 1024, @@ -74400,7 +75836,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1969, + "line": 1958, "character": 4 } ], @@ -74425,7 +75861,7 @@ } }, { - "id": 2303, + "id": 2305, "name": "authorization_url", "variant": "declaration", "kind": 1024, @@ -74443,7 +75879,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1981, + "line": 1970, "character": 4 } ], @@ -74453,7 +75889,7 @@ } }, { - "id": 2291, + "id": 2293, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -74469,7 +75905,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1957, + "line": 1946, "character": 4 } ], @@ -74479,7 +75915,7 @@ } }, { - "id": 2292, + "id": 2294, "name": "client_secret", "variant": "declaration", "kind": 1024, @@ -74495,7 +75931,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1959, + "line": 1948, "character": 4 } ], @@ -74505,7 +75941,7 @@ } }, { - "id": 2301, + "id": 2303, "name": "discovery_url", "variant": "declaration", "kind": 1024, @@ -74523,7 +75959,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1977, + "line": 1966, "character": 4 } ], @@ -74533,7 +75969,7 @@ } }, { - "id": 2299, + "id": 2301, "name": "email_optional", "variant": "declaration", "kind": 1024, @@ -74551,7 +75987,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1973, + "line": 1962, "character": 4 } ], @@ -74561,7 +75997,7 @@ } }, { - "id": 2298, + "id": 2300, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -74579,7 +76015,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1971, + "line": 1960, "character": 4 } ], @@ -74589,7 +76025,7 @@ } }, { - "id": 2289, + "id": 2291, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -74613,7 +76049,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1953, + "line": 1942, "character": 4 } ], @@ -74623,7 +76059,7 @@ } }, { - "id": 2300, + "id": 2302, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -74641,7 +76077,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1975, + "line": 1964, "character": 4 } ], @@ -74651,7 +76087,7 @@ } }, { - "id": 2306, + "id": 2308, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -74669,7 +76105,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1987, + "line": 1976, "character": 4 } ], @@ -74679,7 +76115,7 @@ } }, { - "id": 2290, + "id": 2292, "name": "name", "variant": "declaration", "kind": 1024, @@ -74695,7 +76131,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1955, + "line": 1944, "character": 4 } ], @@ -74705,7 +76141,7 @@ } }, { - "id": 2295, + "id": 2297, "name": "pkce_enabled", "variant": "declaration", "kind": 1024, @@ -74723,7 +76159,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1965, + "line": 1954, "character": 4 } ], @@ -74733,7 +76169,7 @@ } }, { - "id": 2288, + "id": 2290, "name": "provider_type", "variant": "declaration", "kind": 1024, @@ -74749,19 +76185,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1951, + "line": 1940, "character": 4 } ], "type": { "type": "reference", - "target": 2249, + "target": 2251, "name": "CustomProviderType", "package": "@supabase/auth-js" } }, { - "id": 2294, + "id": 2296, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -74779,7 +76215,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1963, + "line": 1952, "character": 4 } ], @@ -74792,7 +76228,7 @@ } }, { - "id": 2302, + "id": 2304, "name": "skip_nonce_check", "variant": "declaration", "kind": 1024, @@ -74810,7 +76246,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1979, + "line": 1968, "character": 4 } ], @@ -74820,7 +76256,7 @@ } }, { - "id": 2304, + "id": 2306, "name": "token_url", "variant": "declaration", "kind": 1024, @@ -74838,7 +76274,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1983, + "line": 1972, "character": 4 } ], @@ -74848,7 +76284,7 @@ } }, { - "id": 2305, + "id": 2307, "name": "userinfo_url", "variant": "declaration", "kind": 1024, @@ -74866,7 +76302,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1985, + "line": 1974, "character": 4 } ], @@ -74880,15 +76316,15 @@ { "title": "Properties", "children": [ - 2293, 2296, 2297, 2303, 2291, 2292, 2301, 2299, 2298, 2289, 2300, 2306, - 2290, 2295, 2288, 2294, 2302, 2304, 2305 + 2295, 2298, 2299, 2305, 2293, 2294, 2303, 2301, 2300, 2291, 2302, 2308, + 2292, 2297, 2290, 2296, 2304, 2306, 2307 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1949, + "line": 1938, "character": 41 } ] @@ -74896,7 +76332,7 @@ } }, { - "id": 2196, + "id": 2198, "name": "CreateOAuthClientParams", "variant": "declaration", "kind": 2097152, @@ -74912,21 +76348,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1741, + "line": 1730, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2197, + "id": 2199, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2198, + "id": 2200, "name": "client_name", "variant": "declaration", "kind": 1024, @@ -74942,7 +76378,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1743, + "line": 1732, "character": 4 } ], @@ -74952,7 +76388,7 @@ } }, { - "id": 2199, + "id": 2201, "name": "client_uri", "variant": "declaration", "kind": 1024, @@ -74970,7 +76406,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1745, + "line": 1734, "character": 4 } ], @@ -74980,7 +76416,7 @@ } }, { - "id": 2201, + "id": 2203, "name": "grant_types", "variant": "declaration", "kind": 1024, @@ -74998,7 +76434,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1749, + "line": 1738, "character": 4 } ], @@ -75006,14 +76442,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2174, + "target": 2176, "name": "OAuthClientGrantType", "package": "@supabase/auth-js" } } }, { - "id": 2200, + "id": 2202, "name": "redirect_uris", "variant": "declaration", "kind": 1024, @@ -75029,7 +76465,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1747, + "line": 1736, "character": 4 } ], @@ -75042,7 +76478,7 @@ } }, { - "id": 2202, + "id": 2204, "name": "response_types", "variant": "declaration", "kind": 1024, @@ -75060,7 +76496,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1751, + "line": 1740, "character": 4 } ], @@ -75068,14 +76504,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2176, + "target": 2178, "name": "OAuthClientResponseType", "package": "@supabase/auth-js" } } }, { - "id": 2203, + "id": 2205, "name": "scope", "variant": "declaration", "kind": 1024, @@ -75093,7 +76529,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1753, + "line": 1742, "character": 4 } ], @@ -75103,7 +76539,7 @@ } }, { - "id": 2204, + "id": 2206, "name": "token_endpoint_auth_method", "variant": "declaration", "kind": 1024, @@ -75121,13 +76557,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1755, + "line": 1744, "character": 4 } ], "type": { "type": "reference", - "target": 2179, + "target": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "package": "@supabase/auth-js" } @@ -75136,13 +76572,13 @@ "groups": [ { "title": "Properties", - "children": [2198, 2199, 2201, 2200, 2202, 2203, 2204] + "children": [2200, 2201, 2203, 2202, 2204, 2205, 2206] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1741, + "line": 1730, "character": 38 } ] @@ -75150,7 +76586,7 @@ } }, { - "id": 2262, + "id": 2264, "name": "CustomOAuthProvider", "variant": "declaration", "kind": 2097152, @@ -75166,21 +76602,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1900, + "line": 1889, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2263, + "id": 2265, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2269, + "id": 2271, "name": "acceptable_client_ids", "variant": "declaration", "kind": 1024, @@ -75198,7 +76634,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1912, + "line": 1901, "character": 4 } ], @@ -75211,7 +76647,7 @@ } }, { - "id": 2272, + "id": 2274, "name": "attribute_mapping", "variant": "declaration", "kind": 1024, @@ -75229,7 +76665,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1918, + "line": 1907, "character": 4 } ], @@ -75254,7 +76690,7 @@ } }, { - "id": 2273, + "id": 2275, "name": "authorization_params", "variant": "declaration", "kind": 1024, @@ -75272,7 +76708,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1920, + "line": 1909, "character": 4 } ], @@ -75297,7 +76733,7 @@ } }, { - "id": 2279, + "id": 2281, "name": "authorization_url", "variant": "declaration", "kind": 1024, @@ -75315,7 +76751,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1932, + "line": 1921, "character": 4 } ], @@ -75325,7 +76761,7 @@ } }, { - "id": 2268, + "id": 2270, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -75341,7 +76777,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1910, + "line": 1899, "character": 4 } ], @@ -75351,7 +76787,7 @@ } }, { - "id": 2284, + "id": 2286, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -75367,7 +76803,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1942, + "line": 1931, "character": 4 } ], @@ -75377,7 +76813,7 @@ } }, { - "id": 2283, + "id": 2285, "name": "discovery_document", "variant": "declaration", "kind": 1024, @@ -75395,7 +76831,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1940, + "line": 1929, "character": 4 } ], @@ -75404,7 +76840,7 @@ "types": [ { "type": "reference", - "target": 2250, + "target": 2252, "name": "OIDCDiscoveryDocument", "package": "@supabase/auth-js" }, @@ -75416,7 +76852,7 @@ } }, { - "id": 2277, + "id": 2279, "name": "discovery_url", "variant": "declaration", "kind": 1024, @@ -75434,7 +76870,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1928, + "line": 1917, "character": 4 } ], @@ -75444,7 +76880,7 @@ } }, { - "id": 2275, + "id": 2277, "name": "email_optional", "variant": "declaration", "kind": 1024, @@ -75462,7 +76898,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1924, + "line": 1913, "character": 4 } ], @@ -75472,7 +76908,7 @@ } }, { - "id": 2274, + "id": 2276, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -75490,7 +76926,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1922, + "line": 1911, "character": 4 } ], @@ -75500,7 +76936,7 @@ } }, { - "id": 2264, + "id": 2266, "name": "id", "variant": "declaration", "kind": 1024, @@ -75516,7 +76952,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1902, + "line": 1891, "character": 4 } ], @@ -75526,7 +76962,7 @@ } }, { - "id": 2266, + "id": 2268, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -75550,7 +76986,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1906, + "line": 1895, "character": 4 } ], @@ -75560,7 +76996,7 @@ } }, { - "id": 2276, + "id": 2278, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -75578,7 +77014,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1926, + "line": 1915, "character": 4 } ], @@ -75588,7 +77024,7 @@ } }, { - "id": 2282, + "id": 2284, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -75606,7 +77042,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1938, + "line": 1927, "character": 4 } ], @@ -75616,7 +77052,7 @@ } }, { - "id": 2267, + "id": 2269, "name": "name", "variant": "declaration", "kind": 1024, @@ -75632,7 +77068,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1908, + "line": 1897, "character": 4 } ], @@ -75642,7 +77078,7 @@ } }, { - "id": 2271, + "id": 2273, "name": "pkce_enabled", "variant": "declaration", "kind": 1024, @@ -75660,7 +77096,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1916, + "line": 1905, "character": 4 } ], @@ -75670,7 +77106,7 @@ } }, { - "id": 2265, + "id": 2267, "name": "provider_type", "variant": "declaration", "kind": 1024, @@ -75686,19 +77122,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1904, + "line": 1893, "character": 4 } ], "type": { "type": "reference", - "target": 2249, + "target": 2251, "name": "CustomProviderType", "package": "@supabase/auth-js" } }, { - "id": 2270, + "id": 2272, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -75716,7 +77152,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1914, + "line": 1903, "character": 4 } ], @@ -75729,7 +77165,7 @@ } }, { - "id": 2278, + "id": 2280, "name": "skip_nonce_check", "variant": "declaration", "kind": 1024, @@ -75747,7 +77183,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1930, + "line": 1919, "character": 4 } ], @@ -75757,7 +77193,7 @@ } }, { - "id": 2280, + "id": 2282, "name": "token_url", "variant": "declaration", "kind": 1024, @@ -75775,7 +77211,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1934, + "line": 1923, "character": 4 } ], @@ -75785,7 +77221,7 @@ } }, { - "id": 2285, + "id": 2287, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -75801,7 +77237,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1944, + "line": 1933, "character": 4 } ], @@ -75811,7 +77247,7 @@ } }, { - "id": 2281, + "id": 2283, "name": "userinfo_url", "variant": "declaration", "kind": 1024, @@ -75829,7 +77265,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1936, + "line": 1925, "character": 4 } ], @@ -75843,15 +77279,15 @@ { "title": "Properties", "children": [ - 2269, 2272, 2273, 2279, 2268, 2284, 2283, 2277, 2275, 2274, 2264, 2266, - 2276, 2282, 2267, 2271, 2265, 2270, 2278, 2280, 2285, 2281 + 2271, 2274, 2275, 2281, 2270, 2286, 2285, 2279, 2277, 2276, 2266, 2268, + 2278, 2284, 2269, 2273, 2267, 2272, 2280, 2282, 2287, 2283 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1900, + "line": 1889, "character": 34 } ] @@ -75859,7 +77295,7 @@ } }, { - "id": 2330, + "id": 2332, "name": "CustomProviderListResponse", "variant": "declaration", "kind": 2097152, @@ -75875,7 +77311,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2044, + "line": 2033, "character": 12 } ], @@ -75885,14 +77321,14 @@ { "type": "reflection", "declaration": { - "id": 2331, + "id": 2333, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2332, + "id": 2334, "name": "data", "variant": "declaration", "kind": 1024, @@ -75900,21 +77336,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2045, + "line": 2034, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2333, + "id": 2335, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2334, + "id": 2336, "name": "providers", "variant": "declaration", "kind": 1024, @@ -75922,7 +77358,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2046, + "line": 2035, "character": 8 } ], @@ -75930,7 +77366,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2262, + "target": 2264, "name": "CustomOAuthProvider", "package": "@supabase/auth-js" } @@ -75940,13 +77376,13 @@ "groups": [ { "title": "Properties", - "children": [2334] + "children": [2336] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2045, + "line": 2034, "character": 10 } ] @@ -75954,7 +77390,7 @@ } }, { - "id": 2335, + "id": 2337, "name": "error", "variant": "declaration", "kind": 1024, @@ -75962,7 +77398,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2048, + "line": 2037, "character": 4 } ], @@ -75975,13 +77411,13 @@ "groups": [ { "title": "Properties", - "children": [2332, 2335] + "children": [2334, 2337] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2044, + "line": 2033, "character": 41 } ] @@ -75990,14 +77426,14 @@ { "type": "reflection", "declaration": { - "id": 2336, + "id": 2338, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2337, + "id": 2339, "name": "data", "variant": "declaration", "kind": 1024, @@ -76005,21 +77441,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2050, + "line": 2039, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2338, + "id": 2340, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2339, + "id": 2341, "name": "providers", "variant": "declaration", "kind": 1024, @@ -76027,7 +77463,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2051, + "line": 2040, "character": 8 } ], @@ -76039,13 +77475,13 @@ "groups": [ { "title": "Properties", - "children": [2339] + "children": [2341] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2050, + "line": 2039, "character": 10 } ] @@ -76053,7 +77489,7 @@ } }, { - "id": 2340, + "id": 2342, "name": "error", "variant": "declaration", "kind": 1024, @@ -76061,13 +77497,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2053, + "line": 2042, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -76076,13 +77512,13 @@ "groups": [ { "title": "Properties", - "children": [2337, 2340] + "children": [2339, 2342] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2049, + "line": 2038, "character": 4 } ] @@ -76092,7 +77528,7 @@ } }, { - "id": 2329, + "id": 2331, "name": "CustomProviderResponse", "variant": "declaration", "kind": 2097152, @@ -76108,17 +77544,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2040, + "line": 2029, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2262, + "target": 2264, "name": "CustomOAuthProvider", "package": "@supabase/auth-js" } @@ -76128,7 +77564,7 @@ } }, { - "id": 2249, + "id": 2251, "name": "CustomProviderType", "variant": "declaration", "kind": 2097152, @@ -76144,7 +77580,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1869, + "line": 1858, "character": 12 } ], @@ -76191,9 +77627,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 313, + "line": 320, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L313" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L320" } ], "typeParameters": [ @@ -76229,7 +77665,7 @@ } }, { - "id": 1906, + "id": 1908, "name": "EmailOtpType", "variant": "declaration", "kind": 2097152, @@ -76237,7 +77673,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 704, + "line": 693, "character": 12 } ], @@ -76278,7 +77714,7 @@ { "type": "reflection", "declaration": { - "id": 1907, + "id": 1909, "name": "__type", "variant": "declaration", "kind": 65536, @@ -76286,7 +77722,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 704, + "line": 693, "character": 113 } ] @@ -76298,7 +77734,7 @@ } }, { - "id": 1865, + "id": 1867, "name": "EthereumWallet", "variant": "declaration", "kind": 2097152, @@ -76306,7 +77742,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 635, + "line": 624, "character": 12 } ], @@ -76321,7 +77757,7 @@ } }, { - "id": 1866, + "id": 1868, "name": "EthereumWeb3Credentials", "variant": "declaration", "kind": 2097152, @@ -76329,7 +77765,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 636, + "line": 625, "character": 12 } ], @@ -76339,14 +77775,14 @@ { "type": "reflection", "declaration": { - "id": 1867, + "id": 1869, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1868, + "id": 1870, "name": "chain", "variant": "declaration", "kind": 1024, @@ -76354,7 +77790,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 637, + "line": 626, "character": 4 } ], @@ -76364,7 +77800,7 @@ } }, { - "id": 1871, + "id": 1873, "name": "options", "variant": "declaration", "kind": 1024, @@ -76374,21 +77810,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 642, + "line": 631, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1872, + "id": 1874, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1874, + "id": 1876, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -76406,7 +77842,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 646, + "line": 635, "character": 8 } ], @@ -76416,7 +77852,7 @@ } }, { - "id": 1875, + "id": 1877, "name": "signInWithEthereum", "variant": "declaration", "kind": 1024, @@ -76426,7 +77862,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 647, + "line": 636, "character": 8 } ], @@ -76484,7 +77920,7 @@ } }, { - "id": 1873, + "id": 1875, "name": "url", "variant": "declaration", "kind": 1024, @@ -76502,7 +77938,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 644, + "line": 633, "character": 8 } ], @@ -76515,13 +77951,13 @@ "groups": [ { "title": "Properties", - "children": [1874, 1875, 1873] + "children": [1876, 1877, 1875] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 642, + "line": 631, "character": 14 } ] @@ -76529,7 +77965,7 @@ } }, { - "id": 1870, + "id": 1872, "name": "statement", "variant": "declaration", "kind": 1024, @@ -76547,7 +77983,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 641, + "line": 630, "character": 4 } ], @@ -76557,7 +77993,7 @@ } }, { - "id": 1869, + "id": 1871, "name": "wallet", "variant": "declaration", "kind": 1024, @@ -76583,13 +78019,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 639, + "line": 628, "character": 4 } ], "type": { "type": "reference", - "target": 1865, + "target": 1867, "name": "EthereumWallet", "package": "@supabase/auth-js" } @@ -76598,13 +78034,13 @@ "groups": [ { "title": "Properties", - "children": [1868, 1871, 1870, 1869] + "children": [1870, 1873, 1872, 1871] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 636, + "line": 625, "character": 38 } ] @@ -76613,14 +78049,14 @@ { "type": "reflection", "declaration": { - "id": 1876, + "id": 1878, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1877, + "id": 1879, "name": "chain", "variant": "declaration", "kind": 1024, @@ -76628,7 +78064,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 650, + "line": 639, "character": 4 } ], @@ -76638,7 +78074,7 @@ } }, { - "id": 1878, + "id": 1880, "name": "message", "variant": "declaration", "kind": 1024, @@ -76678,7 +78114,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 652, + "line": 641, "character": 4 } ], @@ -76688,7 +78124,7 @@ } }, { - "id": 1880, + "id": 1882, "name": "options", "variant": "declaration", "kind": 1024, @@ -76698,21 +78134,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 655, + "line": 644, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1881, + "id": 1883, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1882, + "id": 1884, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -76730,7 +78166,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 657, + "line": 646, "character": 8 } ], @@ -76743,13 +78179,13 @@ "groups": [ { "title": "Properties", - "children": [1882] + "children": [1884] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 655, + "line": 644, "character": 14 } ] @@ -76757,7 +78193,7 @@ } }, { - "id": 1879, + "id": 1881, "name": "signature", "variant": "declaration", "kind": 1024, @@ -76773,7 +78209,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 654, + "line": 643, "character": 4 } ], @@ -76791,13 +78227,13 @@ "groups": [ { "title": "Properties", - "children": [1877, 1878, 1880, 1879] + "children": [1879, 1880, 1882, 1881] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 649, + "line": 638, "character": 4 } ] @@ -76807,7 +78243,7 @@ } }, { - "id": 1630, + "id": 1632, "name": "ExperimentalFeatureFlags", "variant": "declaration", "kind": 2097152, @@ -76815,21 +78251,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 137, + "line": 126, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1631, + "id": 1633, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1632, + "id": 1634, "name": "passkey", "variant": "declaration", "kind": 1024, @@ -76887,7 +78323,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 147, + "line": 136, "character": 4 } ], @@ -76900,13 +78336,13 @@ "groups": [ { "title": "Properties", - "children": [1632] + "children": [1634] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 137, + "line": 126, "character": 39 } ] @@ -76914,7 +78350,7 @@ } }, { - "id": 1721, + "id": 1723, "name": "Factor", "variant": "declaration", "kind": 2097152, @@ -76938,7 +78374,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#enroll", - "target": 2024 + "target": 2026 }, { "kind": "text", @@ -76952,7 +78388,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#listFactors", - "target": 2075 + "target": 2077 }, { "kind": "text", @@ -76978,32 +78414,32 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 329, + "line": 318, "character": 12 } ], "typeParameters": [ { - "id": 1730, + "id": 1732, "name": "Type", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1720, + "target": 1722, "name": "FactorType", "package": "@supabase/auth-js" }, "default": { "type": "reference", - "target": 1720, + "target": 1722, "name": "FactorType", "package": "@supabase/auth-js" } }, { - "id": 1731, + "id": 1733, "name": "Status", "variant": "typeParam", "kind": 131072, @@ -77042,14 +78478,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1722, + "id": 1724, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1727, + "id": 1729, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -77057,7 +78493,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 342, + "line": 331, "character": 4 } ], @@ -77067,7 +78503,7 @@ } }, { - "id": 1725, + "id": 1727, "name": "factor_type", "variant": "declaration", "kind": 1024, @@ -77099,20 +78535,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 337, + "line": 326, "character": 4 } ], "type": { "type": "reference", - "target": 1730, + "target": 1732, "name": "Type", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1724, + "id": 1726, "name": "friendly_name", "variant": "declaration", "kind": 1024, @@ -77130,7 +78566,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 333, + "line": 322, "character": 4 } ], @@ -77140,7 +78576,7 @@ } }, { - "id": 1723, + "id": 1725, "name": "id", "variant": "declaration", "kind": 1024, @@ -77156,7 +78592,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 331, + "line": 320, "character": 4 } ], @@ -77166,7 +78602,7 @@ } }, { - "id": 1729, + "id": 1731, "name": "last_challenged_at", "variant": "declaration", "kind": 1024, @@ -77176,7 +78612,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 344, + "line": 333, "character": 4 } ], @@ -77186,7 +78622,7 @@ } }, { - "id": 1726, + "id": 1728, "name": "status", "variant": "declaration", "kind": 1024, @@ -77230,20 +78666,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 341, + "line": 330, "character": 4 } ], "type": { "type": "reference", - "target": 1731, + "target": 1733, "name": "Status", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1728, + "id": 1730, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -77251,7 +78687,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 343, + "line": 332, "character": 4 } ], @@ -77264,13 +78700,13 @@ "groups": [ { "title": "Properties", - "children": [1727, 1725, 1724, 1723, 1729, 1726, 1728] + "children": [1729, 1727, 1726, 1725, 1731, 1728, 1730] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 329, + "line": 318, "character": 146 } ] @@ -77278,7 +78714,7 @@ } }, { - "id": 1720, + "id": 1722, "name": "FactorType", "variant": "declaration", "kind": 2097152, @@ -77310,7 +78746,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 316, + "line": 305, "character": 12 } ], @@ -77697,7 +79133,7 @@ } }, { - "id": 1953, + "id": 1955, "name": "GenerateEmailChangeLinkParams", "variant": "declaration", "kind": 2097152, @@ -77705,21 +79141,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 771, + "line": 760, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1954, + "id": 1956, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1956, + "id": 1958, "name": "email", "variant": "declaration", "kind": 1024, @@ -77735,7 +79171,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 774, + "line": 763, "character": 4 } ], @@ -77745,7 +79181,7 @@ } }, { - "id": 1957, + "id": 1959, "name": "newEmail", "variant": "declaration", "kind": 1024, @@ -77761,7 +79197,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 778, + "line": 767, "character": 4 } ], @@ -77771,7 +79207,7 @@ } }, { - "id": 1958, + "id": 1960, "name": "options", "variant": "declaration", "kind": 1024, @@ -77781,7 +79217,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 779, + "line": 768, "character": 4 } ], @@ -77794,7 +79230,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -77808,7 +79244,7 @@ } }, { - "id": 1955, + "id": 1957, "name": "type", "variant": "declaration", "kind": 1024, @@ -77816,7 +79252,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 772, + "line": 761, "character": 4 } ], @@ -77838,13 +79274,13 @@ "groups": [ { "title": "Properties", - "children": [1956, 1957, 1958, 1955] + "children": [1958, 1959, 1960, 1957] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 771, + "line": 760, "character": 44 } ] @@ -77852,7 +79288,7 @@ } }, { - "id": 1943, + "id": 1945, "name": "GenerateInviteOrMagiclinkParams", "variant": "declaration", "kind": 2097152, @@ -77860,21 +79296,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 759, + "line": 748, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1944, + "id": 1946, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1946, + "id": 1948, "name": "email", "variant": "declaration", "kind": 1024, @@ -77890,7 +79326,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 762, + "line": 751, "character": 4 } ], @@ -77900,7 +79336,7 @@ } }, { - "id": 1947, + "id": 1949, "name": "options", "variant": "declaration", "kind": 1024, @@ -77910,7 +79346,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 763, + "line": 752, "character": 4 } ], @@ -77923,7 +79359,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -77946,7 +79382,7 @@ } }, { - "id": 1945, + "id": 1947, "name": "type", "variant": "declaration", "kind": 1024, @@ -77954,7 +79390,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 760, + "line": 749, "character": 4 } ], @@ -77976,13 +79412,13 @@ "groups": [ { "title": "Properties", - "children": [1946, 1947, 1945] + "children": [1948, 1949, 1947] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 759, + "line": 748, "character": 46 } ] @@ -77990,7 +79426,7 @@ } }, { - "id": 1962, + "id": 1964, "name": "GenerateLinkParams", "variant": "declaration", "kind": 2097152, @@ -77998,7 +79434,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 791, + "line": 780, "character": 12 } ], @@ -78007,25 +79443,25 @@ "types": [ { "type": "reference", - "target": 1937, + "target": 1939, "name": "GenerateSignupLinkParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1943, + "target": 1945, "name": "GenerateInviteOrMagiclinkParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1948, + "target": 1950, "name": "GenerateRecoveryLinkParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1953, + "target": 1955, "name": "GenerateEmailChangeLinkParams", "package": "@supabase/auth-js" } @@ -78033,7 +79469,7 @@ } }, { - "id": 1967, + "id": 1969, "name": "GenerateLinkProperties", "variant": "declaration", "kind": 2097152, @@ -78049,21 +79485,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 797, + "line": 786, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1968, + "id": 1970, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1969, + "id": 1971, "name": "action_link", "variant": "declaration", "kind": 1024, @@ -78079,7 +79515,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 802, + "line": 791, "character": 4 } ], @@ -78089,7 +79525,7 @@ } }, { - "id": 1970, + "id": 1972, "name": "email_otp", "variant": "declaration", "kind": 1024, @@ -78105,7 +79541,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 807, + "line": 796, "character": 4 } ], @@ -78115,7 +79551,7 @@ } }, { - "id": 1971, + "id": 1973, "name": "hashed_token", "variant": "declaration", "kind": 1024, @@ -78131,7 +79567,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 811, + "line": 800, "character": 4 } ], @@ -78141,7 +79577,7 @@ } }, { - "id": 1972, + "id": 1974, "name": "redirect_to", "variant": "declaration", "kind": 1024, @@ -78157,7 +79593,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 813, + "line": 802, "character": 4 } ], @@ -78167,7 +79603,7 @@ } }, { - "id": 1973, + "id": 1975, "name": "verification_type", "variant": "declaration", "kind": 1024, @@ -78183,13 +79619,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 815, + "line": 804, "character": 4 } ], "type": { "type": "reference", - "target": 1974, + "target": 1976, "name": "GenerateLinkType", "package": "@supabase/auth-js" } @@ -78198,13 +79634,13 @@ "groups": [ { "title": "Properties", - "children": [1969, 1970, 1971, 1972, 1973] + "children": [1971, 1972, 1973, 1974, 1975] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 797, + "line": 786, "character": 37 } ] @@ -78212,7 +79648,7 @@ } }, { - "id": 1963, + "id": 1965, "name": "GenerateLinkResponse", "variant": "declaration", "kind": 2097152, @@ -78220,25 +79656,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 792, + "line": 781, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1964, + "id": 1966, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1965, + "id": 1967, "name": "properties", "variant": "declaration", "kind": 1024, @@ -78246,19 +79682,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 793, + "line": 782, "character": 4 } ], "type": { "type": "reference", - "target": 1967, + "target": 1969, "name": "GenerateLinkProperties", "package": "@supabase/auth-js" } }, { - "id": 1966, + "id": 1968, "name": "user", "variant": "declaration", "kind": 1024, @@ -78266,7 +79702,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 794, + "line": 783, "character": 4 } ], @@ -78281,13 +79717,13 @@ "groups": [ { "title": "Properties", - "children": [1965, 1966] + "children": [1967, 1968] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 792, + "line": 781, "character": 64 } ] @@ -78299,7 +79735,7 @@ } }, { - "id": 1974, + "id": 1976, "name": "GenerateLinkType", "variant": "declaration", "kind": 2097152, @@ -78307,7 +79743,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 817, + "line": 806, "character": 12 } ], @@ -78342,7 +79778,7 @@ } }, { - "id": 1948, + "id": 1950, "name": "GenerateRecoveryLinkParams", "variant": "declaration", "kind": 2097152, @@ -78350,21 +79786,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 765, + "line": 754, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1949, + "id": 1951, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1951, + "id": 1953, "name": "email", "variant": "declaration", "kind": 1024, @@ -78380,7 +79816,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 768, + "line": 757, "character": 4 } ], @@ -78390,7 +79826,7 @@ } }, { - "id": 1952, + "id": 1954, "name": "options", "variant": "declaration", "kind": 1024, @@ -78400,7 +79836,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 769, + "line": 758, "character": 4 } ], @@ -78413,7 +79849,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -78427,7 +79863,7 @@ } }, { - "id": 1950, + "id": 1952, "name": "type", "variant": "declaration", "kind": 1024, @@ -78435,7 +79871,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 766, + "line": 755, "character": 4 } ], @@ -78448,13 +79884,13 @@ "groups": [ { "title": "Properties", - "children": [1951, 1952, 1950] + "children": [1953, 1954, 1952] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 765, + "line": 754, "character": 41 } ] @@ -78462,7 +79898,7 @@ } }, { - "id": 1937, + "id": 1939, "name": "GenerateSignupLinkParams", "variant": "declaration", "kind": 2097152, @@ -78470,21 +79906,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 753, + "line": 742, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1938, + "id": 1940, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1940, + "id": 1942, "name": "email", "variant": "declaration", "kind": 1024, @@ -78492,7 +79928,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 755, + "line": 744, "character": 4 } ], @@ -78502,7 +79938,7 @@ } }, { - "id": 1942, + "id": 1944, "name": "options", "variant": "declaration", "kind": 1024, @@ -78512,7 +79948,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 757, + "line": 746, "character": 4 } ], @@ -78525,7 +79961,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -78548,7 +79984,7 @@ } }, { - "id": 1941, + "id": 1943, "name": "password", "variant": "declaration", "kind": 1024, @@ -78556,7 +79992,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 756, + "line": 745, "character": 4 } ], @@ -78566,7 +80002,7 @@ } }, { - "id": 1939, + "id": 1941, "name": "type", "variant": "declaration", "kind": 1024, @@ -78574,7 +80010,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 754, + "line": 743, "character": 4 } ], @@ -78587,13 +80023,13 @@ "groups": [ { "title": "Properties", - "children": [1940, 1942, 1941, 1939] + "children": [1942, 1944, 1943, 1941] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 753, + "line": 742, "character": 39 } ] @@ -78601,7 +80037,7 @@ } }, { - "id": 1597, + "id": 1599, "name": "GoTrueClientOptions", "variant": "declaration", "kind": 2097152, @@ -78616,14 +80052,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1598, + "id": 1600, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1613, + "id": 1615, "name": "autoRefreshToken", "variant": "declaration", "kind": 1024, @@ -78643,7 +80079,7 @@ } }, { - "id": 1619, + "id": 1621, "name": "debug", "variant": "declaration", "kind": 1024, @@ -78667,7 +80103,7 @@ { "type": "reflection", "declaration": { - "id": 1620, + "id": 1622, "name": "__type", "variant": "declaration", "kind": 65536, @@ -78681,14 +80117,14 @@ ], "signatures": [ { - "id": 1621, + "id": 1623, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1622, + "id": 1624, "name": "message", "variant": "param", "kind": 32768, @@ -78699,7 +80135,7 @@ } }, { - "id": 1623, + "id": 1625, "name": "args", "variant": "param", "kind": 32768, @@ -78727,7 +80163,7 @@ } }, { - "id": 1605, + "id": 1607, "name": "detectSessionInUrl", "variant": "declaration", "kind": 1024, @@ -78770,7 +80206,7 @@ { "type": "reflection", "declaration": { - "id": 1606, + "id": 1608, "name": "__type", "variant": "declaration", "kind": 65536, @@ -78784,14 +80220,14 @@ ], "signatures": [ { - "id": 1607, + "id": 1609, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1608, + "id": 1610, "name": "url", "variant": "param", "kind": 32768, @@ -78807,7 +80243,7 @@ } }, { - "id": 1609, + "id": 1611, "name": "params", "variant": "param", "kind": 32768, @@ -78815,7 +80251,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1610, + "id": 1612, "name": "__type", "variant": "declaration", "kind": 65536, @@ -78829,7 +80265,7 @@ ], "indexSignatures": [ { - "id": 1611, + "id": 1613, "name": "__index", "variant": "signature", "kind": 8192, @@ -78843,7 +80279,7 @@ ], "parameters": [ { - "id": 1612, + "id": 1614, "name": "parameter", "variant": "param", "kind": 32768, @@ -78876,7 +80312,7 @@ } }, { - "id": 1629, + "id": 1631, "name": "experimental", "variant": "declaration", "kind": 1024, @@ -78895,19 +80331,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 135, + "line": 124, "character": 4 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } }, { - "id": 1617, + "id": 1619, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -78932,7 +80368,7 @@ } }, { - "id": 1618, + "id": 1620, "name": "flowType", "variant": "declaration", "kind": 1024, @@ -78948,13 +80384,13 @@ ], "type": { "type": "reference", - "target": 1808, + "target": 1810, "name": "AuthFlowType", "package": "@supabase/auth-js" } }, { - "id": 1625, + "id": 1627, "name": "hasCustomAuthorizationHeader", "variant": "declaration", "kind": 1024, @@ -78973,7 +80409,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 88, + "line": 93, "character": 4 } ], @@ -78983,7 +80419,7 @@ } }, { - "id": 1600, + "id": 1602, "name": "headers", "variant": "declaration", "kind": 1024, @@ -79000,7 +80436,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1601, + "id": 1603, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79014,7 +80450,7 @@ ], "indexSignatures": [ { - "id": 1602, + "id": 1604, "name": "__index", "variant": "signature", "kind": 8192, @@ -79028,7 +80464,7 @@ ], "parameters": [ { - "id": 1603, + "id": 1605, "name": "key", "variant": "param", "kind": 32768, @@ -79049,7 +80485,7 @@ } }, { - "id": 1624, + "id": 1626, "name": "lock", "variant": "declaration", "kind": 1024, @@ -79060,43 +80496,53 @@ "summary": [ { "kind": "text", - "text": "Provide your own locking mechanism based on the environment. By default,\n" + "text": "Provide your own locking mechanism based on the environment. By default\nthe client coordinates refreshes itself (single-flight via\n" }, { "kind": "code", - "text": "`navigatorLock`" + "text": "`refreshingDeferred`" }, { "kind": "text", - "text": " (Web Locks API) is used in browser environments when\n" + "text": " + commit guard) and relies on the GoTrue server to\nresolve cross-tab refresh races. Passing a custom lock opts into a\nlegacy path that wraps every auth operation in your supplied lock — this\npath is preserved for backwards compatibility (typically React Native\n" }, { "kind": "code", - "text": "`persistSession`" + "text": "`processLock`" }, { "kind": "text", - "text": " is true. Falls back to an in-process lock for non-browser\nenvironments (e.g. React Native)." + "text": " or Node multi-process setups)." } ], - "modifierTags": ["@experimental"] + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Custom locks still work in v2.x for backwards compatibility.\nThe legacy lock path will be removed in v3 — drop this option from your\nconstructor options before upgrading." + } + ] + } + ] }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 83, + "line": 88, "character": 4 } ], "type": { "type": "reference", - "target": 1588, + "target": 1590, "name": "LockFunc", "package": "@supabase/auth-js" } }, { - "id": 1627, + "id": 1629, "name": "lockAcquireTimeout", "variant": "declaration", "kind": 1024, @@ -79107,23 +80553,23 @@ "summary": [ { "kind": "text", - "text": "The maximum time in milliseconds to wait for acquiring a cross-tab synchronization lock.\n\nWhen multiple browser tabs or windows use the auth client simultaneously, they coordinate\nvia the Web Locks API to prevent race conditions during session refresh and other operations.\nThis timeout controls how long to wait before attempting lock recovery.\n\n- **Positive value**: Wait up to this many milliseconds. If the lock is still held, attempt\n automatic recovery by stealing it (the previous holder is evicted, its callback continues\n to completion without exclusive access). This recovers from orphaned locks caused by\n React Strict Mode double-mount, storage API hangs, or aborted operations.\n- **Zero (0)**: Fail immediately if the lock is unavailable; throws " + "text": "The maximum time in milliseconds to wait for acquiring the custom lock\nsupplied via the " }, { "kind": "code", - "text": "`LockAcquireTimeoutError`" + "text": "`lock`" }, { "kind": "text", - "text": "\n (check " + "text": " option. Only consulted when a custom " }, { "kind": "code", - "text": "`error.isAcquireTimeout === true`" + "text": "`lock`" }, { "kind": "text", - "text": ").\n- **Negative value**: Wait indefinitely — can cause permanent deadlocks if the lock is orphaned." + "text": " is\npassed — the default lockless path doesn't use this timeout." } ], "blockTags": [ @@ -79137,11 +80583,19 @@ ] }, { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "Only used by the legacy lock path. Will be removed in v3\nalong with the " + }, { "kind": "code", - "text": "```ts\nconst client = createClient(url, key, {\n auth: {\n lockAcquireTimeout: 5000, // 5 seconds, then steal orphaned lock\n },\n})\n```" + "text": "`lock`" + }, + { + "kind": "text", + "text": " option." } ] } @@ -79150,7 +80604,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 120, + "line": 109, "character": 4 } ], @@ -79160,7 +80614,7 @@ } }, { - "id": 1614, + "id": 1616, "name": "persistSession", "variant": "declaration", "kind": 1024, @@ -79180,7 +80634,7 @@ } }, { - "id": 1628, + "id": 1630, "name": "skipAutoInitialize", "variant": "declaration", "kind": 1024, @@ -79209,7 +80663,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 128, + "line": 117, "character": 4 } ], @@ -79219,7 +80673,7 @@ } }, { - "id": 1615, + "id": 1617, "name": "storage", "variant": "declaration", "kind": 1024, @@ -79235,13 +80689,13 @@ ], "type": { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } }, { - "id": 1604, + "id": 1606, "name": "storageKey", "variant": "declaration", "kind": 1024, @@ -79261,7 +80715,7 @@ } }, { - "id": 1626, + "id": 1628, "name": "throwOnError", "variant": "declaration", "kind": 1024, @@ -79279,7 +80733,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 93, + "line": 98, "character": 4 } ], @@ -79289,7 +80743,7 @@ } }, { - "id": 1599, + "id": 1601, "name": "url", "variant": "declaration", "kind": 1024, @@ -79309,7 +80763,7 @@ } }, { - "id": 1616, + "id": 1618, "name": "userStorage", "variant": "declaration", "kind": 1024, @@ -79374,7 +80828,7 @@ ], "type": { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } @@ -79384,8 +80838,8 @@ { "title": "Properties", "children": [ - 1613, 1619, 1605, 1629, 1617, 1618, 1625, 1600, 1624, 1627, 1614, 1628, - 1615, 1604, 1626, 1599, 1616 + 1615, 1621, 1607, 1631, 1619, 1620, 1627, 1602, 1626, 1629, 1616, 1630, + 1617, 1606, 1628, 1601, 1618 ] } ], @@ -79400,7 +80854,7 @@ } }, { - "id": 2104, + "id": 2106, "name": "InitializeResult", "variant": "declaration", "kind": 2097152, @@ -79408,21 +80862,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1539, + "line": 1528, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2105, + "id": 2107, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2106, + "id": 2108, "name": "error", "variant": "declaration", "kind": 1024, @@ -79430,7 +80884,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1540, + "line": 1529, "character": 4 } ], @@ -79439,7 +80893,7 @@ "types": [ { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -79454,13 +80908,13 @@ "groups": [ { "title": "Properties", - "children": [2106] + "children": [2108] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1539, + "line": 1528, "character": 31 } ] @@ -79468,7 +80922,7 @@ } }, { - "id": 2128, + "id": 2130, "name": "JwtHeader", "variant": "declaration", "kind": 2097152, @@ -79476,21 +80930,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1628, + "line": 1617, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2129, + "id": 2131, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2130, + "id": 2132, "name": "alg", "variant": "declaration", "kind": 1024, @@ -79498,7 +80952,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1629, + "line": 1618, "character": 4 } ], @@ -79527,7 +80981,7 @@ { "type": "reflection", "declaration": { - "id": 2131, + "id": 2133, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79535,7 +80989,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1629, + "line": 1618, "character": 49 } ] @@ -79547,7 +81001,7 @@ } }, { - "id": 2132, + "id": 2134, "name": "kid", "variant": "declaration", "kind": 1024, @@ -79555,7 +81009,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1630, + "line": 1619, "character": 4 } ], @@ -79565,7 +81019,7 @@ } }, { - "id": 2133, + "id": 2135, "name": "typ", "variant": "declaration", "kind": 1024, @@ -79573,7 +81027,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1631, + "line": 1620, "character": 4 } ], @@ -79586,13 +81040,13 @@ "groups": [ { "title": "Properties", - "children": [2130, 2132, 2133] + "children": [2132, 2134, 2135] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1628, + "line": 1617, "character": 24 } ] @@ -79600,7 +81054,7 @@ } }, { - "id": 2326, + "id": 2328, "name": "ListCustomProvidersParams", "variant": "declaration", "kind": 2097152, @@ -79616,21 +81070,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2033, + "line": 2022, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2327, + "id": 2329, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2328, + "id": 2330, "name": "type", "variant": "declaration", "kind": 1024, @@ -79648,13 +81102,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2035, + "line": 2024, "character": 4 } ], "type": { "type": "reference", - "target": 2249, + "target": 2251, "name": "CustomProviderType", "package": "@supabase/auth-js" } @@ -79663,13 +81117,13 @@ "groups": [ { "title": "Properties", - "children": [2328] + "children": [2330] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2033, + "line": 2022, "character": 40 } ] @@ -79677,7 +81131,7 @@ } }, { - "id": 1588, + "id": 1590, "name": "LockFunc", "variant": "declaration", "kind": 2097152, @@ -79709,7 +81163,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1589, + "id": 1591, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79723,14 +81177,14 @@ ], "signatures": [ { - "id": 1590, + "id": 1592, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 1596, + "id": 1598, "name": "R", "variant": "typeParam", "kind": 131072, @@ -79739,7 +81193,7 @@ ], "parameters": [ { - "id": 1591, + "id": 1593, "name": "name", "variant": "param", "kind": 32768, @@ -79758,7 +81212,7 @@ } }, { - "id": 1592, + "id": 1594, "name": "acquireTimeout", "variant": "param", "kind": 32768, @@ -79785,7 +81239,7 @@ } }, { - "id": 1593, + "id": 1595, "name": "fn", "variant": "param", "kind": 32768, @@ -79801,7 +81255,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1594, + "id": 1596, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79815,7 +81269,7 @@ ], "signatures": [ { - "id": 1595, + "id": 1597, "name": "__type", "variant": "signature", "kind": 4096, @@ -79829,7 +81283,7 @@ "typeArguments": [ { "type": "reference", - "target": 1596, + "target": 1598, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -79853,7 +81307,7 @@ "typeArguments": [ { "type": "reference", - "target": 1596, + "target": 1598, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -79868,7 +81322,7 @@ } }, { - "id": 1993, + "id": 1995, "name": "MFAChallengeAndVerifyParams", "variant": "declaration", "kind": 2097152, @@ -79876,7 +81330,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 895, + "line": 884, "character": 12 } ], @@ -79891,7 +81345,7 @@ } }, { - "id": 1992, + "id": 1994, "name": "MFAChallengeParams", "variant": "declaration", "kind": 2097152, @@ -79899,7 +81353,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 891, + "line": 880, "character": 12 } ], @@ -79908,19 +81362,19 @@ "types": [ { "type": "reference", - "target": 1989, + "target": 1991, "name": "MFAChallengeTOTPParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1990, + "target": 1992, "name": "MFAChallengePhoneParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1991, + "target": 1993, "name": "MFAChallengeWebauthnParams", "package": "@supabase/auth-js" } @@ -79928,7 +81382,7 @@ } }, { - "id": 1990, + "id": 1992, "name": "MFAChallengePhoneParams", "variant": "declaration", "kind": 2097152, @@ -79936,7 +81390,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 875, + "line": 864, "character": 12 } ], @@ -79965,7 +81419,7 @@ } }, { - "id": 1989, + "id": 1991, "name": "MFAChallengeTOTPParams", "variant": "declaration", "kind": 2097152, @@ -79973,7 +81427,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 870, + "line": 859, "character": 12 } ], @@ -79988,7 +81442,7 @@ } }, { - "id": 1991, + "id": 1993, "name": "MFAChallengeWebauthnParams", "variant": "declaration", "kind": 2097152, @@ -80017,7 +81471,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 890, + "line": 879, "character": 12 } ], @@ -80046,7 +81500,7 @@ } }, { - "id": 1975, + "id": 1977, "name": "MFAEnrollParams", "variant": "declaration", "kind": 2097152, @@ -80054,7 +81508,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 818, + "line": 807, "character": 12 } ], @@ -80063,19 +81517,19 @@ "types": [ { "type": "reference", - "target": 2122, + "target": 2124, "name": "MFAEnrollTOTPParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2123, + "target": 2125, "name": "MFAEnrollPhoneParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2124, + "target": 2126, "name": "MFAEnrollWebauthnParams", "package": "@supabase/auth-js" } @@ -80083,7 +81537,7 @@ } }, { - "id": 2123, + "id": 2125, "name": "MFAEnrollPhoneParams", "variant": "declaration", "kind": 2097152, @@ -80091,7 +81545,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1583, + "line": 1572, "character": 12 } ], @@ -80126,7 +81580,7 @@ } }, { - "id": 2122, + "id": 2124, "name": "MFAEnrollTOTPParams", "variant": "declaration", "kind": 2097152, @@ -80134,7 +81588,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1578, + "line": 1567, "character": 12 } ], @@ -80169,7 +81623,7 @@ } }, { - "id": 2124, + "id": 2126, "name": "MFAEnrollWebauthnParams", "variant": "declaration", "kind": 2097152, @@ -80198,7 +81652,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1590, + "line": 1579, "character": 12 } ], @@ -80233,7 +81687,7 @@ } }, { - "id": 1988, + "id": 1990, "name": "MFATOTPChannel", "variant": "declaration", "kind": 2097152, @@ -80241,7 +81695,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 869, + "line": 858, "character": 12 } ], @@ -80267,7 +81721,7 @@ } }, { - "id": 1976, + "id": 1978, "name": "MFAUnenrollParams", "variant": "declaration", "kind": 2097152, @@ -80275,21 +81729,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 819, + "line": 808, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1977, + "id": 1979, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1978, + "id": 1980, "name": "factorId", "variant": "declaration", "kind": 1024, @@ -80305,7 +81759,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 821, + "line": 810, "character": 4 } ], @@ -80318,13 +81772,13 @@ "groups": [ { "title": "Properties", - "children": [1978] + "children": [1980] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 819, + "line": 808, "character": 32 } ] @@ -80332,7 +81786,7 @@ } }, { - "id": 1987, + "id": 1989, "name": "MFAVerifyParams", "variant": "declaration", "kind": 2097152, @@ -80340,7 +81794,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 863, + "line": 852, "character": 12 } ], @@ -80349,19 +81803,19 @@ "types": [ { "type": "reference", - "target": 1979, + "target": 1981, "name": "MFAVerifyTOTPParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1980, + "target": 1982, "name": "MFAVerifyPhoneParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1985, + "target": 1987, "name": "MFAVerifyWebauthnParams", "package": "@supabase/auth-js" } @@ -80369,7 +81823,7 @@ } }, { - "id": 1980, + "id": 1982, "name": "MFAVerifyPhoneParams", "variant": "declaration", "kind": 2097152, @@ -80377,7 +81831,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 835, + "line": 824, "character": 12 } ], @@ -80406,7 +81860,7 @@ } }, { - "id": 1979, + "id": 1981, "name": "MFAVerifyTOTPParams", "variant": "declaration", "kind": 2097152, @@ -80414,7 +81868,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 833, + "line": 822, "character": 12 } ], @@ -80443,7 +81897,7 @@ } }, { - "id": 1981, + "id": 1983, "name": "MFAVerifyWebauthnParamFields", "variant": "declaration", "kind": 2097152, @@ -80459,13 +81913,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 853, + "line": 842, "character": 12 } ], "typeParameters": [ { - "id": 1984, + "id": 1986, "name": "T", "variant": "typeParam", "kind": 131072, @@ -80509,14 +81963,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1982, + "id": 1984, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1983, + "id": 1985, "name": "webauthn", "variant": "declaration", "kind": 1024, @@ -80524,7 +81978,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 854, + "line": 843, "character": 4 } ], @@ -80549,7 +82003,7 @@ "typeArguments": [ { "type": "reference", - "target": 1984, + "target": 1986, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -80565,13 +82019,13 @@ "groups": [ { "title": "Properties", - "children": [1983] + "children": [1985] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 853, + "line": 842, "character": 98 } ] @@ -80579,7 +82033,7 @@ } }, { - "id": 1985, + "id": 1987, "name": "MFAVerifyWebauthnParams", "variant": "declaration", "kind": 2097152, @@ -80608,13 +82062,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 862, + "line": 851, "character": 12 } ], "typeParameters": [ { - "id": 1986, + "id": 1988, "name": "T", "variant": "typeParam", "kind": 131072, @@ -80669,11 +82123,11 @@ }, { "type": "reference", - "target": 1981, + "target": 1983, "typeArguments": [ { "type": "reference", - "target": 1986, + "target": 1988, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -80686,7 +82140,7 @@ } }, { - "id": 1904, + "id": 1906, "name": "MobileOtpType", "variant": "declaration", "kind": 2097152, @@ -80694,7 +82148,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 703, + "line": 692, "character": 12 } ], @@ -80719,7 +82173,7 @@ { "type": "reflection", "declaration": { - "id": 1905, + "id": 1907, "name": "__type", "variant": "declaration", "kind": 65536, @@ -80727,7 +82181,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 703, + "line": 692, "character": 63 } ] @@ -80739,7 +82193,7 @@ } }, { - "id": 2361, + "id": 2363, "name": "OAuthAuthorizationClient", "variant": "declaration", "kind": 2097152, @@ -80755,21 +82209,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2123, + "line": 2112, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2362, + "id": 2364, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2363, + "id": 2365, "name": "id", "variant": "declaration", "kind": 1024, @@ -80785,7 +82239,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2125, + "line": 2114, "character": 4 } ], @@ -80795,7 +82249,7 @@ } }, { - "id": 2366, + "id": 2368, "name": "logo_uri", "variant": "declaration", "kind": 1024, @@ -80811,7 +82265,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2131, + "line": 2120, "character": 4 } ], @@ -80821,7 +82275,7 @@ } }, { - "id": 2364, + "id": 2366, "name": "name", "variant": "declaration", "kind": 1024, @@ -80837,7 +82291,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2127, + "line": 2116, "character": 4 } ], @@ -80847,7 +82301,7 @@ } }, { - "id": 2365, + "id": 2367, "name": "uri", "variant": "declaration", "kind": 1024, @@ -80863,7 +82317,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2129, + "line": 2118, "character": 4 } ], @@ -80876,13 +82330,13 @@ "groups": [ { "title": "Properties", - "children": [2363, 2366, 2364, 2365] + "children": [2365, 2368, 2366, 2367] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2123, + "line": 2112, "character": 39 } ] @@ -80890,7 +82344,7 @@ } }, { - "id": 2367, + "id": 2369, "name": "OAuthAuthorizationDetails", "variant": "declaration", "kind": 2097152, @@ -80922,21 +82376,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2144, + "line": 2133, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2368, + "id": 2370, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2369, + "id": 2371, "name": "authorization_id", "variant": "declaration", "kind": 1024, @@ -80952,7 +82406,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2146, + "line": 2135, "character": 4 } ], @@ -80962,7 +82416,7 @@ } }, { - "id": 2371, + "id": 2373, "name": "client", "variant": "declaration", "kind": 1024, @@ -80978,19 +82432,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2150, + "line": 2139, "character": 4 } ], "type": { "type": "reference", - "target": 2361, + "target": 2363, "name": "OAuthAuthorizationClient", "package": "@supabase/auth-js" } }, { - "id": 2370, + "id": 2372, "name": "redirect_uri", "variant": "declaration", "kind": 1024, @@ -81006,7 +82460,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2148, + "line": 2137, "character": 4 } ], @@ -81016,7 +82470,7 @@ } }, { - "id": 2376, + "id": 2378, "name": "scope", "variant": "declaration", "kind": 1024, @@ -81032,7 +82486,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2159, + "line": 2148, "character": 4 } ], @@ -81042,7 +82496,7 @@ } }, { - "id": 2372, + "id": 2374, "name": "user", "variant": "declaration", "kind": 1024, @@ -81058,21 +82512,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2152, + "line": 2141, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2373, + "id": 2375, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2375, + "id": 2377, "name": "email", "variant": "declaration", "kind": 1024, @@ -81088,7 +82542,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2156, + "line": 2145, "character": 8 } ], @@ -81098,7 +82552,7 @@ } }, { - "id": 2374, + "id": 2376, "name": "id", "variant": "declaration", "kind": 1024, @@ -81114,7 +82568,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2154, + "line": 2143, "character": 8 } ], @@ -81127,13 +82581,13 @@ "groups": [ { "title": "Properties", - "children": [2375, 2374] + "children": [2377, 2376] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2152, + "line": 2141, "character": 10 } ] @@ -81144,13 +82598,13 @@ "groups": [ { "title": "Properties", - "children": [2369, 2371, 2370, 2376, 2372] + "children": [2371, 2373, 2372, 2378, 2374] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2144, + "line": 2133, "character": 40 } ] @@ -81158,7 +82612,7 @@ } }, { - "id": 2180, + "id": 2182, "name": "OAuthClient", "variant": "declaration", "kind": 2097152, @@ -81174,21 +82628,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1707, + "line": 1696, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2181, + "id": 2183, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2182, + "id": 2184, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -81204,7 +82658,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1709, + "line": 1698, "character": 4 } ], @@ -81214,7 +82668,7 @@ } }, { - "id": 2183, + "id": 2185, "name": "client_name", "variant": "declaration", "kind": 1024, @@ -81230,7 +82684,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1711, + "line": 1700, "character": 4 } ], @@ -81240,7 +82694,7 @@ } }, { - "id": 2184, + "id": 2186, "name": "client_secret", "variant": "declaration", "kind": 1024, @@ -81258,7 +82712,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1713, + "line": 1702, "character": 4 } ], @@ -81268,7 +82722,7 @@ } }, { - "id": 2185, + "id": 2187, "name": "client_type", "variant": "declaration", "kind": 1024, @@ -81284,19 +82738,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1715, + "line": 1704, "character": 4 } ], "type": { "type": "reference", - "target": 2177, + "target": 2179, "name": "OAuthClientType", "package": "@supabase/auth-js" } }, { - "id": 2188, + "id": 2190, "name": "client_uri", "variant": "declaration", "kind": 1024, @@ -81314,7 +82768,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1721, + "line": 1710, "character": 4 } ], @@ -81324,7 +82778,7 @@ } }, { - "id": 2194, + "id": 2196, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -81340,7 +82794,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1733, + "line": 1722, "character": 4 } ], @@ -81350,7 +82804,7 @@ } }, { - "id": 2191, + "id": 2193, "name": "grant_types", "variant": "declaration", "kind": 1024, @@ -81366,7 +82820,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1727, + "line": 1716, "character": 4 } ], @@ -81374,14 +82828,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2174, + "target": 2176, "name": "OAuthClientGrantType", "package": "@supabase/auth-js" } } }, { - "id": 2189, + "id": 2191, "name": "logo_uri", "variant": "declaration", "kind": 1024, @@ -81399,7 +82853,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1723, + "line": 1712, "character": 4 } ], @@ -81409,7 +82863,7 @@ } }, { - "id": 2190, + "id": 2192, "name": "redirect_uris", "variant": "declaration", "kind": 1024, @@ -81425,7 +82879,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1725, + "line": 1714, "character": 4 } ], @@ -81438,7 +82892,7 @@ } }, { - "id": 2187, + "id": 2189, "name": "registration_type", "variant": "declaration", "kind": 1024, @@ -81454,19 +82908,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1719, + "line": 1708, "character": 4 } ], "type": { "type": "reference", - "target": 2178, + "target": 2180, "name": "OAuthClientRegistrationType", "package": "@supabase/auth-js" } }, { - "id": 2192, + "id": 2194, "name": "response_types", "variant": "declaration", "kind": 1024, @@ -81482,7 +82936,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1729, + "line": 1718, "character": 4 } ], @@ -81490,14 +82944,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2176, + "target": 2178, "name": "OAuthClientResponseType", "package": "@supabase/auth-js" } } }, { - "id": 2193, + "id": 2195, "name": "scope", "variant": "declaration", "kind": 1024, @@ -81515,7 +82969,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1731, + "line": 1720, "character": 4 } ], @@ -81525,7 +82979,7 @@ } }, { - "id": 2186, + "id": 2188, "name": "token_endpoint_auth_method", "variant": "declaration", "kind": 1024, @@ -81541,19 +82995,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1717, + "line": 1706, "character": 4 } ], "type": { "type": "reference", - "target": 2179, + "target": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "package": "@supabase/auth-js" } }, { - "id": 2195, + "id": 2197, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -81569,7 +83023,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1735, + "line": 1724, "character": 4 } ], @@ -81583,15 +83037,15 @@ { "title": "Properties", "children": [ - 2182, 2183, 2184, 2185, 2188, 2194, 2191, 2189, 2190, 2187, 2192, 2193, - 2186, 2195 + 2184, 2185, 2186, 2187, 2190, 2196, 2193, 2191, 2192, 2189, 2194, 2195, + 2188, 2197 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1707, + "line": 1696, "character": 26 } ] @@ -81599,7 +83053,7 @@ } }, { - "id": 2174, + "id": 2176, "name": "OAuthClientGrantType", "variant": "declaration", "kind": 2097152, @@ -81615,7 +83069,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1682, + "line": 1671, "character": 12 } ], @@ -81640,7 +83094,7 @@ { "type": "reflection", "declaration": { - "id": 2175, + "id": 2177, "name": "__type", "variant": "declaration", "kind": 65536, @@ -81648,7 +83102,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1682, + "line": 1671, "character": 86 } ] @@ -81660,7 +83114,7 @@ } }, { - "id": 2214, + "id": 2216, "name": "OAuthClientListResponse", "variant": "declaration", "kind": 2097152, @@ -81676,7 +83130,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1785, + "line": 1774, "character": 12 } ], @@ -81686,14 +83140,14 @@ { "type": "reflection", "declaration": { - "id": 2215, + "id": 2217, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2216, + "id": 2218, "name": "data", "variant": "declaration", "kind": 1024, @@ -81701,7 +83155,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1786, + "line": 1775, "character": 4 } ], @@ -81711,14 +83165,14 @@ { "type": "reflection", "declaration": { - "id": 2217, + "id": 2219, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2219, + "id": 2221, "name": "aud", "variant": "declaration", "kind": 1024, @@ -81726,7 +83180,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1788, + "line": 1777, "character": 8 } ], @@ -81736,7 +83190,7 @@ } }, { - "id": 2218, + "id": 2220, "name": "clients", "variant": "declaration", "kind": 1024, @@ -81744,7 +83198,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1787, + "line": 1776, "character": 8 } ], @@ -81752,7 +83206,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2180, + "target": 2182, "name": "OAuthClient", "package": "@supabase/auth-js" } @@ -81762,13 +83216,13 @@ "groups": [ { "title": "Properties", - "children": [2219, 2218] + "children": [2221, 2220] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1786, + "line": 1775, "character": 10 } ] @@ -81776,7 +83230,7 @@ }, { "type": "reference", - "target": 2108, + "target": 2110, "name": "Pagination", "package": "@supabase/auth-js" } @@ -81784,7 +83238,7 @@ } }, { - "id": 2220, + "id": 2222, "name": "error", "variant": "declaration", "kind": 1024, @@ -81792,7 +83246,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1790, + "line": 1779, "character": 4 } ], @@ -81805,13 +83259,13 @@ "groups": [ { "title": "Properties", - "children": [2216, 2220] + "children": [2218, 2222] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1785, + "line": 1774, "character": 38 } ] @@ -81820,14 +83274,14 @@ { "type": "reflection", "declaration": { - "id": 2221, + "id": 2223, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2222, + "id": 2224, "name": "data", "variant": "declaration", "kind": 1024, @@ -81835,21 +83289,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1792, + "line": 1781, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2223, + "id": 2225, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2224, + "id": 2226, "name": "clients", "variant": "declaration", "kind": 1024, @@ -81857,7 +83311,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1793, + "line": 1782, "character": 8 } ], @@ -81869,13 +83323,13 @@ "groups": [ { "title": "Properties", - "children": [2224] + "children": [2226] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1792, + "line": 1781, "character": 10 } ] @@ -81883,7 +83337,7 @@ } }, { - "id": 2225, + "id": 2227, "name": "error", "variant": "declaration", "kind": 1024, @@ -81891,13 +83345,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1795, + "line": 1784, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -81906,13 +83360,13 @@ "groups": [ { "title": "Properties", - "children": [2222, 2225] + "children": [2224, 2227] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1791, + "line": 1780, "character": 4 } ] @@ -81922,7 +83376,7 @@ } }, { - "id": 2178, + "id": 2180, "name": "OAuthClientRegistrationType", "variant": "declaration", "kind": 2097152, @@ -81938,7 +83392,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1697, + "line": 1686, "character": 12 } ], @@ -81957,7 +83411,7 @@ } }, { - "id": 2213, + "id": 2215, "name": "OAuthClientResponse", "variant": "declaration", "kind": 2097152, @@ -81973,17 +83427,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1780, + "line": 1769, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2180, + "target": 2182, "name": "OAuthClient", "package": "@supabase/auth-js" } @@ -81993,7 +83447,7 @@ } }, { - "id": 2176, + "id": 2178, "name": "OAuthClientResponseType", "variant": "declaration", "kind": 2097152, @@ -82009,7 +83463,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1687, + "line": 1676, "character": 12 } ], @@ -82019,7 +83473,7 @@ } }, { - "id": 2179, + "id": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "variant": "declaration", "kind": 2097152, @@ -82035,7 +83489,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1702, + "line": 1691, "character": 12 } ], @@ -82058,7 +83512,7 @@ } }, { - "id": 2177, + "id": 2179, "name": "OAuthClientType", "variant": "declaration", "kind": 2097152, @@ -82074,7 +83528,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1692, + "line": 1681, "character": 12 } ], @@ -82093,7 +83547,7 @@ } }, { - "id": 2382, + "id": 2384, "name": "OAuthGrant", "variant": "declaration", "kind": 2097152, @@ -82109,21 +83563,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2210, + "line": 2199, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2383, + "id": 2385, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2384, + "id": 2386, "name": "client", "variant": "declaration", "kind": 1024, @@ -82139,19 +83593,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2212, + "line": 2201, "character": 4 } ], "type": { "type": "reference", - "target": 2361, + "target": 2363, "name": "OAuthAuthorizationClient", "package": "@supabase/auth-js" } }, { - "id": 2386, + "id": 2388, "name": "granted_at", "variant": "declaration", "kind": 1024, @@ -82167,7 +83621,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2216, + "line": 2205, "character": 4 } ], @@ -82177,7 +83631,7 @@ } }, { - "id": 2385, + "id": 2387, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -82193,7 +83647,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2214, + "line": 2203, "character": 4 } ], @@ -82209,13 +83663,13 @@ "groups": [ { "title": "Properties", - "children": [2384, 2386, 2385] + "children": [2386, 2388, 2387] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2210, + "line": 2199, "character": 25 } ] @@ -82223,7 +83677,7 @@ } }, { - "id": 2377, + "id": 2379, "name": "OAuthRedirect", "variant": "declaration", "kind": 2097152, @@ -82247,21 +83701,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2174, + "line": 2163, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2378, + "id": 2380, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2379, + "id": 2381, "name": "redirect_url", "variant": "declaration", "kind": 1024, @@ -82277,7 +83731,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2176, + "line": 2165, "character": 4 } ], @@ -82290,13 +83744,13 @@ "groups": [ { "title": "Properties", - "children": [2379] + "children": [2381] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2174, + "line": 2163, "character": 28 } ] @@ -82304,7 +83758,7 @@ } }, { - "id": 1683, + "id": 1685, "name": "OAuthResponse", "variant": "declaration", "kind": 2097152, @@ -82312,7 +83766,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 219, + "line": 208, "character": 12 } ], @@ -82322,14 +83776,14 @@ { "type": "reflection", "declaration": { - "id": 1684, + "id": 1686, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1685, + "id": 1687, "name": "data", "variant": "declaration", "kind": 1024, @@ -82337,21 +83791,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 220, + "line": 209, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1686, + "id": 1688, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1687, + "id": 1689, "name": "provider", "variant": "declaration", "kind": 1024, @@ -82359,19 +83813,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 221, + "line": 210, "character": 8 } ], "type": { "type": "reference", - "target": 1585, + "target": 1587, "name": "Provider", "package": "@supabase/auth-js" } }, { - "id": 1688, + "id": 1690, "name": "url", "variant": "declaration", "kind": 1024, @@ -82379,7 +83833,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 222, + "line": 211, "character": 8 } ], @@ -82392,13 +83846,13 @@ "groups": [ { "title": "Properties", - "children": [1687, 1688] + "children": [1689, 1690] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 220, + "line": 209, "character": 10 } ] @@ -82406,7 +83860,7 @@ } }, { - "id": 1689, + "id": 1691, "name": "error", "variant": "declaration", "kind": 1024, @@ -82414,7 +83868,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 224, + "line": 213, "character": 4 } ], @@ -82427,13 +83881,13 @@ "groups": [ { "title": "Properties", - "children": [1685, 1689] + "children": [1687, 1691] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 219, + "line": 208, "character": 28 } ] @@ -82442,14 +83896,14 @@ { "type": "reflection", "declaration": { - "id": 1690, + "id": 1692, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1691, + "id": 1693, "name": "data", "variant": "declaration", "kind": 1024, @@ -82457,21 +83911,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 226, + "line": 215, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1692, + "id": 1694, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1693, + "id": 1695, "name": "provider", "variant": "declaration", "kind": 1024, @@ -82479,19 +83933,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 227, + "line": 216, "character": 8 } ], "type": { "type": "reference", - "target": 1585, + "target": 1587, "name": "Provider", "package": "@supabase/auth-js" } }, { - "id": 1694, + "id": 1696, "name": "url", "variant": "declaration", "kind": 1024, @@ -82499,7 +83953,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 228, + "line": 217, "character": 8 } ], @@ -82512,13 +83966,13 @@ "groups": [ { "title": "Properties", - "children": [1693, 1694] + "children": [1695, 1696] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 226, + "line": 215, "character": 10 } ] @@ -82526,7 +83980,7 @@ } }, { - "id": 1695, + "id": 1697, "name": "error", "variant": "declaration", "kind": 1024, @@ -82534,13 +83988,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 230, + "line": 219, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -82549,13 +84003,13 @@ "groups": [ { "title": "Properties", - "children": [1691, 1695] + "children": [1693, 1697] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 225, + "line": 214, "character": 4 } ] @@ -82565,7 +84019,7 @@ } }, { - "id": 2250, + "id": 2252, "name": "OIDCDiscoveryDocument", "variant": "declaration", "kind": 2097152, @@ -82581,21 +84035,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1875, + "line": 1864, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2251, + "id": 2253, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2253, + "id": 2255, "name": "authorization_endpoint", "variant": "declaration", "kind": 1024, @@ -82611,7 +84065,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1879, + "line": 1868, "character": 4 } ], @@ -82621,7 +84075,7 @@ } }, { - "id": 2252, + "id": 2254, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -82637,7 +84091,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1877, + "line": 1866, "character": 4 } ], @@ -82647,7 +84101,7 @@ } }, { - "id": 2255, + "id": 2257, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -82663,7 +84117,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1883, + "line": 1872, "character": 4 } ], @@ -82673,7 +84127,7 @@ } }, { - "id": 2257, + "id": 2259, "name": "revocation_endpoint", "variant": "declaration", "kind": 1024, @@ -82691,7 +84145,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1887, + "line": 1876, "character": 4 } ], @@ -82701,7 +84155,7 @@ } }, { - "id": 2261, + "id": 2263, "name": "supported_id_token_signing_algs", "variant": "declaration", "kind": 1024, @@ -82719,7 +84173,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1895, + "line": 1884, "character": 4 } ], @@ -82732,7 +84186,7 @@ } }, { - "id": 2259, + "id": 2261, "name": "supported_response_types", "variant": "declaration", "kind": 1024, @@ -82750,7 +84204,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1891, + "line": 1880, "character": 4 } ], @@ -82763,7 +84217,7 @@ } }, { - "id": 2258, + "id": 2260, "name": "supported_scopes", "variant": "declaration", "kind": 1024, @@ -82781,7 +84235,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1889, + "line": 1878, "character": 4 } ], @@ -82794,7 +84248,7 @@ } }, { - "id": 2260, + "id": 2262, "name": "supported_subject_types", "variant": "declaration", "kind": 1024, @@ -82812,7 +84266,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1893, + "line": 1882, "character": 4 } ], @@ -82825,7 +84279,7 @@ } }, { - "id": 2254, + "id": 2256, "name": "token_endpoint", "variant": "declaration", "kind": 1024, @@ -82841,7 +84295,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1881, + "line": 1870, "character": 4 } ], @@ -82851,7 +84305,7 @@ } }, { - "id": 2256, + "id": 2258, "name": "userinfo_endpoint", "variant": "declaration", "kind": 1024, @@ -82869,7 +84323,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1885, + "line": 1874, "character": 4 } ], @@ -82882,13 +84336,13 @@ "groups": [ { "title": "Properties", - "children": [2253, 2252, 2255, 2257, 2261, 2259, 2258, 2260, 2254, 2256] + "children": [2255, 2254, 2257, 2259, 2263, 2261, 2260, 2262, 2256, 2258] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1875, + "line": 1864, "character": 36 } ] @@ -82896,7 +84350,7 @@ } }, { - "id": 2115, + "id": 2117, "name": "PageParams", "variant": "declaration", "kind": 2097152, @@ -82904,21 +84358,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1549, + "line": 1538, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2116, + "id": 2118, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2117, + "id": 2119, "name": "page", "variant": "declaration", "kind": 1024, @@ -82936,7 +84390,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1551, + "line": 1540, "character": 4 } ], @@ -82946,7 +84400,7 @@ } }, { - "id": 2118, + "id": 2120, "name": "perPage", "variant": "declaration", "kind": 1024, @@ -82964,7 +84418,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1553, + "line": 1542, "character": 4 } ], @@ -82977,13 +84431,13 @@ "groups": [ { "title": "Properties", - "children": [2117, 2118] + "children": [2119, 2120] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1549, + "line": 1538, "character": 25 } ] @@ -82991,7 +84445,7 @@ } }, { - "id": 2108, + "id": 2110, "name": "Pagination", "variant": "declaration", "kind": 2097152, @@ -82999,21 +84453,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1543, + "line": 1532, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2109, + "id": 2111, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2111, + "id": 2113, "name": "lastPage", "variant": "declaration", "kind": 1024, @@ -83021,7 +84475,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1546, + "line": 1535, "character": 4 } ], @@ -83031,7 +84485,7 @@ } }, { - "id": 2110, + "id": 2112, "name": "nextPage", "variant": "declaration", "kind": 1024, @@ -83039,7 +84493,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1545, + "line": 1534, "character": 4 } ], @@ -83058,7 +84512,7 @@ } }, { - "id": 2112, + "id": 2114, "name": "total", "variant": "declaration", "kind": 1024, @@ -83066,7 +84520,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1547, + "line": 1536, "character": 4 } ], @@ -83079,19 +84533,19 @@ "groups": [ { "title": "Properties", - "children": [2111, 2110, 2112] + "children": [2113, 2112, 2114] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1543, + "line": 1532, "character": 25 } ], "indexSignatures": [ { - "id": 2113, + "id": 2115, "name": "__index", "variant": "signature", "kind": 8192, @@ -83099,13 +84553,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1544, + "line": 1533, "character": 4 } ], "parameters": [ { - "id": 2114, + "id": 2116, "name": "key", "variant": "param", "kind": 32768, @@ -83126,7 +84580,7 @@ } }, { - "id": 2427, + "id": 2429, "name": "PasskeyAuthenticationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -83142,21 +84596,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2342, + "line": 2331, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2428, + "id": 2430, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2429, + "id": 2431, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83164,7 +84618,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2343, + "line": 2332, "character": 4 } ], @@ -83174,7 +84628,7 @@ } }, { - "id": 2431, + "id": 2433, "name": "expires_at", "variant": "declaration", "kind": 1024, @@ -83182,7 +84636,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2345, + "line": 2334, "character": 4 } ], @@ -83192,7 +84646,7 @@ } }, { - "id": 2430, + "id": 2432, "name": "options", "variant": "declaration", "kind": 1024, @@ -83200,7 +84654,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2344, + "line": 2333, "character": 4 } ], @@ -83218,13 +84672,13 @@ "groups": [ { "title": "Properties", - "children": [2429, 2431, 2430] + "children": [2431, 2433, 2432] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2342, + "line": 2331, "character": 51 } ] @@ -83232,7 +84686,7 @@ } }, { - "id": 2432, + "id": 2434, "name": "PasskeyAuthenticationVerifyParams", "variant": "declaration", "kind": 2097152, @@ -83248,21 +84702,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2348, + "line": 2337, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2433, + "id": 2435, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2434, + "id": 2436, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83270,7 +84724,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2349, + "line": 2338, "character": 4 } ], @@ -83280,7 +84734,7 @@ } }, { - "id": 2435, + "id": 2437, "name": "credential", "variant": "declaration", "kind": 1024, @@ -83288,7 +84742,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2350, + "line": 2339, "character": 4 } ], @@ -83306,13 +84760,13 @@ "groups": [ { "title": "Properties", - "children": [2434, 2435] + "children": [2436, 2437] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2348, + "line": 2337, "character": 48 } ] @@ -83320,7 +84774,7 @@ } }, { - "id": 2470, + "id": 2472, "name": "PasskeyDeleteParams", "variant": "declaration", "kind": 2097152, @@ -83328,21 +84782,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2393, + "line": 2382, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2471, + "id": 2473, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2472, + "id": 2474, "name": "passkeyId", "variant": "declaration", "kind": 1024, @@ -83358,7 +84812,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2395, + "line": 2384, "character": 4 } ], @@ -83371,13 +84825,13 @@ "groups": [ { "title": "Properties", - "children": [2472] + "children": [2474] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2393, + "line": 2382, "character": 34 } ] @@ -83385,7 +84839,7 @@ } }, { - "id": 2436, + "id": 2438, "name": "PasskeyListItem", "variant": "declaration", "kind": 2097152, @@ -83401,21 +84855,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2353, + "line": 2342, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2437, + "id": 2439, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2440, + "id": 2442, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -83423,7 +84877,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2356, + "line": 2345, "character": 4 } ], @@ -83433,7 +84887,7 @@ } }, { - "id": 2439, + "id": 2441, "name": "friendly_name", "variant": "declaration", "kind": 1024, @@ -83443,7 +84897,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2355, + "line": 2344, "character": 4 } ], @@ -83453,7 +84907,7 @@ } }, { - "id": 2438, + "id": 2440, "name": "id", "variant": "declaration", "kind": 1024, @@ -83461,7 +84915,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2354, + "line": 2343, "character": 4 } ], @@ -83471,7 +84925,7 @@ } }, { - "id": 2441, + "id": 2443, "name": "last_used_at", "variant": "declaration", "kind": 1024, @@ -83481,7 +84935,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2357, + "line": 2346, "character": 4 } ], @@ -83494,13 +84948,13 @@ "groups": [ { "title": "Properties", - "children": [2440, 2439, 2438, 2441] + "children": [2442, 2441, 2440, 2443] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2353, + "line": 2342, "character": 30 } ] @@ -83508,7 +84962,7 @@ } }, { - "id": 2422, + "id": 2424, "name": "PasskeyMetadata", "variant": "declaration", "kind": 2097152, @@ -83524,21 +84978,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2336, + "line": 2325, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2423, + "id": 2425, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2426, + "id": 2428, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -83546,7 +85000,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2339, + "line": 2328, "character": 4 } ], @@ -83556,7 +85010,7 @@ } }, { - "id": 2425, + "id": 2427, "name": "friendly_name", "variant": "declaration", "kind": 1024, @@ -83566,7 +85020,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2338, + "line": 2327, "character": 4 } ], @@ -83576,7 +85030,7 @@ } }, { - "id": 2424, + "id": 2426, "name": "id", "variant": "declaration", "kind": 1024, @@ -83584,7 +85038,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2337, + "line": 2326, "character": 4 } ], @@ -83597,13 +85051,13 @@ "groups": [ { "title": "Properties", - "children": [2426, 2425, 2424] + "children": [2428, 2427, 2426] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2336, + "line": 2325, "character": 30 } ] @@ -83611,7 +85065,7 @@ } }, { - "id": 2413, + "id": 2415, "name": "PasskeyRegistrationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -83627,21 +85081,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2325, + "line": 2314, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2414, + "id": 2416, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2415, + "id": 2417, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83649,7 +85103,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2326, + "line": 2315, "character": 4 } ], @@ -83659,7 +85113,7 @@ } }, { - "id": 2417, + "id": 2419, "name": "expires_at", "variant": "declaration", "kind": 1024, @@ -83667,7 +85121,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2328, + "line": 2317, "character": 4 } ], @@ -83677,7 +85131,7 @@ } }, { - "id": 2416, + "id": 2418, "name": "options", "variant": "declaration", "kind": 1024, @@ -83685,7 +85139,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2327, + "line": 2316, "character": 4 } ], @@ -83703,13 +85157,13 @@ "groups": [ { "title": "Properties", - "children": [2415, 2417, 2416] + "children": [2417, 2419, 2418] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2325, + "line": 2314, "character": 49 } ] @@ -83717,7 +85171,7 @@ } }, { - "id": 2418, + "id": 2420, "name": "PasskeyRegistrationVerifyParams", "variant": "declaration", "kind": 2097152, @@ -83733,21 +85187,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2331, + "line": 2320, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2419, + "id": 2421, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2420, + "id": 2422, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83755,7 +85209,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2332, + "line": 2321, "character": 4 } ], @@ -83765,7 +85219,7 @@ } }, { - "id": 2421, + "id": 2423, "name": "credential", "variant": "declaration", "kind": 1024, @@ -83773,7 +85227,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2333, + "line": 2322, "character": 4 } ], @@ -83791,13 +85245,13 @@ "groups": [ { "title": "Properties", - "children": [2420, 2421] + "children": [2422, 2423] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2331, + "line": 2320, "character": 46 } ] @@ -83805,7 +85259,7 @@ } }, { - "id": 2466, + "id": 2468, "name": "PasskeyUpdateParams", "variant": "declaration", "kind": 2097152, @@ -83813,21 +85267,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2387, + "line": 2376, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2467, + "id": 2469, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2469, + "id": 2471, "name": "friendlyName", "variant": "declaration", "kind": 1024, @@ -83843,7 +85297,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2391, + "line": 2380, "character": 4 } ], @@ -83853,7 +85307,7 @@ } }, { - "id": 2468, + "id": 2470, "name": "passkeyId", "variant": "declaration", "kind": 1024, @@ -83869,7 +85323,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2389, + "line": 2378, "character": 4 } ], @@ -83882,13 +85336,13 @@ "groups": [ { "title": "Properties", - "children": [2469, 2468] + "children": [2471, 2470] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2387, + "line": 2376, "character": 34 } ] @@ -83904,7 +85358,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 622, + "line": 641, "character": 5 } ], @@ -83951,7 +85405,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 623, + "line": 642, "character": 5 } ], @@ -83992,7 +85446,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 621, + "line": 640, "character": 5 } ], @@ -84039,7 +85493,7 @@ } }, { - "id": 1638, + "id": 1640, "name": "Prettify", "variant": "declaration", "kind": 2097152, @@ -84055,13 +85509,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 12 } ], "typeParameters": [ { - "id": 1639, + "id": 1641, "name": "T", "variant": "typeParam", "kind": 131072, @@ -84072,7 +85526,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84088,7 +85542,7 @@ }, "trueType": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84101,7 +85555,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84121,7 +85575,7 @@ }, "objectType": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84131,7 +85585,7 @@ } }, { - "id": 1585, + "id": 1587, "name": "Provider", "variant": "declaration", "kind": 2097152, @@ -84323,9 +85777,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 301, + "line": 308, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L308" } ], "typeParameters": [ @@ -84371,9 +85825,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 301, + "line": 308, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L308" } ], "type": { @@ -84391,9 +85845,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 301, + "line": 308, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L308" } ] } @@ -84442,9 +85896,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 302, + "line": 309, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L309" } ], "type": { @@ -84471,9 +85925,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 300, + "line": 307, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L307" } ], "typeParameters": [ @@ -84526,7 +85980,7 @@ } }, { - "id": 3114, + "id": 3136, "name": "RealtimeChannelOptions", "variant": "declaration", "kind": 2097152, @@ -84541,14 +85995,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3115, + "id": 3137, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3116, + "id": 3138, "name": "config", "variant": "declaration", "kind": 1024, @@ -84563,14 +86017,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3117, + "id": 3139, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3118, + "id": 3140, "name": "broadcast", "variant": "declaration", "kind": 1024, @@ -84595,14 +86049,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3119, + "id": 3141, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3121, + "id": 3143, "name": "ack", "variant": "declaration", "kind": 1024, @@ -84622,7 +86076,7 @@ } }, { - "id": 3122, + "id": 3144, "name": "replay", "variant": "declaration", "kind": 1024, @@ -84647,7 +86101,7 @@ } }, { - "id": 3120, + "id": 3142, "name": "self", "variant": "declaration", "kind": 1024, @@ -84670,7 +86124,7 @@ "groups": [ { "title": "Properties", - "children": [3121, 3122, 3120] + "children": [3143, 3144, 3142] } ], "sources": [ @@ -84684,7 +86138,7 @@ } }, { - "id": 3123, + "id": 3145, "name": "presence", "variant": "declaration", "kind": 1024, @@ -84709,14 +86163,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3124, + "id": 3146, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3126, + "id": 3148, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -84736,7 +86190,7 @@ } }, { - "id": 3125, + "id": 3147, "name": "key", "variant": "declaration", "kind": 1024, @@ -84759,7 +86213,7 @@ "groups": [ { "title": "Properties", - "children": [3126, 3125] + "children": [3148, 3147] } ], "sources": [ @@ -84773,7 +86227,7 @@ } }, { - "id": 3127, + "id": 3149, "name": "private", "variant": "declaration", "kind": 1024, @@ -84804,7 +86258,7 @@ "groups": [ { "title": "Properties", - "children": [3118, 3123, 3127] + "children": [3140, 3145, 3149] } ], "sources": [ @@ -84821,7 +86275,7 @@ "groups": [ { "title": "Properties", - "children": [3116] + "children": [3138] } ], "sources": [ @@ -84835,7 +86289,7 @@ } }, { - "id": 3128, + "id": 3150, "name": "RealtimeChannelSendResponse", "variant": "declaration", "kind": 2097152, @@ -84872,7 +86326,7 @@ { "type": "reflection", "declaration": { - "id": 3129, + "id": 3151, "name": "__type", "variant": "declaration", "kind": 65536, @@ -84892,7 +86346,7 @@ } }, { - "id": 3251, + "id": 3273, "name": "RealtimeClientOptions", "variant": "declaration", "kind": 2097152, @@ -84907,14 +86361,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3252, + "id": 3274, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3287, + "id": 3309, "name": "accessToken", "variant": "declaration", "kind": 1024, @@ -84931,7 +86385,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3288, + "id": 3310, "name": "__type", "variant": "declaration", "kind": 65536, @@ -84945,7 +86399,7 @@ ], "signatures": [ { - "id": 3289, + "id": 3311, "name": "__type", "variant": "signature", "kind": 4096, @@ -84980,7 +86434,7 @@ } }, { - "id": 3269, + "id": 3291, "name": "decode", "variant": "declaration", "kind": 1024, @@ -85011,7 +86465,7 @@ } }, { - "id": 3290, + "id": 3312, "name": "disconnectOnEmptyChannelsAfterMs", "variant": "declaration", "kind": 1024, @@ -85031,7 +86485,7 @@ } }, { - "id": 3268, + "id": 3290, "name": "encode", "variant": "declaration", "kind": 1024, @@ -85062,7 +86516,7 @@ } }, { - "id": 3284, + "id": 3306, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -85087,7 +86541,7 @@ } }, { - "id": 3274, + "id": 3296, "name": "headers", "variant": "declaration", "kind": 1024, @@ -85104,7 +86558,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3275, + "id": 3297, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85118,7 +86572,7 @@ ], "indexSignatures": [ { - "id": 3276, + "id": 3298, "name": "__index", "variant": "signature", "kind": 8192, @@ -85132,7 +86586,7 @@ ], "parameters": [ { - "id": 3277, + "id": 3299, "name": "key", "variant": "param", "kind": 32768, @@ -85153,7 +86607,7 @@ } }, { - "id": 3256, + "id": 3278, "name": "heartbeatCallback", "variant": "declaration", "kind": 1024, @@ -85170,7 +86624,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3257, + "id": 3279, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85184,14 +86638,14 @@ ], "signatures": [ { - "id": 3258, + "id": 3280, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3259, + "id": 3281, "name": "status", "variant": "param", "kind": 32768, @@ -85207,7 +86661,7 @@ } }, { - "id": 3260, + "id": 3282, "name": "latency", "variant": "param", "kind": 32768, @@ -85230,7 +86684,7 @@ } }, { - "id": 3255, + "id": 3277, "name": "heartbeatIntervalMs", "variant": "declaration", "kind": 1024, @@ -85250,7 +86704,7 @@ } }, { - "id": 3282, + "id": 3304, "name": "log_level", "variant": "declaration", "kind": 1024, @@ -85275,7 +86729,7 @@ } }, { - "id": 3262, + "id": 3284, "name": "logger", "variant": "declaration", "kind": 1024, @@ -85292,7 +86746,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3263, + "id": 3285, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85306,14 +86760,14 @@ ], "signatures": [ { - "id": 3264, + "id": 3286, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3265, + "id": 3287, "name": "kind", "variant": "param", "kind": 32768, @@ -85324,7 +86778,7 @@ } }, { - "id": 3266, + "id": 3288, "name": "msg", "variant": "param", "kind": 32768, @@ -85335,7 +86789,7 @@ } }, { - "id": 3267, + "id": 3289, "name": "data", "variant": "param", "kind": 32768, @@ -85358,7 +86812,7 @@ } }, { - "id": 3283, + "id": 3305, "name": "logLevel", "variant": "declaration", "kind": 1024, @@ -85383,7 +86837,7 @@ } }, { - "id": 3278, + "id": 3300, "name": "params", "variant": "declaration", "kind": 1024, @@ -85400,7 +86854,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3279, + "id": 3301, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85414,7 +86868,7 @@ ], "indexSignatures": [ { - "id": 3280, + "id": 3302, "name": "__index", "variant": "signature", "kind": 8192, @@ -85428,7 +86882,7 @@ ], "parameters": [ { - "id": 3281, + "id": 3303, "name": "key", "variant": "param", "kind": 32768, @@ -85449,7 +86903,7 @@ } }, { - "id": 3270, + "id": 3292, "name": "reconnectAfterMs", "variant": "declaration", "kind": 1024, @@ -85466,7 +86920,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3271, + "id": 3293, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85480,14 +86934,14 @@ ], "signatures": [ { - "id": 3272, + "id": 3294, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3273, + "id": 3295, "name": "tries", "variant": "param", "kind": 32768, @@ -85508,7 +86962,7 @@ } }, { - "id": 3291, + "id": 3313, "name": "sessionStorage", "variant": "declaration", "kind": 1024, @@ -85557,7 +87011,7 @@ } }, { - "id": 3254, + "id": 3276, "name": "timeout", "variant": "declaration", "kind": 1024, @@ -85577,7 +87031,7 @@ } }, { - "id": 3253, + "id": 3275, "name": "transport", "variant": "declaration", "kind": 1024, @@ -85593,13 +87047,13 @@ ], "type": { "type": "reference", - "target": 3459, + "target": 3481, "name": "WebSocketLikeConstructor", "package": "@supabase/realtime-js" } }, { - "id": 3261, + "id": 3283, "name": "vsn", "variant": "declaration", "kind": 1024, @@ -85619,7 +87073,7 @@ } }, { - "id": 3285, + "id": 3307, "name": "worker", "variant": "declaration", "kind": 1024, @@ -85639,7 +87093,7 @@ } }, { - "id": 3286, + "id": 3308, "name": "workerUrl", "variant": "declaration", "kind": 1024, @@ -85663,8 +87117,8 @@ { "title": "Properties", "children": [ - 3287, 3269, 3290, 3268, 3284, 3274, 3256, 3255, 3282, 3262, 3283, 3278, - 3270, 3291, 3254, 3253, 3261, 3285, 3286 + 3309, 3291, 3312, 3290, 3306, 3296, 3278, 3277, 3304, 3284, 3305, 3300, + 3292, 3313, 3276, 3275, 3283, 3307, 3308 ] } ], @@ -85679,7 +87133,7 @@ } }, { - "id": 3292, + "id": 3314, "name": "RealtimeMessage", "variant": "declaration", "kind": 2097152, @@ -85694,14 +87148,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3293, + "id": 3315, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3295, + "id": 3317, "name": "event", "variant": "declaration", "kind": 1024, @@ -85719,7 +87173,7 @@ } }, { - "id": 3298, + "id": 3320, "name": "join_ref", "variant": "declaration", "kind": 1024, @@ -85739,7 +87193,7 @@ } }, { - "id": 3296, + "id": 3318, "name": "payload", "variant": "declaration", "kind": 1024, @@ -85757,7 +87211,7 @@ } }, { - "id": 3297, + "id": 3319, "name": "ref", "variant": "declaration", "kind": 1024, @@ -85775,7 +87229,7 @@ } }, { - "id": 3294, + "id": 3316, "name": "topic", "variant": "declaration", "kind": 1024, @@ -85796,7 +87250,7 @@ "groups": [ { "title": "Properties", - "children": [3295, 3298, 3296, 3297, 3294] + "children": [3317, 3320, 3318, 3319, 3316] } ], "sources": [ @@ -85810,7 +87264,7 @@ } }, { - "id": 3299, + "id": 3321, "name": "RealtimePostgresChangesFilter", "variant": "declaration", "kind": 2097152, @@ -85824,7 +87278,7 @@ ], "typeParameters": [ { - "id": 3305, + "id": 3327, "name": "T", "variant": "typeParam", "kind": 131072, @@ -85836,7 +87290,7 @@ [ { "type": "reference", - "target": 3376, + "target": 3398, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT", "package": "@supabase/realtime-js" }, @@ -85849,14 +87303,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3300, + "id": 3322, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3301, + "id": 3323, "name": "event", "variant": "declaration", "kind": 1024, @@ -85878,14 +87332,14 @@ ], "type": { "type": "reference", - "target": 3305, + "target": 3327, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 3304, + "id": 3326, "name": "filter", "variant": "declaration", "kind": 1024, @@ -85913,7 +87367,7 @@ } }, { - "id": 3302, + "id": 3324, "name": "schema", "variant": "declaration", "kind": 1024, @@ -85939,7 +87393,7 @@ } }, { - "id": 3303, + "id": 3325, "name": "table", "variant": "declaration", "kind": 1024, @@ -85970,7 +87424,7 @@ "groups": [ { "title": "Properties", - "children": [3301, 3304, 3302, 3303] + "children": [3323, 3326, 3324, 3325] } ], "sources": [ @@ -85984,7 +87438,7 @@ } }, { - "id": 3306, + "id": 3328, "name": "RealtimePostgresChangesPayload", "variant": "declaration", "kind": 2097152, @@ -85998,7 +87452,7 @@ ], "typeParameters": [ { - "id": 3307, + "id": 3329, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86006,7 +87460,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3308, + "id": 3330, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86020,7 +87474,7 @@ ], "indexSignatures": [ { - "id": 3309, + "id": 3331, "name": "__index", "variant": "signature", "kind": 8192, @@ -86034,7 +87488,7 @@ ], "parameters": [ { - "id": 3310, + "id": 3332, "name": "key", "variant": "param", "kind": 32768, @@ -86060,11 +87514,11 @@ "types": [ { "type": "reference", - "target": 3311, + "target": 3333, "typeArguments": [ { "type": "reference", - "target": 3307, + "target": 3329, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86075,11 +87529,11 @@ }, { "type": "reference", - "target": 3321, + "target": 3343, "typeArguments": [ { "type": "reference", - "target": 3307, + "target": 3329, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86090,11 +87544,11 @@ }, { "type": "reference", - "target": 3330, + "target": 3352, "typeArguments": [ { "type": "reference", - "target": 3307, + "target": 3329, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86107,7 +87561,7 @@ } }, { - "id": 3330, + "id": 3352, "name": "RealtimePostgresDeletePayload", "variant": "declaration", "kind": 2097152, @@ -86121,7 +87575,7 @@ ], "typeParameters": [ { - "id": 3336, + "id": 3358, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86129,7 +87583,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3337, + "id": 3359, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86143,7 +87597,7 @@ ], "indexSignatures": [ { - "id": 3338, + "id": 3360, "name": "__index", "variant": "signature", "kind": 8192, @@ -86157,7 +87611,7 @@ ], "parameters": [ { - "id": 3339, + "id": 3361, "name": "key", "variant": "param", "kind": 32768, @@ -86193,14 +87647,14 @@ { "type": "reflection", "declaration": { - "id": 3331, + "id": 3353, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3332, + "id": 3354, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -86219,7 +87673,7 @@ [ { "type": "reference", - "target": 3380, + "target": 3402, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE", "package": "@supabase/realtime-js" }, @@ -86229,7 +87683,7 @@ } }, { - "id": 3333, + "id": 3355, "name": "new", "variant": "declaration", "kind": 1024, @@ -86244,7 +87698,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3334, + "id": 3356, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86260,7 +87714,7 @@ } }, { - "id": 3335, + "id": 3357, "name": "old", "variant": "declaration", "kind": 1024, @@ -86281,7 +87735,7 @@ "typeArguments": [ { "type": "reference", - "target": 3336, + "target": 3358, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86295,7 +87749,7 @@ "groups": [ { "title": "Properties", - "children": [3332, 3333, 3335] + "children": [3354, 3355, 3357] } ], "sources": [ @@ -86311,7 +87765,7 @@ } }, { - "id": 3311, + "id": 3333, "name": "RealtimePostgresInsertPayload", "variant": "declaration", "kind": 2097152, @@ -86325,7 +87779,7 @@ ], "typeParameters": [ { - "id": 3317, + "id": 3339, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86333,7 +87787,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3318, + "id": 3340, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86347,7 +87801,7 @@ ], "indexSignatures": [ { - "id": 3319, + "id": 3341, "name": "__index", "variant": "signature", "kind": 8192, @@ -86361,7 +87815,7 @@ ], "parameters": [ { - "id": 3320, + "id": 3342, "name": "key", "variant": "param", "kind": 32768, @@ -86397,14 +87851,14 @@ { "type": "reflection", "declaration": { - "id": 3312, + "id": 3334, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3313, + "id": 3335, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -86423,7 +87877,7 @@ [ { "type": "reference", - "target": 3378, + "target": 3400, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT", "package": "@supabase/realtime-js" }, @@ -86433,7 +87887,7 @@ } }, { - "id": 3314, + "id": 3336, "name": "new", "variant": "declaration", "kind": 1024, @@ -86447,14 +87901,14 @@ ], "type": { "type": "reference", - "target": 3317, + "target": 3339, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 3315, + "id": 3337, "name": "old", "variant": "declaration", "kind": 1024, @@ -86469,7 +87923,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3316, + "id": 3338, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86488,7 +87942,7 @@ "groups": [ { "title": "Properties", - "children": [3313, 3314, 3315] + "children": [3335, 3336, 3337] } ], "sources": [ @@ -86504,7 +87958,7 @@ } }, { - "id": 3321, + "id": 3343, "name": "RealtimePostgresUpdatePayload", "variant": "declaration", "kind": 2097152, @@ -86518,7 +87972,7 @@ ], "typeParameters": [ { - "id": 3326, + "id": 3348, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86526,7 +87980,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3327, + "id": 3349, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86540,7 +87994,7 @@ ], "indexSignatures": [ { - "id": 3328, + "id": 3350, "name": "__index", "variant": "signature", "kind": 8192, @@ -86554,7 +88008,7 @@ ], "parameters": [ { - "id": 3329, + "id": 3351, "name": "key", "variant": "param", "kind": 32768, @@ -86590,14 +88044,14 @@ { "type": "reflection", "declaration": { - "id": 3322, + "id": 3344, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3323, + "id": 3345, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -86616,7 +88070,7 @@ [ { "type": "reference", - "target": 3379, + "target": 3401, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE", "package": "@supabase/realtime-js" }, @@ -86626,7 +88080,7 @@ } }, { - "id": 3324, + "id": 3346, "name": "new", "variant": "declaration", "kind": 1024, @@ -86640,14 +88094,14 @@ ], "type": { "type": "reference", - "target": 3326, + "target": 3348, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 3325, + "id": 3347, "name": "old", "variant": "declaration", "kind": 1024, @@ -86668,7 +88122,7 @@ "typeArguments": [ { "type": "reference", - "target": 3326, + "target": 3348, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86682,7 +88136,7 @@ "groups": [ { "title": "Properties", - "children": [3323, 3324, 3325] + "children": [3345, 3346, 3347] } ], "sources": [ @@ -86698,7 +88152,7 @@ } }, { - "id": 3340, + "id": 3362, "name": "RealtimePresenceJoinPayload", "variant": "declaration", "kind": 2097152, @@ -86712,7 +88166,7 @@ ], "typeParameters": [ { - "id": 3346, + "id": 3368, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86720,7 +88174,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3347, + "id": 3369, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86734,7 +88188,7 @@ ], "indexSignatures": [ { - "id": 3348, + "id": 3370, "name": "__index", "variant": "signature", "kind": 8192, @@ -86748,7 +88202,7 @@ ], "parameters": [ { - "id": 3349, + "id": 3371, "name": "key", "variant": "param", "kind": 32768, @@ -86772,14 +88226,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3341, + "id": 3363, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3344, + "id": 3366, "name": "currentPresences", "variant": "declaration", "kind": 1024, @@ -86802,7 +88256,7 @@ "typeArguments": [ { "type": "reference", - "target": 3346, + "target": 3368, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86814,7 +88268,7 @@ } }, { - "id": 3342, + "id": 3364, "name": "event", "variant": "declaration", "kind": 1024, @@ -86833,7 +88287,7 @@ [ { "type": "reference", - "target": 3383, + "target": 3405, "name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN", "package": "@supabase/realtime-js" }, @@ -86843,7 +88297,7 @@ } }, { - "id": 3343, + "id": 3365, "name": "key", "variant": "declaration", "kind": 1024, @@ -86861,7 +88315,7 @@ } }, { - "id": 3345, + "id": 3367, "name": "newPresences", "variant": "declaration", "kind": 1024, @@ -86884,7 +88338,7 @@ "typeArguments": [ { "type": "reference", - "target": 3346, + "target": 3368, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86899,7 +88353,7 @@ "groups": [ { "title": "Properties", - "children": [3344, 3342, 3343, 3345] + "children": [3366, 3364, 3365, 3367] } ], "sources": [ @@ -86913,7 +88367,7 @@ } }, { - "id": 3350, + "id": 3372, "name": "RealtimePresenceLeavePayload", "variant": "declaration", "kind": 2097152, @@ -86927,7 +88381,7 @@ ], "typeParameters": [ { - "id": 3356, + "id": 3378, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86935,7 +88389,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3357, + "id": 3379, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86949,7 +88403,7 @@ ], "indexSignatures": [ { - "id": 3358, + "id": 3380, "name": "__index", "variant": "signature", "kind": 8192, @@ -86963,7 +88417,7 @@ ], "parameters": [ { - "id": 3359, + "id": 3381, "name": "key", "variant": "param", "kind": 32768, @@ -86987,14 +88441,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3351, + "id": 3373, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3354, + "id": 3376, "name": "currentPresences", "variant": "declaration", "kind": 1024, @@ -87017,7 +88471,7 @@ "typeArguments": [ { "type": "reference", - "target": 3356, + "target": 3378, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -87029,7 +88483,7 @@ } }, { - "id": 3352, + "id": 3374, "name": "event", "variant": "declaration", "kind": 1024, @@ -87048,7 +88502,7 @@ [ { "type": "reference", - "target": 3384, + "target": 3406, "name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE", "package": "@supabase/realtime-js" }, @@ -87058,7 +88512,7 @@ } }, { - "id": 3353, + "id": 3375, "name": "key", "variant": "declaration", "kind": 1024, @@ -87076,7 +88530,7 @@ } }, { - "id": 3355, + "id": 3377, "name": "leftPresences", "variant": "declaration", "kind": 1024, @@ -87099,7 +88553,7 @@ "typeArguments": [ { "type": "reference", - "target": 3356, + "target": 3378, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -87114,7 +88568,7 @@ "groups": [ { "title": "Properties", - "children": [3354, 3352, 3353, 3355] + "children": [3376, 3374, 3375, 3377] } ], "sources": [ @@ -87128,7 +88582,7 @@ } }, { - "id": 3360, + "id": 3382, "name": "RealtimePresenceState", "variant": "declaration", "kind": 2097152, @@ -87142,7 +88596,7 @@ ], "typeParameters": [ { - "id": 3364, + "id": 3386, "name": "T", "variant": "typeParam", "kind": 131072, @@ -87150,7 +88604,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3365, + "id": 3387, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87164,7 +88618,7 @@ ], "indexSignatures": [ { - "id": 3366, + "id": 3388, "name": "__index", "variant": "signature", "kind": 8192, @@ -87178,7 +88632,7 @@ ], "parameters": [ { - "id": 3367, + "id": 3389, "name": "key", "variant": "param", "kind": 32768, @@ -87200,7 +88654,7 @@ "default": { "type": "reflection", "declaration": { - "id": 3368, + "id": 3390, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87219,7 +88673,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3361, + "id": 3383, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87233,7 +88687,7 @@ ], "indexSignatures": [ { - "id": 3362, + "id": 3384, "name": "__index", "variant": "signature", "kind": 8192, @@ -87247,7 +88701,7 @@ ], "parameters": [ { - "id": 3363, + "id": 3385, "name": "key", "variant": "param", "kind": 32768, @@ -87269,7 +88723,7 @@ "typeArguments": [ { "type": "reference", - "target": 3364, + "target": 3386, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -87285,7 +88739,7 @@ } }, { - "id": 3369, + "id": 3391, "name": "RealtimeRemoveChannelResponse", "variant": "declaration", "kind": 2097152, @@ -87322,7 +88776,7 @@ { "type": "reflection", "declaration": { - "id": 3370, + "id": 3392, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87342,7 +88796,7 @@ } }, { - "id": 2448, + "id": 2450, "name": "RegisterPasskeyCredentials", "variant": "declaration", "kind": 2097152, @@ -87350,21 +88804,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2365, + "line": 2354, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2449, + "id": 2451, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2450, + "id": 2452, "name": "options", "variant": "declaration", "kind": 1024, @@ -87374,21 +88828,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2366, + "line": 2355, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2451, + "id": 2453, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2452, + "id": 2454, "name": "signal", "variant": "declaration", "kind": 1024, @@ -87398,7 +88852,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2367, + "line": 2356, "character": 8 } ], @@ -87416,13 +88870,13 @@ "groups": [ { "title": "Properties", - "children": [2452] + "children": [2454] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2366, + "line": 2355, "character": 14 } ] @@ -87433,13 +88887,13 @@ "groups": [ { "title": "Properties", - "children": [2450] + "children": [2452] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2365, + "line": 2354, "character": 41 } ] @@ -87447,7 +88901,7 @@ } }, { - "id": 1643, + "id": 1645, "name": "RequestResult", "variant": "declaration", "kind": 2097152, @@ -87463,20 +88917,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 171, + "line": 160, "character": 12 } ], "typeParameters": [ { - "id": 1650, + "id": 1652, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 1651, + "id": 1653, "name": "ErrorType", "variant": "typeParam", "kind": 131072, @@ -87492,7 +88946,7 @@ }, "default": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -87504,14 +88958,14 @@ { "type": "reflection", "declaration": { - "id": 1644, + "id": 1646, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1645, + "id": 1647, "name": "data", "variant": "declaration", "kind": 1024, @@ -87519,20 +88973,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], "type": { "type": "reference", - "target": 1650, + "target": 1652, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1646, + "id": 1648, "name": "error", "variant": "declaration", "kind": 1024, @@ -87540,7 +88994,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -87553,13 +89007,13 @@ "groups": [ { "title": "Properties", - "children": [1645, 1646] + "children": [1647, 1648] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 171, + "line": 160, "character": 68 } ] @@ -87568,14 +89022,14 @@ { "type": "reflection", "declaration": { - "id": 1647, + "id": 1649, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1648, + "id": 1650, "name": "data", "variant": "declaration", "kind": 1024, @@ -87583,7 +89037,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -87593,7 +89047,7 @@ } }, { - "id": 1649, + "id": 1651, "name": "error", "variant": "declaration", "kind": 1024, @@ -87601,7 +89055,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], @@ -87618,19 +89072,19 @@ }, "extendsType": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, "trueType": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, "falseType": { "type": "reference", - "target": 1651, + "target": 1653, "name": "ErrorType", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -87641,13 +89095,13 @@ "groups": [ { "title": "Properties", - "children": [1648, 1649] + "children": [1650, 1651] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 174, + "line": 163, "character": 4 } ] @@ -87657,7 +89111,7 @@ } }, { - "id": 1652, + "id": 1654, "name": "RequestResultSafeDestructure", "variant": "declaration", "kind": 2097152, @@ -87678,13 +89132,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 182, + "line": 171, "character": 12 } ], "typeParameters": [ { - "id": 1659, + "id": 1661, "name": "T", "variant": "typeParam", "kind": 131072, @@ -87697,14 +89151,14 @@ { "type": "reflection", "declaration": { - "id": 1653, + "id": 1655, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1654, + "id": 1656, "name": "data", "variant": "declaration", "kind": 1024, @@ -87712,20 +89166,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 183, + "line": 172, "character": 4 } ], "type": { "type": "reference", - "target": 1659, + "target": 1661, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1655, + "id": 1657, "name": "error", "variant": "declaration", "kind": 1024, @@ -87733,7 +89187,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 184, + "line": 173, "character": 4 } ], @@ -87746,13 +89200,13 @@ "groups": [ { "title": "Properties", - "children": [1654, 1655] + "children": [1656, 1657] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 182, + "line": 171, "character": 46 } ] @@ -87761,14 +89215,14 @@ { "type": "reflection", "declaration": { - "id": 1656, + "id": 1658, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1657, + "id": 1659, "name": "data", "variant": "declaration", "kind": 1024, @@ -87776,7 +89230,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 186, + "line": 175, "character": 4 } ], @@ -87784,7 +89238,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1659, + "target": 1661, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -87801,7 +89255,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1659, + "target": 1661, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -87819,7 +89273,7 @@ } }, { - "id": 1658, + "id": 1660, "name": "error", "variant": "declaration", "kind": 1024, @@ -87827,13 +89281,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 189, + "line": 178, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -87842,13 +89296,13 @@ "groups": [ { "title": "Properties", - "children": [1657, 1658] + "children": [1659, 1660] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 185, + "line": 174, "character": 4 } ] @@ -87858,7 +89312,7 @@ } }, { - "id": 2134, + "id": 2136, "name": "RequiredClaims", "variant": "declaration", "kind": 2097152, @@ -87866,21 +89320,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1633, + "line": 1622, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2135, + "id": 2137, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2142, + "id": 2144, "name": "aal", "variant": "declaration", "kind": 1024, @@ -87888,19 +89342,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1640, + "line": 1629, "character": 4 } ], "type": { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" } }, { - "id": 2138, + "id": 2140, "name": "aud", "variant": "declaration", "kind": 1024, @@ -87908,7 +89362,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1636, + "line": 1625, "character": 4 } ], @@ -87930,7 +89384,7 @@ } }, { - "id": 2139, + "id": 2141, "name": "exp", "variant": "declaration", "kind": 1024, @@ -87938,7 +89392,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1637, + "line": 1626, "character": 4 } ], @@ -87948,7 +89402,7 @@ } }, { - "id": 2140, + "id": 2142, "name": "iat", "variant": "declaration", "kind": 1024, @@ -87956,7 +89410,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1638, + "line": 1627, "character": 4 } ], @@ -87966,7 +89420,7 @@ } }, { - "id": 2136, + "id": 2138, "name": "iss", "variant": "declaration", "kind": 1024, @@ -87974,7 +89428,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1634, + "line": 1623, "character": 4 } ], @@ -87984,7 +89438,7 @@ } }, { - "id": 2141, + "id": 2143, "name": "role", "variant": "declaration", "kind": 1024, @@ -87992,7 +89446,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1639, + "line": 1628, "character": 4 } ], @@ -88002,7 +89456,7 @@ } }, { - "id": 2143, + "id": 2145, "name": "session_id", "variant": "declaration", "kind": 1024, @@ -88010,7 +89464,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1641, + "line": 1630, "character": 4 } ], @@ -88020,7 +89474,7 @@ } }, { - "id": 2137, + "id": 2139, "name": "sub", "variant": "declaration", "kind": 1024, @@ -88028,7 +89482,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1635, + "line": 1624, "character": 4 } ], @@ -88041,13 +89495,13 @@ "groups": [ { "title": "Properties", - "children": [2142, 2138, 2139, 2140, 2136, 2141, 2143, 2137] + "children": [2144, 2140, 2141, 2142, 2138, 2143, 2145, 2139] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1633, + "line": 1622, "character": 29 } ] @@ -88056,13 +89510,13 @@ "extendedBy": [ { "type": "reference", - "target": 2144, + "target": 2146, "name": "JwtPayload" } ] }, { - "id": 1908, + "id": 1910, "name": "ResendParams", "variant": "declaration", "kind": 2097152, @@ -88070,7 +89524,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 705, + "line": 694, "character": 12 } ], @@ -88080,14 +89534,14 @@ { "type": "reflection", "declaration": { - "id": 1909, + "id": 1911, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1911, + "id": 1913, "name": "email", "variant": "declaration", "kind": 1024, @@ -88095,7 +89549,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 707, + "line": 696, "character": 4 } ], @@ -88105,7 +89559,7 @@ } }, { - "id": 1912, + "id": 1914, "name": "options", "variant": "declaration", "kind": 1024, @@ -88115,21 +89569,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 708, + "line": 697, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1913, + "id": 1915, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1915, + "id": 1917, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88147,7 +89601,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 712, + "line": 701, "character": 8 } ], @@ -88157,7 +89611,7 @@ } }, { - "id": 1914, + "id": 1916, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -88175,7 +89629,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 710, + "line": 699, "character": 8 } ], @@ -88188,13 +89642,13 @@ "groups": [ { "title": "Properties", - "children": [1915, 1914] + "children": [1917, 1916] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 708, + "line": 697, "character": 14 } ] @@ -88202,7 +89656,7 @@ } }, { - "id": 1910, + "id": 1912, "name": "type", "variant": "declaration", "kind": 1024, @@ -88210,7 +89664,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 706, + "line": 695, "character": 4 } ], @@ -88223,7 +89677,7 @@ "typeArguments": [ { "type": "reference", - "target": 1906, + "target": 1908, "name": "EmailOtpType", "package": "@supabase/auth-js" }, @@ -88249,13 +89703,13 @@ "groups": [ { "title": "Properties", - "children": [1911, 1912, 1910] + "children": [1913, 1914, 1912] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 705, + "line": 694, "character": 27 } ] @@ -88264,14 +89718,14 @@ { "type": "reflection", "declaration": { - "id": 1916, + "id": 1918, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1919, + "id": 1921, "name": "options", "variant": "declaration", "kind": 1024, @@ -88281,21 +89735,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 717, + "line": 706, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1920, + "id": 1922, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1921, + "id": 1923, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88313,7 +89767,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 719, + "line": 708, "character": 8 } ], @@ -88326,13 +89780,13 @@ "groups": [ { "title": "Properties", - "children": [1921] + "children": [1923] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 717, + "line": 706, "character": 14 } ] @@ -88340,7 +89794,7 @@ } }, { - "id": 1918, + "id": 1920, "name": "phone", "variant": "declaration", "kind": 1024, @@ -88348,7 +89802,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 716, + "line": 705, "character": 4 } ], @@ -88358,7 +89812,7 @@ } }, { - "id": 1917, + "id": 1919, "name": "type", "variant": "declaration", "kind": 1024, @@ -88366,7 +89820,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 715, + "line": 704, "character": 4 } ], @@ -88379,7 +89833,7 @@ "typeArguments": [ { "type": "reference", - "target": 1904, + "target": 1906, "name": "MobileOtpType", "package": "@supabase/auth-js" }, @@ -88405,13 +89859,13 @@ "groups": [ { "title": "Properties", - "children": [1919, 1918, 1917] + "children": [1921, 1920, 1919] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 714, + "line": 703, "character": 4 } ] @@ -88421,7 +89875,7 @@ } }, { - "id": 1772, + "id": 1774, "name": "SignInAnonymouslyCredentials", "variant": "declaration", "kind": 2097152, @@ -88429,21 +89883,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 506, + "line": 495, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1773, + "id": 1775, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1774, + "id": 1776, "name": "options", "variant": "declaration", "kind": 1024, @@ -88453,21 +89907,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 507, + "line": 496, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1775, + "id": 1777, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1777, + "id": 1779, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88485,7 +89939,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 515, + "line": 504, "character": 8 } ], @@ -88495,7 +89949,7 @@ } }, { - "id": 1776, + "id": 1778, "name": "data", "variant": "declaration", "kind": 1024, @@ -88529,7 +89983,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 513, + "line": 502, "character": 8 } ], @@ -88542,13 +89996,13 @@ "groups": [ { "title": "Properties", - "children": [1777, 1776] + "children": [1779, 1778] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 507, + "line": 496, "character": 14 } ] @@ -88559,13 +90013,13 @@ "groups": [ { "title": "Properties", - "children": [1774] + "children": [1776] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 506, + "line": 495, "character": 43 } ] @@ -88573,7 +90027,7 @@ } }, { - "id": 1822, + "id": 1824, "name": "SignInWithIdTokenCredentials", "variant": "declaration", "kind": 2097152, @@ -88581,21 +90035,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 590, + "line": 579, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1823, + "id": 1825, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1827, + "id": 1829, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -88621,7 +90075,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 596, + "line": 585, "character": 4 } ], @@ -88631,7 +90085,7 @@ } }, { - "id": 1828, + "id": 1830, "name": "nonce", "variant": "declaration", "kind": 1024, @@ -88657,7 +90111,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 598, + "line": 587, "character": 4 } ], @@ -88667,7 +90121,7 @@ } }, { - "id": 1829, + "id": 1831, "name": "options", "variant": "declaration", "kind": 1024, @@ -88677,21 +90131,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 599, + "line": 588, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1830, + "id": 1832, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1831, + "id": 1833, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88709,7 +90163,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 601, + "line": 590, "character": 8 } ], @@ -88722,13 +90176,13 @@ "groups": [ { "title": "Properties", - "children": [1831] + "children": [1833] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 599, + "line": 588, "character": 14 } ] @@ -88736,7 +90190,7 @@ } }, { - "id": 1824, + "id": 1826, "name": "provider", "variant": "declaration", "kind": 1024, @@ -88816,7 +90270,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 592, + "line": 581, "character": 4 } ], @@ -88866,7 +90320,7 @@ { "type": "reflection", "declaration": { - "id": 1825, + "id": 1827, "name": "__type", "variant": "declaration", "kind": 65536, @@ -88874,7 +90328,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 592, + "line": 581, "character": 99 } ] @@ -88886,7 +90340,7 @@ } }, { - "id": 1826, + "id": 1828, "name": "token", "variant": "declaration", "kind": 1024, @@ -88934,7 +90388,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 594, + "line": 583, "character": 4 } ], @@ -88947,13 +90401,13 @@ "groups": [ { "title": "Properties", - "children": [1827, 1828, 1829, 1824, 1826] + "children": [1829, 1830, 1831, 1826, 1828] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 590, + "line": 579, "character": 43 } ] @@ -88961,7 +90415,7 @@ } }, { - "id": 1810, + "id": 1812, "name": "SignInWithOAuthCredentials", "variant": "declaration", "kind": 2097152, @@ -88969,21 +90423,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 574, + "line": 563, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1811, + "id": 1813, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1813, + "id": 1815, "name": "options", "variant": "declaration", "kind": 1024, @@ -88993,21 +90447,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 577, + "line": 566, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1814, + "id": 1816, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1817, + "id": 1819, "name": "queryParams", "variant": "declaration", "kind": 1024, @@ -89025,14 +90479,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 583, + "line": 572, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1818, + "id": 1820, "name": "__type", "variant": "declaration", "kind": 65536, @@ -89040,13 +90494,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 583, + "line": 572, "character": 22 } ], "indexSignatures": [ { - "id": 1819, + "id": 1821, "name": "__index", "variant": "signature", "kind": 8192, @@ -89054,13 +90508,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 584, + "line": 573, "character": 12 } ], "parameters": [ { - "id": 1820, + "id": 1822, "name": "key", "variant": "param", "kind": 32768, @@ -89081,7 +90535,7 @@ } }, { - "id": 1815, + "id": 1817, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -89099,7 +90553,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 579, + "line": 568, "character": 8 } ], @@ -89109,7 +90563,7 @@ } }, { - "id": 1816, + "id": 1818, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -89127,7 +90581,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 581, + "line": 570, "character": 8 } ], @@ -89137,7 +90591,7 @@ } }, { - "id": 1821, + "id": 1823, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -89155,7 +90609,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 587, + "line": 576, "character": 8 } ], @@ -89168,13 +90622,13 @@ "groups": [ { "title": "Properties", - "children": [1817, 1815, 1816, 1821] + "children": [1819, 1817, 1818, 1823] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 577, + "line": 566, "character": 14 } ] @@ -89182,7 +90636,7 @@ } }, { - "id": 1812, + "id": 1814, "name": "provider", "variant": "declaration", "kind": 1024, @@ -89198,13 +90652,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 576, + "line": 565, "character": 4 } ], "type": { "type": "reference", - "target": 1585, + "target": 1587, "name": "Provider", "package": "@supabase/auth-js" } @@ -89213,13 +90667,13 @@ "groups": [ { "title": "Properties", - "children": [1813, 1812] + "children": [1815, 1814] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 574, + "line": 563, "character": 41 } ] @@ -89227,7 +90681,7 @@ } }, { - "id": 2442, + "id": 2444, "name": "SignInWithPasskeyCredentials", "variant": "declaration", "kind": 2097152, @@ -89235,21 +90689,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2359, + "line": 2348, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2443, + "id": 2445, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2444, + "id": 2446, "name": "options", "variant": "declaration", "kind": 1024, @@ -89259,21 +90713,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2360, + "line": 2349, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2445, + "id": 2447, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2446, + "id": 2448, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89283,7 +90737,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2361, + "line": 2350, "character": 8 } ], @@ -89293,7 +90747,7 @@ } }, { - "id": 2447, + "id": 2449, "name": "signal", "variant": "declaration", "kind": 1024, @@ -89303,7 +90757,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2362, + "line": 2351, "character": 8 } ], @@ -89321,13 +90775,13 @@ "groups": [ { "title": "Properties", - "children": [2446, 2447] + "children": [2448, 2449] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2360, + "line": 2349, "character": 14 } ] @@ -89338,13 +90792,13 @@ "groups": [ { "title": "Properties", - "children": [2444] + "children": [2446] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2359, + "line": 2348, "character": 43 } ] @@ -89352,7 +90806,7 @@ } }, { - "id": 1786, + "id": 1788, "name": "SignInWithPasswordCredentials", "variant": "declaration", "kind": 2097152, @@ -89360,7 +90814,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 533, + "line": 522, "character": 12 } ], @@ -89379,14 +90833,14 @@ { "type": "reflection", "declaration": { - "id": 1787, + "id": 1789, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1788, + "id": 1790, "name": "options", "variant": "declaration", "kind": 1024, @@ -89396,21 +90850,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 534, + "line": 523, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1789, + "id": 1791, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1790, + "id": 1792, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89420,7 +90874,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 535, + "line": 524, "character": 8 } ], @@ -89433,13 +90887,13 @@ "groups": [ { "title": "Properties", - "children": [1790] + "children": [1792] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 534, + "line": 523, "character": 14 } ] @@ -89450,13 +90904,13 @@ "groups": [ { "title": "Properties", - "children": [1788] + "children": [1790] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 533, + "line": 522, "character": 70 } ] @@ -89466,7 +90920,7 @@ } }, { - "id": 1791, + "id": 1793, "name": "SignInWithPasswordlessCredentials", "variant": "declaration", "kind": 2097152, @@ -89474,7 +90928,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 538, + "line": 527, "character": 12 } ], @@ -89484,14 +90938,14 @@ { "type": "reflection", "declaration": { - "id": 1792, + "id": 1794, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1793, + "id": 1795, "name": "email", "variant": "declaration", "kind": 1024, @@ -89507,7 +90961,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 540, + "line": 529, "character": 4 } ], @@ -89517,7 +90971,7 @@ } }, { - "id": 1794, + "id": 1796, "name": "options", "variant": "declaration", "kind": 1024, @@ -89527,21 +90981,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 541, + "line": 530, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1795, + "id": 1797, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1799, + "id": 1801, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89559,7 +91013,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 553, + "line": 542, "character": 8 } ], @@ -89569,7 +91023,7 @@ } }, { - "id": 1798, + "id": 1800, "name": "data", "variant": "declaration", "kind": 1024, @@ -89603,7 +91057,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 551, + "line": 540, "character": 8 } ], @@ -89613,7 +91067,7 @@ } }, { - "id": 1796, + "id": 1798, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -89631,7 +91085,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 543, + "line": 532, "character": 8 } ], @@ -89641,7 +91095,7 @@ } }, { - "id": 1797, + "id": 1799, "name": "shouldCreateUser", "variant": "declaration", "kind": 1024, @@ -89659,7 +91113,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 545, + "line": 534, "character": 8 } ], @@ -89672,13 +91126,13 @@ "groups": [ { "title": "Properties", - "children": [1799, 1798, 1796, 1797] + "children": [1801, 1800, 1798, 1799] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 541, + "line": 530, "character": 14 } ] @@ -89689,13 +91143,13 @@ "groups": [ { "title": "Properties", - "children": [1793, 1794] + "children": [1795, 1796] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 538, + "line": 527, "character": 48 } ] @@ -89704,14 +91158,14 @@ { "type": "reflection", "declaration": { - "id": 1800, + "id": 1802, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1802, + "id": 1804, "name": "options", "variant": "declaration", "kind": 1024, @@ -89721,21 +91175,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 558, + "line": 547, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1803, + "id": 1805, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1806, + "id": 1808, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89753,7 +91207,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 568, + "line": 557, "character": 8 } ], @@ -89763,7 +91217,7 @@ } }, { - "id": 1807, + "id": 1809, "name": "channel", "variant": "declaration", "kind": 1024, @@ -89781,7 +91235,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 570, + "line": 559, "character": 8 } ], @@ -89800,7 +91254,7 @@ } }, { - "id": 1805, + "id": 1807, "name": "data", "variant": "declaration", "kind": 1024, @@ -89834,7 +91288,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 566, + "line": 555, "character": 8 } ], @@ -89844,7 +91298,7 @@ } }, { - "id": 1804, + "id": 1806, "name": "shouldCreateUser", "variant": "declaration", "kind": 1024, @@ -89862,7 +91316,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 560, + "line": 549, "character": 8 } ], @@ -89875,13 +91329,13 @@ "groups": [ { "title": "Properties", - "children": [1806, 1807, 1805, 1804] + "children": [1808, 1809, 1807, 1806] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 558, + "line": 547, "character": 14 } ] @@ -89889,7 +91343,7 @@ } }, { - "id": 1801, + "id": 1803, "name": "phone", "variant": "declaration", "kind": 1024, @@ -89905,7 +91359,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 557, + "line": 546, "character": 4 } ], @@ -89918,13 +91372,13 @@ "groups": [ { "title": "Properties", - "children": [1802, 1801] + "children": [1804, 1803] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 555, + "line": 544, "character": 4 } ] @@ -89934,7 +91388,7 @@ } }, { - "id": 1922, + "id": 1924, "name": "SignInWithSSO", "variant": "declaration", "kind": 2097152, @@ -89942,7 +91396,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 722, + "line": 711, "character": 12 } ], @@ -89952,14 +91406,14 @@ { "type": "reflection", "declaration": { - "id": 1923, + "id": 1925, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1925, + "id": 1927, "name": "options", "variant": "declaration", "kind": 1024, @@ -89969,21 +91423,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 725, + "line": 714, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1926, + "id": 1928, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1928, + "id": 1930, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -90001,7 +91455,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 729, + "line": 718, "character": 8 } ], @@ -90011,7 +91465,7 @@ } }, { - "id": 1927, + "id": 1929, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -90029,7 +91483,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 727, + "line": 716, "character": 8 } ], @@ -90039,7 +91493,7 @@ } }, { - "id": 1929, + "id": 1931, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -90057,7 +91511,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 735, + "line": 724, "character": 8 } ], @@ -90070,13 +91524,13 @@ "groups": [ { "title": "Properties", - "children": [1928, 1927, 1929] + "children": [1930, 1929, 1931] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 725, + "line": 714, "character": 14 } ] @@ -90084,7 +91538,7 @@ } }, { - "id": 1924, + "id": 1926, "name": "providerId", "variant": "declaration", "kind": 1024, @@ -90100,7 +91554,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 724, + "line": 713, "character": 4 } ], @@ -90113,13 +91567,13 @@ "groups": [ { "title": "Properties", - "children": [1925, 1924] + "children": [1927, 1926] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 722, + "line": 711, "character": 28 } ] @@ -90128,14 +91582,14 @@ { "type": "reflection", "declaration": { - "id": 1930, + "id": 1932, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1931, + "id": 1933, "name": "domain", "variant": "declaration", "kind": 1024, @@ -90151,7 +91605,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 739, + "line": 728, "character": 4 } ], @@ -90161,7 +91615,7 @@ } }, { - "id": 1932, + "id": 1934, "name": "options", "variant": "declaration", "kind": 1024, @@ -90171,21 +91625,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 740, + "line": 729, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1933, + "id": 1935, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1935, + "id": 1937, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -90203,7 +91657,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 744, + "line": 733, "character": 8 } ], @@ -90213,7 +91667,7 @@ } }, { - "id": 1934, + "id": 1936, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -90231,7 +91685,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 742, + "line": 731, "character": 8 } ], @@ -90241,7 +91695,7 @@ } }, { - "id": 1936, + "id": 1938, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -90259,7 +91713,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 750, + "line": 739, "character": 8 } ], @@ -90272,13 +91726,13 @@ "groups": [ { "title": "Properties", - "children": [1935, 1934, 1936] + "children": [1937, 1936, 1938] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 740, + "line": 729, "character": 14 } ] @@ -90289,13 +91743,13 @@ "groups": [ { "title": "Properties", - "children": [1931, 1932] + "children": [1933, 1934] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 737, + "line": 726, "character": 4 } ] @@ -90305,7 +91759,7 @@ } }, { - "id": 2119, + "id": 2121, "name": "SignOut", "variant": "declaration", "kind": 2097152, @@ -90313,21 +91767,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1555, + "line": 1544, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2120, + "id": 2122, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2121, + "id": 2123, "name": "scope", "variant": "declaration", "kind": 1024, @@ -90345,7 +91799,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1566, + "line": 1555, "character": 4 } ], @@ -90371,13 +91825,13 @@ "groups": [ { "title": "Properties", - "children": [2121] + "children": [2123] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1555, + "line": 1544, "character": 22 } ] @@ -90385,7 +91839,7 @@ } }, { - "id": 2173, + "id": 2175, "name": "SignOutScope", "variant": "declaration", "kind": 2097152, @@ -90393,7 +91847,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1677, + "line": 1666, "character": 12 } ], @@ -90407,7 +91861,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 2172, + "target": 2174, "name": "SIGN_OUT_SCOPES", "package": "@supabase/auth-js" } @@ -90415,7 +91869,7 @@ } }, { - "id": 1778, + "id": 1780, "name": "SignUpWithPasswordCredentials", "variant": "declaration", "kind": 2097152, @@ -90423,7 +91877,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 518, + "line": 507, "character": 12 } ], @@ -90442,14 +91896,14 @@ { "type": "reflection", "declaration": { - "id": 1779, + "id": 1781, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1780, + "id": 1782, "name": "options", "variant": "declaration", "kind": 1024, @@ -90459,21 +91913,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 519, + "line": 508, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1781, + "id": 1783, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1784, + "id": 1786, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -90483,7 +91937,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 522, + "line": 511, "character": 8 } ], @@ -90493,7 +91947,7 @@ } }, { - "id": 1785, + "id": 1787, "name": "channel", "variant": "declaration", "kind": 1024, @@ -90503,7 +91957,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 523, + "line": 512, "character": 8 } ], @@ -90522,7 +91976,7 @@ } }, { - "id": 1783, + "id": 1785, "name": "data", "variant": "declaration", "kind": 1024, @@ -90532,7 +91986,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 521, + "line": 510, "character": 8 } ], @@ -90542,7 +91996,7 @@ } }, { - "id": 1782, + "id": 1784, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -90552,7 +92006,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 520, + "line": 509, "character": 8 } ], @@ -90565,13 +92019,13 @@ "groups": [ { "title": "Properties", - "children": [1784, 1785, 1783, 1782] + "children": [1786, 1787, 1785, 1784] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 519, + "line": 508, "character": 14 } ] @@ -90582,13 +92036,13 @@ "groups": [ { "title": "Properties", - "children": [1780] + "children": [1782] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 518, + "line": 507, "character": 70 } ] @@ -90598,7 +92052,7 @@ } }, { - "id": 1832, + "id": 1834, "name": "SolanaWallet", "variant": "declaration", "kind": 2097152, @@ -90606,21 +92060,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 604, + "line": 593, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1833, + "id": 1835, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1838, + "id": 1840, "name": "publicKey", "variant": "declaration", "kind": 1024, @@ -90630,7 +92084,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 606, + "line": 595, "character": 4 } ], @@ -90640,14 +92094,14 @@ { "type": "reflection", "declaration": { - "id": 1839, + "id": 1841, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1840, + "id": 1842, "name": "toBase58", "variant": "declaration", "kind": 1024, @@ -90655,14 +92109,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 607, + "line": 596, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1841, + "id": 1843, "name": "__type", "variant": "declaration", "kind": 65536, @@ -90670,13 +92124,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 607, + "line": 596, "character": 18 } ], "signatures": [ { - "id": 1842, + "id": 1844, "name": "__type", "variant": "signature", "kind": 4096, @@ -90694,13 +92148,13 @@ "groups": [ { "title": "Properties", - "children": [1840] + "children": [1842] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 606, + "line": 595, "character": 16 } ] @@ -90714,7 +92168,7 @@ } }, { - "id": 1834, + "id": 1836, "name": "signIn", "variant": "declaration", "kind": 1024, @@ -90724,14 +92178,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 605, + "line": 594, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1835, + "id": 1837, "name": "__type", "variant": "declaration", "kind": 65536, @@ -90739,20 +92193,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 605, + "line": 594, "character": 13 } ], "signatures": [ { - "id": 1836, + "id": 1838, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1837, + "id": 1839, "name": "inputs", "variant": "param", "kind": 32768, @@ -90816,7 +92270,7 @@ } }, { - "id": 1843, + "id": 1845, "name": "signMessage", "variant": "declaration", "kind": 1024, @@ -90826,14 +92280,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 609, + "line": 598, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1844, + "id": 1846, "name": "__type", "variant": "declaration", "kind": 65536, @@ -90841,20 +92295,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 609, + "line": 598, "character": 18 } ], "signatures": [ { - "id": 1845, + "id": 1847, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1846, + "id": 1848, "name": "message", "variant": "param", "kind": 32768, @@ -90870,7 +92324,7 @@ } }, { - "id": 1847, + "id": 1849, "name": "encoding", "variant": "param", "kind": 32768, @@ -90930,13 +92384,13 @@ "groups": [ { "title": "Properties", - "children": [1838, 1834, 1843] + "children": [1840, 1836, 1845] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 604, + "line": 593, "character": 27 } ] @@ -90944,7 +92398,7 @@ } }, { - "id": 1848, + "id": 1850, "name": "SolanaWeb3Credentials", "variant": "declaration", "kind": 2097152, @@ -90952,7 +92406,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 611, + "line": 600, "character": 12 } ], @@ -90962,14 +92416,14 @@ { "type": "reflection", "declaration": { - "id": 1849, + "id": 1851, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1850, + "id": 1852, "name": "chain", "variant": "declaration", "kind": 1024, @@ -90977,7 +92431,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 612, + "line": 601, "character": 4 } ], @@ -90987,7 +92441,7 @@ } }, { - "id": 1853, + "id": 1855, "name": "options", "variant": "declaration", "kind": 1024, @@ -90997,21 +92451,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 617, + "line": 606, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1854, + "id": 1856, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1856, + "id": 1858, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -91029,7 +92483,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 621, + "line": 610, "character": 8 } ], @@ -91039,7 +92493,7 @@ } }, { - "id": 1857, + "id": 1859, "name": "signInWithSolana", "variant": "declaration", "kind": 1024, @@ -91049,7 +92503,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 622, + "line": 611, "character": 8 } ], @@ -91111,7 +92565,7 @@ } }, { - "id": 1855, + "id": 1857, "name": "url", "variant": "declaration", "kind": 1024, @@ -91129,7 +92583,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 619, + "line": 608, "character": 8 } ], @@ -91142,13 +92596,13 @@ "groups": [ { "title": "Properties", - "children": [1856, 1857, 1855] + "children": [1858, 1859, 1857] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 617, + "line": 606, "character": 14 } ] @@ -91156,7 +92610,7 @@ } }, { - "id": 1852, + "id": 1854, "name": "statement", "variant": "declaration", "kind": 1024, @@ -91174,7 +92628,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 616, + "line": 605, "character": 4 } ], @@ -91184,7 +92638,7 @@ } }, { - "id": 1851, + "id": 1853, "name": "wallet", "variant": "declaration", "kind": 1024, @@ -91210,13 +92664,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 614, + "line": 603, "character": 4 } ], "type": { "type": "reference", - "target": 1832, + "target": 1834, "name": "SolanaWallet", "package": "@supabase/auth-js" } @@ -91225,13 +92679,13 @@ "groups": [ { "title": "Properties", - "children": [1850, 1853, 1852, 1851] + "children": [1852, 1855, 1854, 1853] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 611, + "line": 600, "character": 36 } ] @@ -91240,14 +92694,14 @@ { "type": "reflection", "declaration": { - "id": 1858, + "id": 1860, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1859, + "id": 1861, "name": "chain", "variant": "declaration", "kind": 1024, @@ -91255,7 +92709,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 625, + "line": 614, "character": 4 } ], @@ -91265,7 +92719,7 @@ } }, { - "id": 1860, + "id": 1862, "name": "message", "variant": "declaration", "kind": 1024, @@ -91305,7 +92759,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 627, + "line": 616, "character": 4 } ], @@ -91315,7 +92769,7 @@ } }, { - "id": 1862, + "id": 1864, "name": "options", "variant": "declaration", "kind": 1024, @@ -91325,21 +92779,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 630, + "line": 619, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1863, + "id": 1865, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1864, + "id": 1866, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -91357,7 +92811,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 632, + "line": 621, "character": 8 } ], @@ -91370,13 +92824,13 @@ "groups": [ { "title": "Properties", - "children": [1864] + "children": [1866] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 630, + "line": 619, "character": 14 } ] @@ -91384,7 +92838,7 @@ } }, { - "id": 1861, + "id": 1863, "name": "signature", "variant": "declaration", "kind": 1024, @@ -91400,7 +92854,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 629, + "line": 618, "character": 4 } ], @@ -91418,13 +92872,13 @@ "groups": [ { "title": "Properties", - "children": [1859, 1860, 1862, 1861] + "children": [1861, 1862, 1864, 1863] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 624, + "line": 613, "character": 4 } ] @@ -91434,7 +92888,7 @@ } }, { - "id": 1696, + "id": 1698, "name": "SSOResponse", "variant": "declaration", "kind": 2097152, @@ -91442,25 +92896,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 232, + "line": 221, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1697, + "id": 1699, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1698, + "id": 1700, "name": "url", "variant": "declaration", "kind": 1024, @@ -91484,7 +92938,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 240, + "line": 229, "character": 4 } ], @@ -91497,13 +92951,13 @@ "groups": [ { "title": "Properties", - "children": [1698] + "children": [1700] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 232, + "line": 221, "character": 40 } ] @@ -91515,7 +92969,7 @@ } }, { - "id": 2457, + "id": 2459, "name": "StartPasskeyAuthenticationParams", "variant": "declaration", "kind": 2097152, @@ -91523,21 +92977,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2376, + "line": 2365, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2458, + "id": 2460, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2459, + "id": 2461, "name": "options", "variant": "declaration", "kind": 1024, @@ -91547,21 +93001,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2377, + "line": 2366, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2460, + "id": 2462, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2461, + "id": 2463, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -91571,7 +93025,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2378, + "line": 2367, "character": 8 } ], @@ -91584,13 +93038,13 @@ "groups": [ { "title": "Properties", - "children": [2461] + "children": [2463] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2377, + "line": 2366, "character": 14 } ] @@ -91601,13 +93055,13 @@ "groups": [ { "title": "Properties", - "children": [2459] + "children": [2461] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2376, + "line": 2365, "character": 47 } ] @@ -91615,7 +93069,7 @@ } }, { - "id": 1640, + "id": 1642, "name": "StrictOmit", "variant": "declaration", "kind": 2097152, @@ -91631,20 +93085,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 167, + "line": 156, "character": 12 } ], "typeParameters": [ { - "id": 1641, + "id": 1643, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 1642, + "id": 1644, "name": "K", "variant": "typeParam", "kind": 131072, @@ -91654,7 +93108,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1641, + "target": 1643, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -91671,14 +93125,14 @@ "typeArguments": [ { "type": "reference", - "target": 1641, + "target": 1643, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 1642, + "target": 1644, "name": "K", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -91699,7 +93153,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 96, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L96" } ], "typeParameters": [ @@ -91747,9 +93201,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 245, + "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L252" } ], "type": { @@ -91763,9 +93217,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 245, + "line": 252, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L252" } ], "signatures": [ @@ -91817,7 +93271,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L129" } ], "type": { @@ -91850,7 +93304,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 133, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L133" } ], "type": { @@ -91879,7 +93333,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 183, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L183" } ], "type": { @@ -91932,7 +93386,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "type": { @@ -91955,7 +93409,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "signatures": [ @@ -92001,7 +93455,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "indexSignatures": [ @@ -92016,7 +93470,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "parameters": [ @@ -92073,9 +93527,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 201, + "line": 206, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L206" } ], "type": { @@ -92116,7 +93570,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 179, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L179" } ], "type": { @@ -92148,17 +93602,43 @@ "summary": [ { "kind": "text", - "text": "Provide your own locking mechanism based on the environment. By default no locking is done at this time." + "text": "Provide your own locking mechanism based on the environment. By default\nthe auth client coordinates refreshes itself and the server resolves\ncross-tab races. Passing a custom " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " opts into a legacy path that\nwraps every auth operation in your supplied lock." } ], - "modifierTags": ["@experimental"] + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Custom locks still work in v2.x for backwards compatibility.\nThe legacy lock path will be removed in v3 — drop this option from your\n" + }, + { + "kind": "code", + "text": "`createClient`" + }, + { + "kind": "text", + "text": " options before upgrading." + } + ] + } + ] }, "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 189, + "line": 194, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L194" } ], "type": { @@ -92190,15 +93670,23 @@ "summary": [ { "kind": "text", - "text": "Maximum time in milliseconds to wait when acquiring the auth lock before\nstealing it from the previous holder. See " + "text": "Maximum time in milliseconds to wait for acquiring the custom lock\nsupplied via " }, { "kind": "code", - "text": "`GoTrueClientOptions.lockAcquireTimeout`" + "text": "`lock`" }, { "kind": "text", - "text": "\nfor full semantics (zero fails immediately, negative waits indefinitely)." + "text": ". Only consulted when a custom " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " is passed." } ], "blockTags": [ @@ -92210,15 +93698,32 @@ "text": "```ts\n5000\n```" } ] + }, + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Only used by the legacy lock path. Will be removed in v3\nalong with the " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " option." + } + ] } ] }, "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 209, + "line": 216, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L216" } ], "type": { @@ -92259,7 +93764,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 141, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L141" } ], "type": { @@ -92297,9 +93802,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 217, + "line": 224, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L224" } ], "type": { @@ -92340,7 +93845,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 167, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L167" } ], "type": { @@ -92381,7 +93886,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 137, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L137" } ], "type": { @@ -92408,9 +93913,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 194, + "line": 199, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L199" } ], "type": { @@ -92452,7 +93957,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 175, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L175" } ], "type": { @@ -92487,7 +93992,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 129, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L129" } ] } @@ -92522,7 +94027,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L100" } ], "type": { @@ -92547,7 +94052,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 101, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L101" } ], "type": { @@ -92591,7 +94096,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 113, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L113" } ], "type": { @@ -92632,7 +94137,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L126" } ], "type": { @@ -92652,7 +94157,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 100, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L100" } ] } @@ -92669,9 +94174,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 224, + "line": 231, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L231" } ], "type": { @@ -92710,9 +94215,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 228, + "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L235" } ], "type": { @@ -92744,9 +94249,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 232, + "line": 239, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L239" } ], "type": { @@ -92779,9 +94284,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 224, + "line": 231, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L231" } ] } @@ -92806,14 +94311,14 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 222, + "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L229" } ], "type": { "type": "reference", - "target": 3251, + "target": 3273, "name": "RealtimeClientOptions", "package": "@supabase/realtime-js" } @@ -92829,9 +94334,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 223, + "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L230" } ], "type": { @@ -92980,9 +94485,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 294, + "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L301" } ], "type": { @@ -93013,14 +94518,14 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 96, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L96" } ] } } }, { - "id": 2101, + "id": 2103, "name": "SupportedStorage", "variant": "declaration", "kind": 2097152, @@ -93028,7 +94533,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1529, + "line": 1518, "character": 12 } ], @@ -93086,14 +94591,14 @@ { "type": "reflection", "declaration": { - "id": 2102, + "id": 2104, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2103, + "id": 2105, "name": "isServer", "variant": "declaration", "kind": 1024, @@ -93119,7 +94624,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1537, + "line": 1526, "character": 4 } ], @@ -93132,13 +94637,13 @@ "groups": [ { "title": "Properties", - "children": [2103] + "children": [2105] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1529, + "line": 1518, "character": 103 } ] @@ -93148,7 +94653,7 @@ } }, { - "id": 2307, + "id": 2309, "name": "UpdateCustomProviderParams", "variant": "declaration", "kind": 2097152, @@ -93180,21 +94685,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1994, + "line": 1983, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2308, + "id": 2310, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2312, + "id": 2314, "name": "acceptable_client_ids", "variant": "declaration", "kind": 1024, @@ -93212,7 +94717,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2002, + "line": 1991, "character": 4 } ], @@ -93225,7 +94730,7 @@ } }, { - "id": 2315, + "id": 2317, "name": "attribute_mapping", "variant": "declaration", "kind": 1024, @@ -93243,7 +94748,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2008, + "line": 1997, "character": 4 } ], @@ -93268,7 +94773,7 @@ } }, { - "id": 2316, + "id": 2318, "name": "authorization_params", "variant": "declaration", "kind": 1024, @@ -93286,7 +94791,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2010, + "line": 1999, "character": 4 } ], @@ -93311,7 +94816,7 @@ } }, { - "id": 2322, + "id": 2324, "name": "authorization_url", "variant": "declaration", "kind": 1024, @@ -93329,7 +94834,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2022, + "line": 2011, "character": 4 } ], @@ -93339,7 +94844,7 @@ } }, { - "id": 2310, + "id": 2312, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -93357,7 +94862,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1998, + "line": 1987, "character": 4 } ], @@ -93367,7 +94872,7 @@ } }, { - "id": 2311, + "id": 2313, "name": "client_secret", "variant": "declaration", "kind": 1024, @@ -93385,7 +94890,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2000, + "line": 1989, "character": 4 } ], @@ -93395,7 +94900,7 @@ } }, { - "id": 2320, + "id": 2322, "name": "discovery_url", "variant": "declaration", "kind": 1024, @@ -93413,7 +94918,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2018, + "line": 2007, "character": 4 } ], @@ -93423,7 +94928,7 @@ } }, { - "id": 2318, + "id": 2320, "name": "email_optional", "variant": "declaration", "kind": 1024, @@ -93441,7 +94946,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2014, + "line": 2003, "character": 4 } ], @@ -93451,7 +94956,7 @@ } }, { - "id": 2317, + "id": 2319, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -93469,7 +94974,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2012, + "line": 2001, "character": 4 } ], @@ -93479,7 +94984,7 @@ } }, { - "id": 2319, + "id": 2321, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -93497,7 +95002,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2016, + "line": 2005, "character": 4 } ], @@ -93507,7 +95012,7 @@ } }, { - "id": 2325, + "id": 2327, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -93525,7 +95030,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2028, + "line": 2017, "character": 4 } ], @@ -93535,7 +95040,7 @@ } }, { - "id": 2309, + "id": 2311, "name": "name", "variant": "declaration", "kind": 1024, @@ -93553,7 +95058,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1996, + "line": 1985, "character": 4 } ], @@ -93563,7 +95068,7 @@ } }, { - "id": 2314, + "id": 2316, "name": "pkce_enabled", "variant": "declaration", "kind": 1024, @@ -93581,7 +95086,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2006, + "line": 1995, "character": 4 } ], @@ -93591,7 +95096,7 @@ } }, { - "id": 2313, + "id": 2315, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -93609,7 +95114,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2004, + "line": 1993, "character": 4 } ], @@ -93622,7 +95127,7 @@ } }, { - "id": 2321, + "id": 2323, "name": "skip_nonce_check", "variant": "declaration", "kind": 1024, @@ -93640,7 +95145,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2020, + "line": 2009, "character": 4 } ], @@ -93650,7 +95155,7 @@ } }, { - "id": 2323, + "id": 2325, "name": "token_url", "variant": "declaration", "kind": 1024, @@ -93668,7 +95173,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2024, + "line": 2013, "character": 4 } ], @@ -93678,7 +95183,7 @@ } }, { - "id": 2324, + "id": 2326, "name": "userinfo_url", "variant": "declaration", "kind": 1024, @@ -93696,7 +95201,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2026, + "line": 2015, "character": 4 } ], @@ -93710,15 +95215,15 @@ { "title": "Properties", "children": [ - 2312, 2315, 2316, 2322, 2310, 2311, 2320, 2318, 2317, 2319, 2325, 2309, - 2314, 2313, 2321, 2323, 2324 + 2314, 2317, 2318, 2324, 2312, 2313, 2322, 2320, 2319, 2321, 2327, 2311, + 2316, 2315, 2323, 2325, 2326 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1994, + "line": 1983, "character": 41 } ] @@ -93726,7 +95231,7 @@ } }, { - "id": 2205, + "id": 2207, "name": "UpdateOAuthClientParams", "variant": "declaration", "kind": 2097152, @@ -93742,21 +95247,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1762, + "line": 1751, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2206, + "id": 2208, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2207, + "id": 2209, "name": "client_name", "variant": "declaration", "kind": 1024, @@ -93774,7 +95279,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1764, + "line": 1753, "character": 4 } ], @@ -93784,7 +95289,7 @@ } }, { - "id": 2208, + "id": 2210, "name": "client_uri", "variant": "declaration", "kind": 1024, @@ -93802,7 +95307,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1766, + "line": 1755, "character": 4 } ], @@ -93812,7 +95317,7 @@ } }, { - "id": 2211, + "id": 2213, "name": "grant_types", "variant": "declaration", "kind": 1024, @@ -93830,7 +95335,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1772, + "line": 1761, "character": 4 } ], @@ -93838,14 +95343,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2174, + "target": 2176, "name": "OAuthClientGrantType", "package": "@supabase/auth-js" } } }, { - "id": 2209, + "id": 2211, "name": "logo_uri", "variant": "declaration", "kind": 1024, @@ -93863,7 +95368,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1768, + "line": 1757, "character": 4 } ], @@ -93873,7 +95378,7 @@ } }, { - "id": 2210, + "id": 2212, "name": "redirect_uris", "variant": "declaration", "kind": 1024, @@ -93891,7 +95396,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1770, + "line": 1759, "character": 4 } ], @@ -93904,7 +95409,7 @@ } }, { - "id": 2212, + "id": 2214, "name": "token_endpoint_auth_method", "variant": "declaration", "kind": 1024, @@ -93922,13 +95427,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1774, + "line": 1763, "character": 4 } ], "type": { "type": "reference", - "target": 2179, + "target": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "package": "@supabase/auth-js" } @@ -93937,13 +95442,13 @@ "groups": [ { "title": "Properties", - "children": [2207, 2208, 2211, 2209, 2210, 2212] + "children": [2209, 2210, 2213, 2211, 2212, 2214] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1762, + "line": 1751, "character": 38 } ] @@ -93951,7 +95456,7 @@ } }, { - "id": 1699, + "id": 1701, "name": "UserResponse", "variant": "declaration", "kind": 2097152, @@ -93959,25 +95464,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 242, + "line": 231, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1700, + "id": 1702, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1701, + "id": 1703, "name": "user", "variant": "declaration", "kind": 1024, @@ -93985,7 +95490,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 243, + "line": 232, "character": 4 } ], @@ -94000,13 +95505,13 @@ "groups": [ { "title": "Properties", - "children": [1701] + "children": [1703] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 242, + "line": 231, "character": 56 } ] @@ -94018,7 +95523,7 @@ } }, { - "id": 1884, + "id": 1886, "name": "VerifyOtpParams", "variant": "declaration", "kind": 2097152, @@ -94026,7 +95531,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 661, + "line": 650, "character": 12 } ], @@ -94035,19 +95540,19 @@ "types": [ { "type": "reference", - "target": 1885, + "target": 1887, "name": "VerifyMobileOtpParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1893, + "target": 1895, "name": "VerifyEmailOtpParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1901, + "target": 1903, "name": "VerifyTokenHashParams", "package": "@supabase/auth-js" } @@ -94055,7 +95560,7 @@ } }, { - "id": 2462, + "id": 2464, "name": "VerifyPasskeyAuthenticationParams", "variant": "declaration", "kind": 2097152, @@ -94063,21 +95568,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2381, + "line": 2370, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2463, + "id": 2465, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2464, + "id": 2466, "name": "challengeId", "variant": "declaration", "kind": 1024, @@ -94093,7 +95598,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2383, + "line": 2372, "character": 4 } ], @@ -94103,7 +95608,7 @@ } }, { - "id": 2465, + "id": 2467, "name": "credential", "variant": "declaration", "kind": 1024, @@ -94119,7 +95624,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2385, + "line": 2374, "character": 4 } ], @@ -94137,13 +95642,13 @@ "groups": [ { "title": "Properties", - "children": [2464, 2465] + "children": [2466, 2467] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2381, + "line": 2370, "character": 48 } ] @@ -94151,7 +95656,7 @@ } }, { - "id": 2453, + "id": 2455, "name": "VerifyPasskeyRegistrationParams", "variant": "declaration", "kind": 2097152, @@ -94159,21 +95664,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2370, + "line": 2359, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2454, + "id": 2456, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2455, + "id": 2457, "name": "challengeId", "variant": "declaration", "kind": 1024, @@ -94189,7 +95694,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2372, + "line": 2361, "character": 4 } ], @@ -94199,7 +95704,7 @@ } }, { - "id": 2456, + "id": 2458, "name": "credential", "variant": "declaration", "kind": 1024, @@ -94215,7 +95720,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2374, + "line": 2363, "character": 4 } ], @@ -94233,13 +95738,13 @@ "groups": [ { "title": "Properties", - "children": [2455, 2456] + "children": [2457, 2458] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2370, + "line": 2359, "character": 46 } ] @@ -94247,7 +95752,7 @@ } }, { - "id": 1634, + "id": 1636, "name": "WeakPassword", "variant": "declaration", "kind": 2097152, @@ -94255,21 +95760,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 151, + "line": 140, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1635, + "id": 1637, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1637, + "id": 1639, "name": "message", "variant": "declaration", "kind": 1024, @@ -94277,7 +95782,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 153, + "line": 142, "character": 4 } ], @@ -94287,7 +95792,7 @@ } }, { - "id": 1636, + "id": 1638, "name": "reasons", "variant": "declaration", "kind": 1024, @@ -94295,7 +95800,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 152, + "line": 141, "character": 4 } ], @@ -94303,7 +95808,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1633, + "target": 1635, "name": "WeakPasswordReasons", "package": "@supabase/auth-js" } @@ -94313,13 +95818,13 @@ "groups": [ { "title": "Properties", - "children": [1637, 1636] + "children": [1639, 1638] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 151, + "line": 140, "character": 27 } ] @@ -94327,7 +95832,7 @@ } }, { - "id": 1633, + "id": 1635, "name": "WeakPasswordReasons", "variant": "declaration", "kind": 2097152, @@ -94335,7 +95840,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 150, + "line": 139, "character": 12 } ], @@ -94361,7 +95866,7 @@ } }, { - "id": 1883, + "id": 1885, "name": "Web3Credentials", "variant": "declaration", "kind": 2097152, @@ -94369,7 +95874,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 660, + "line": 649, "character": 12 } ], @@ -94378,13 +95883,13 @@ "types": [ { "type": "reference", - "target": 1848, + "target": 1850, "name": "SolanaWeb3Credentials", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1866, + "target": 1868, "name": "EthereumWeb3Credentials", "package": "@supabase/auth-js" } @@ -94392,7 +95897,7 @@ } }, { - "id": 1559, + "id": 1561, "name": "AuthAdminApi", "variant": "declaration", "kind": 32, @@ -94418,7 +95923,7 @@ } }, { - "id": 1560, + "id": 1562, "name": "AuthClient", "variant": "declaration", "kind": 32, @@ -94436,7 +95941,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 1222, + "target": 1221, "name": "GoTrueClient", "package": "@supabase/auth-js", "qualifiedName": "default" @@ -94444,7 +95949,7 @@ } }, { - "id": 1574, + "id": 1576, "name": "lockInternals", "variant": "declaration", "kind": 32, @@ -94453,26 +95958,53 @@ }, "comment": { "summary": [], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Debug flag for " + }, + { + "kind": "code", + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " / " + }, + { + "kind": "code", + "text": "`processLock`" + }, + { + "kind": "text", + "text": ". The auth\nclient ignores both, so this has no client-side effect." + } + ] + } + ], "modifierTags": ["@experimental"] }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 4, + "line": 14, "character": 21 } ], "type": { "type": "reflection", "declaration": { - "id": 1575, + "id": 1577, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1576, + "id": 1578, "name": "debug", "variant": "declaration", "kind": 1024, @@ -94484,7 +96016,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 8, + "line": 18, "character": 4 } ], @@ -94497,13 +96029,13 @@ "groups": [ { "title": "Properties", - "children": [1576] + "children": [1578] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 4, + "line": 14, "character": 32 } ] @@ -94511,7 +96043,7 @@ } }, { - "id": 3390, + "id": 3412, "name": "REALTIME_CHANNEL_STATES", "variant": "declaration", "kind": 32, @@ -94528,14 +96060,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3391, + "id": 3413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3392, + "id": 3414, "name": "closed", "variant": "declaration", "kind": 1024, @@ -94555,7 +96087,7 @@ } }, { - "id": 3393, + "id": 3415, "name": "errored", "variant": "declaration", "kind": 1024, @@ -94575,7 +96107,7 @@ } }, { - "id": 3394, + "id": 3416, "name": "joined", "variant": "declaration", "kind": 1024, @@ -94595,7 +96127,7 @@ } }, { - "id": 3395, + "id": 3417, "name": "joining", "variant": "declaration", "kind": 1024, @@ -94615,7 +96147,7 @@ } }, { - "id": 3396, + "id": 3418, "name": "leaving", "variant": "declaration", "kind": 1024, @@ -94638,7 +96170,7 @@ "groups": [ { "title": "Properties", - "children": [3392, 3393, 3394, 3395, 3396] + "children": [3414, 3415, 3416, 3417, 3418] } ], "sources": [ @@ -94652,7 +96184,7 @@ } }, { - "id": 2172, + "id": 2174, "name": "SIGN_OUT_SCOPES", "variant": "declaration", "kind": 32, @@ -94662,7 +96194,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1676, + "line": 1665, "character": 21 } ], @@ -94719,7 +96251,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 47, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L47" } ], "signatures": [ @@ -94734,7 +96266,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 47, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L47" } ], "typeParameters": [ @@ -94782,7 +96314,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 51, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L51" } ], "type": { @@ -94802,7 +96334,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 51, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L51" } ] } @@ -95124,7 +96656,7 @@ ] }, { - "id": 2520, + "id": 2522, "name": "isAuthApiError", "variant": "declaration", "kind": 64, @@ -95138,7 +96670,7 @@ ], "signatures": [ { - "id": 2521, + "id": 2523, "name": "isAuthApiError", "variant": "signature", "kind": 4096, @@ -95152,7 +96684,7 @@ ], "parameters": [ { - "id": 2522, + "id": 2524, "name": "error", "variant": "param", "kind": 32768, @@ -95169,7 +96701,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2556, + "target": 2561, "name": "AuthApiError", "package": "@supabase/auth-js" } @@ -95178,7 +96710,7 @@ ] }, { - "id": 2517, + "id": 2519, "name": "isAuthError", "variant": "declaration", "kind": 64, @@ -95192,7 +96724,7 @@ ], "signatures": [ { - "id": 2518, + "id": 2520, "name": "isAuthError", "variant": "signature", "kind": 4096, @@ -95206,7 +96738,7 @@ ], "parameters": [ { - "id": 2519, + "id": 2521, "name": "error", "variant": "param", "kind": 32768, @@ -95223,7 +96755,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -95232,7 +96764,7 @@ ] }, { - "id": 2526, + "id": 2528, "name": "isAuthImplicitGrantRedirectError", "variant": "declaration", "kind": 64, @@ -95246,7 +96778,7 @@ ], "signatures": [ { - "id": 2527, + "id": 2529, "name": "isAuthImplicitGrantRedirectError", "variant": "signature", "kind": 4096, @@ -95260,7 +96792,7 @@ ], "parameters": [ { - "id": 2528, + "id": 2530, "name": "error", "variant": "param", "kind": 32768, @@ -95277,7 +96809,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2661, + "target": 2666, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" } @@ -95286,7 +96818,7 @@ ] }, { - "id": 2529, + "id": 2531, "name": "isAuthPKCECodeVerifierMissingError", "variant": "declaration", "kind": 64, @@ -95300,7 +96832,7 @@ ], "signatures": [ { - "id": 2530, + "id": 2532, "name": "isAuthPKCECodeVerifierMissingError", "variant": "signature", "kind": 4096, @@ -95314,7 +96846,7 @@ ], "parameters": [ { - "id": 2531, + "id": 2533, "name": "error", "variant": "param", "kind": 32768, @@ -95331,7 +96863,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2719, + "target": 2724, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" } @@ -95340,7 +96872,61 @@ ] }, { - "id": 2532, + "id": 2537, + "name": "isAuthRefreshDiscardedError", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 238, + "character": 24 + } + ], + "signatures": [ + { + "id": 2538, + "name": "isAuthRefreshDiscardedError", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 238, + "character": 24 + } + ], + "parameters": [ + { + "id": 2539, + "name": "error", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "unknown" + } + } + ], + "type": { + "type": "predicate", + "name": "error", + "asserts": false, + "targetType": { + "type": "reference", + "target": 2758, + "name": "AuthRefreshDiscardedError", + "package": "@supabase/auth-js" + } + } + } + ] + }, + { + "id": 2534, "name": "isAuthRetryableFetchError", "variant": "declaration", "kind": 64, @@ -95354,7 +96940,7 @@ ], "signatures": [ { - "id": 2533, + "id": 2535, "name": "isAuthRetryableFetchError", "variant": "signature", "kind": 4096, @@ -95368,7 +96954,7 @@ ], "parameters": [ { - "id": 2534, + "id": 2536, "name": "error", "variant": "param", "kind": 32768, @@ -95385,7 +96971,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2735, + "target": 2740, "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" } @@ -95394,7 +96980,7 @@ ] }, { - "id": 2523, + "id": 2525, "name": "isAuthSessionMissingError", "variant": "declaration", "kind": 64, @@ -95408,7 +96994,7 @@ ], "signatures": [ { - "id": 2524, + "id": 2526, "name": "isAuthSessionMissingError", "variant": "signature", "kind": 4096, @@ -95422,7 +97008,7 @@ ], "parameters": [ { - "id": 2525, + "id": 2527, "name": "error", "variant": "param", "kind": 32768, @@ -95439,7 +97025,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2612, + "target": 2617, "name": "AuthSessionMissingError", "package": "@supabase/auth-js" } @@ -95448,7 +97034,7 @@ ] }, { - "id": 2535, + "id": 2540, "name": "isAuthWeakPasswordError", "variant": "declaration", "kind": 64, @@ -95456,13 +97042,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 244, + "line": 268, "character": 24 } ], "signatures": [ { - "id": 2536, + "id": 2541, "name": "isAuthWeakPasswordError", "variant": "signature", "kind": 4096, @@ -95470,13 +97056,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 244, + "line": 268, "character": 24 } ], "parameters": [ { - "id": 2537, + "id": 2542, "name": "error", "variant": "param", "kind": 32768, @@ -95493,7 +97079,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2753, + "target": 2775, "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" } @@ -95502,7 +97088,7 @@ ] }, { - "id": 1561, + "id": 1563, "name": "navigatorLock", "variant": "declaration", "kind": 64, @@ -95510,13 +97096,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, + "line": 74, "character": 24 } ], "signatures": [ { - "id": 1562, + "id": 1564, "name": "navigatorLock", "variant": "signature", "kind": 4096, @@ -95531,7 +97117,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient", - "target": 1222 + "target": 1221 }, { "kind": "text", @@ -95572,210 +97158,19 @@ ], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ - { - "kind": "code", - "text": "```ts\nawait navigatorLock('sync-user', 1000, async () => {\n await refreshSession()\n})\n```" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, - "character": 24 - } - ], - "typeParameters": [ - { - "id": 1563, - "name": "R", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], - "parameters": [ - { - "id": 1564, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the lock to be acquired." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1565, - "name": "acquireTimeout", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ { "kind": "text", - "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " }, { "kind": "code", - "text": "`isAcquireTimeout`" + "text": "`{ lock: navigatorLock }`" }, { "kind": "text", - "text": " set to true." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1566, - "name": "fn", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The operation to run once the lock is acquired." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1567, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, - "character": 83 - } - ], - "signatures": [ - { - "id": 1568, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, - "character": 83 - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1563, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1563, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1577, - "name": "processLock", - "variant": "declaration", - "kind": 64, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, - "character": 24 - } - ], - "signatures": [ - { - "id": 1578, - "name": "processLock", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " - }, - { - "kind": "inline-tag", - "tag": "@link", - "text": "#navigatorLock" - }, - { - "kind": "text", - "text": " in browser environments." - } - ], - "blockTags": [ - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + "text": "\nto it has no effect. You can safely drop the import from your client setup." } ] } @@ -95784,13 +97179,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, + "line": 74, "character": 24 } ], "typeParameters": [ { - "id": 1579, + "id": 1565, "name": "R", "variant": "typeParam", "kind": 131072, @@ -95799,7 +97194,7 @@ ], "parameters": [ { - "id": 1580, + "id": 1566, "name": "name", "variant": "param", "kind": 32768, @@ -95818,7 +97213,7 @@ } }, { - "id": 1581, + "id": 1567, "name": "acquireTimeout", "variant": "param", "kind": 32768, @@ -95844,8 +97239,224 @@ "name": "number" } }, + { + "id": 1568, + "name": "fn", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The operation to run once the lock is acquired." + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1569, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 74, + "character": 83 + } + ], + "signatures": [ + { + "id": 1570, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 74, + "character": 83 + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1565, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1565, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 1579, + "name": "processLock", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 100, + "character": 24 + } + ], + "signatures": [ + { + "id": 1580, + "name": "processLock", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#navigatorLock" + }, + { + "kind": "text", + "text": " in browser environments." + } + ], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " + }, + { + "kind": "code", + "text": "`{ lock: processLock }`" + }, + { + "kind": "text", + "text": "\nto it has no effect. You can safely drop the import from your client setup." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 100, + "character": 24 + } + ], + "typeParameters": [ + { + "id": 1581, + "name": "R", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "parameters": [ { "id": 1582, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the lock to be acquired." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1583, + "name": "acquireTimeout", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + }, + { + "kind": "code", + "text": "`isAcquireTimeout`" + }, + { + "kind": "text", + "text": " set to true." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1584, "name": "fn", "variant": "param", "kind": 32768, @@ -95861,7 +97472,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1583, + "id": 1585, "name": "__type", "variant": "declaration", "kind": 65536, @@ -95869,13 +97480,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, + "line": 100, "character": 81 } ], "signatures": [ { - "id": 1584, + "id": 1586, "name": "__type", "variant": "signature", "kind": 4096, @@ -95883,7 +97494,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, + "line": 100, "character": 81 } ], @@ -95896,7 +97507,7 @@ "typeArguments": [ { "type": "reference", - "target": 1579, + "target": 1581, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -95920,7 +97531,7 @@ "typeArguments": [ { "type": "reference", - "target": 1579, + "target": 1581, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -95933,7 +97544,7 @@ ] }, { - "id": 1702, + "id": 1704, "name": "Session", "variant": "reference", "kind": 4194304, @@ -95941,14 +97552,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 245, + "line": 234, "character": 17 } ], "target": 42 }, { - "id": 1740, + "id": 1742, "name": "User", "variant": "reference", "kind": 4194304, @@ -95956,7 +97567,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 360, + "line": 349, "character": 17 } ], @@ -95966,51 +97577,51 @@ "groups": [ { "title": "Enumerations", - "children": [925, 3371, 3376, 3381, 3385] + "children": [925, 3393, 3398, 3403, 3407] }, { "title": "Classes", "children": [ - 2556, 2538, 2661, 2644, 2774, 2628, 2719, 2690, 2735, 2612, 2574, 2753, 2592, 912, - 890, 879, 901, 1124, 1222, 1569, 57, 830, 141, 729, 559, 2800, 3130, 2791, 850, 941, - 3397 + 2561, 2543, 2666, 2649, 2796, 2633, 2724, 2695, 2758, 2740, 2617, 2579, 2775, 2597, + 912, 890, 879, 901, 1124, 1221, 1571, 57, 830, 141, 729, 559, 2822, 3152, 2813, 850, + 941, 3419 ] }, { "title": "Interfaces", "children": [ - 1748, 1705, 2390, 2490, 42, 15, 1959, 2341, 2094, 2226, 2510, 2023, 2164, 2144, - 1762, 1112, 1732, 1741, 1708, 1737, 1893, 1885, 1901, 3409, 3459 + 1750, 1707, 2392, 2492, 42, 15, 1961, 2343, 2096, 2228, 2512, 2025, 2166, 2146, + 1764, 1112, 1734, 1743, 1710, 1739, 1895, 1887, 1903, 3431, 3481 ] }, { "title": "Type Aliases", "children": [ - 1703, 1587, 1586, 2016, 1808, 2084, 2081, 2091, 2088, 2007, 2011, 2006, 2008, 2009, - 2010, 2126, 2002, 2125, 2127, 2018, 2012, 2003, 2001, 1994, 2380, 2381, 2387, 2388, - 1669, 2486, 2483, 2475, 2476, 2482, 2480, 2473, 2474, 2481, 1660, 1664, 1674, 1678, - 2107, 2286, 2196, 2262, 2330, 2329, 2249, 1122, 1906, 1865, 1866, 1630, 1721, 1720, - 868, 1953, 1943, 1962, 1967, 1963, 1974, 1948, 1937, 1597, 2104, 2128, 2326, 1588, - 1993, 1992, 1990, 1989, 1991, 1975, 2123, 2122, 2124, 1988, 1976, 1987, 1980, 1979, - 1981, 1985, 1904, 2361, 2367, 2180, 2174, 2214, 2178, 2213, 2176, 2179, 2177, 2382, - 2377, 1683, 2250, 2115, 2108, 2427, 2432, 2470, 2436, 2422, 2413, 2418, 2466, 55, - 51, 53, 1638, 1585, 1117, 1121, 1115, 3114, 3128, 3251, 3292, 3299, 3306, 3330, - 3311, 3321, 3340, 3350, 3360, 3369, 2448, 1643, 1652, 2134, 1908, 1772, 1822, 1810, - 2442, 1786, 1791, 1922, 2119, 2173, 1778, 1832, 1848, 1696, 2457, 1640, 1072, 2101, - 2307, 2205, 1699, 1884, 2462, 2453, 1634, 1633, 1883 + 1705, 1589, 1588, 2018, 1810, 2086, 2083, 2093, 2090, 2009, 2013, 2008, 2010, 2011, + 2012, 2128, 2004, 2127, 2129, 2020, 2014, 2005, 2003, 1996, 2382, 2383, 2389, 2390, + 1671, 2488, 2485, 2477, 2478, 2484, 2482, 2475, 2476, 2483, 1662, 1666, 1676, 1680, + 2109, 2288, 2198, 2264, 2332, 2331, 2251, 1122, 1908, 1867, 1868, 1632, 1723, 1722, + 868, 1955, 1945, 1964, 1969, 1965, 1976, 1950, 1939, 1599, 2106, 2130, 2328, 1590, + 1995, 1994, 1992, 1991, 1993, 1977, 2125, 2124, 2126, 1990, 1978, 1989, 1982, 1981, + 1983, 1987, 1906, 2363, 2369, 2182, 2176, 2216, 2180, 2215, 2178, 2181, 2179, 2384, + 2379, 1685, 2252, 2117, 2110, 2429, 2434, 2472, 2438, 2424, 2415, 2420, 2468, 55, + 51, 53, 1640, 1587, 1117, 1121, 1115, 3136, 3150, 3273, 3314, 3321, 3328, 3352, + 3333, 3343, 3362, 3372, 3382, 3391, 2450, 1645, 1654, 2136, 1910, 1774, 1824, 1812, + 2444, 1788, 1793, 1924, 2121, 2175, 1780, 1834, 1850, 1698, 2459, 1642, 1072, 2103, + 2309, 2207, 1701, 1886, 2464, 2455, 1636, 1635, 1885 ] }, { "title": "Variables", - "children": [1559, 1560, 1574, 3390, 2172] + "children": [1561, 1562, 1576, 3412, 2174] }, { "title": "Functions", - "children": [2, 2520, 2517, 2526, 2529, 2532, 2523, 2535, 1561, 1577] + "children": [2, 2522, 2519, 2528, 2531, 2537, 2534, 2525, 2540, 1563, 1579] }, { "title": "References", - "children": [1702, 1740] + "children": [1704, 1742] } ], "sources": [ @@ -96018,7 +97629,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L1" } ] } @@ -100907,69 +102518,73 @@ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "__type.__index" }, - "1153": { + "1152": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.fetch" }, - "1154": { + "1153": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1155": { + "1154": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1156": { + "1155": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "1157": { + "1156": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "1158": { + "1157": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "1159": { + "1158": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "1160": { + "1159": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "1161": { + "1160": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.experimental" }, + "1161": { + "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", + "qualifiedName": "default.signOut" + }, "1162": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.signOut" }, "1163": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.signOut" + "qualifiedName": "jwt" }, "1164": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "jwt" + "qualifiedName": "scope" }, "1165": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "scope" + "qualifiedName": "__type" }, "1166": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1167": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "1168": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.error" + "qualifiedName": "default.inviteUserByEmail" }, "1169": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -100977,27 +102592,27 @@ }, "1170": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.inviteUserByEmail" + "qualifiedName": "email" }, "1171": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "email" + "qualifiedName": "options" }, "1172": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "options" + "qualifiedName": "__type" }, "1173": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1174": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.redirectTo" }, "1175": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "default.generateLink" }, "1176": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101005,11 +102620,11 @@ }, "1177": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.generateLink" + "qualifiedName": "params" }, "1178": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "params" + "qualifiedName": "default.createUser" }, "1179": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101017,11 +102632,11 @@ }, "1180": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.createUser" + "qualifiedName": "attributes" }, "1181": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "attributes" + "qualifiedName": "default.listUsers" }, "1182": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101029,55 +102644,55 @@ }, "1183": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.listUsers" + "qualifiedName": "params" }, "1184": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "params" + "qualifiedName": "__type" }, "1185": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1186": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1187": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.users" }, "1188": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.users" + "qualifiedName": "__type.aud" }, "1189": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.aud" + "qualifiedName": "__type.error" }, "1190": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "1191": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1192": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1193": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.users" }, "1194": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.users" + "qualifiedName": "__type.error" }, "1195": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.error" + "qualifiedName": "default.getUserById" }, "1196": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101085,11 +102700,11 @@ }, "1197": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.getUserById" + "qualifiedName": "uid" }, "1198": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "uid" + "qualifiedName": "default.updateUserById" }, "1199": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101097,103 +102712,103 @@ }, "1200": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.updateUserById" + "qualifiedName": "uid" }, "1201": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "uid" + "qualifiedName": "attributes" }, "1202": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "attributes" + "qualifiedName": "default.deleteUser" }, "1203": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.deleteUser" }, "1204": { - "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.deleteUser" - }, - "1205": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "id" }, - "1206": { + "1205": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "shouldSoftDelete" }, - "1222": { + "1221": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default" }, - "1224": { + "1223": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.__constructor" }, - "1225": { + "1224": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default" }, - "1226": { + "1225": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "options" }, - "1228": { + "1227": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.admin" }, - "1229": { + "1228": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.mfa" }, - "1230": { + "1229": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.oauth" }, - "1231": { + "1230": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.passkey" }, - "1232": { + "1231": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.storageKey" }, - "1233": { + "1232": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.flowType" }, + "1233": { + "sourceFileName": "../auth-js/src/GoTrueClient.ts", + "qualifiedName": "default.jwks" + }, "1234": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.jwks" }, "1235": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.jwks" + "qualifiedName": "__type" }, "1236": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.keys" }, "1237": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "default.jwks" }, "1238": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.jwks" + "qualifiedName": "value" }, "1239": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "value" + "qualifiedName": "__type" }, "1240": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.keys" }, "1241": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "default.jwks_cached_at" }, "1242": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -101205,55 +102820,55 @@ }, "1244": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.jwks_cached_at" + "qualifiedName": "value" }, "1245": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "value" + "qualifiedName": "default.autoRefreshToken" }, "1246": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.autoRefreshToken" + "qualifiedName": "default.persistSession" }, "1247": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.persistSession" + "qualifiedName": "default.storage" }, "1248": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.storage" + "qualifiedName": "default.userStorage" }, "1249": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.userStorage" + "qualifiedName": "default.memoryStorage" }, "1250": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.memoryStorage" + "qualifiedName": "__type" }, "1251": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.__index" }, - "1252": { + "1253": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "default.stateChangeEmitters" }, "1254": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.stateChangeEmitters" + "qualifiedName": "default.autoRefreshTicker" }, "1255": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.autoRefreshTicker" + "qualifiedName": "default.autoRefreshTickTimeout" }, "1256": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.autoRefreshTickTimeout" + "qualifiedName": "default.visibilityChangedCallback" }, "1257": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.visibilityChangedCallback" + "qualifiedName": "__type" }, "1258": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -101261,11 +102876,11 @@ }, "1259": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "default.refreshingDeferred" }, "1260": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.refreshingDeferred" + "qualifiedName": "default._sessionRemovalEpoch" }, "1261": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -102123,45 +103738,45 @@ "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.stopAutoRefresh" }, - "1523": { + "1506": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.getClaims" + "qualifiedName": "default.dispose" }, - "1524": { + "1507": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.getClaims" + "qualifiedName": "default.dispose" }, "1525": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "jwt" + "qualifiedName": "default.getClaims" }, "1526": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "options" + "qualifiedName": "default.getClaims" }, "1527": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "jwt" }, "1528": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "options" }, "1529": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.allowExpired" + "qualifiedName": "__type" }, "1530": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.jwks" + "qualifiedName": "__type.keys" }, "1531": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.allowExpired" }, "1532": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "__type.jwks" }, "1533": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -102169,7 +103784,7 @@ }, "1534": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.keys" }, "1535": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -102177,903 +103792,903 @@ }, "1536": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.claims" + "qualifiedName": "__type.data" }, "1537": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.header" + "qualifiedName": "__type" }, "1538": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.signature" + "qualifiedName": "__type.claims" }, "1539": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type.header" }, "1540": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signature" }, "1541": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "1542": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "1543": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1544": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "1545": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "1546": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.signInWithPasskey" + "qualifiedName": "__type.data" }, "1547": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.signInWithPasskey" + "qualifiedName": "__type.error" }, "1548": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "credentials" + "qualifiedName": "default.signInWithPasskey" }, "1549": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.registerPasskey" + "qualifiedName": "default.signInWithPasskey" }, "1550": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.registerPasskey" + "qualifiedName": "credentials" }, "1551": { + "sourceFileName": "../auth-js/src/GoTrueClient.ts", + "qualifiedName": "default.registerPasskey" + }, + "1552": { + "sourceFileName": "../auth-js/src/GoTrueClient.ts", + "qualifiedName": "default.registerPasskey" + }, + "1553": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "1559": { + "1561": { "sourceFileName": "../auth-js/src/AuthAdminApi.ts", "qualifiedName": "AuthAdminApi" }, - "1560": { + "1562": { "sourceFileName": "../auth-js/src/AuthClient.ts", "qualifiedName": "AuthClient" }, - "1561": { + "1563": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "navigatorLock" }, - "1562": { + "1564": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "navigatorLock" }, - "1563": { + "1565": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "R" }, - "1564": { + "1566": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "name" }, - "1565": { + "1567": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "acquireTimeout" }, - "1566": { + "1568": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "fn" }, - "1567": { + "1569": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1568": { + "1570": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1569": { + "1571": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "NavigatorLockAcquireTimeoutError" }, - "1570": { + "1572": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "LockAcquireTimeoutError.__constructor" }, - "1571": { + "1573": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "NavigatorLockAcquireTimeoutError" }, - "1572": { + "1574": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "message" }, - "1573": { + "1575": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout" }, - "1574": { + "1576": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "internals" }, - "1575": { + "1577": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1576": { + "1578": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type.debug" }, - "1577": { + "1579": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "processLock" }, - "1578": { + "1580": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "processLock" }, - "1579": { + "1581": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "R" }, - "1580": { + "1582": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "name" }, - "1581": { + "1583": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "acquireTimeout" }, - "1582": { + "1584": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "fn" }, - "1583": { + "1585": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1584": { + "1586": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1585": { + "1587": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Provider" }, - "1586": { + "1588": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthChangeEventMFA" }, - "1587": { + "1589": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthChangeEvent" }, - "1588": { + "1590": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "LockFunc" }, - "1589": { + "1591": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1590": { + "1592": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1591": { + "1593": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "name" }, - "1592": { + "1594": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "acquireTimeout" }, - "1593": { + "1595": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "fn" }, - "1594": { + "1596": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1595": { + "1597": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1596": { + "1598": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "R" }, - "1597": { + "1599": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueClientOptions" }, - "1598": { + "1600": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1599": { + "1601": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1600": { + "1602": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.headers" }, - "1601": { + "1603": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1602": { + "1604": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.__index" }, - "1604": { + "1606": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.storageKey" }, - "1605": { + "1607": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.detectSessionInUrl" }, - "1606": { + "1608": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1607": { + "1609": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1608": { + "1610": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "url" }, - "1609": { + "1611": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "params" }, - "1610": { + "1612": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1611": { + "1613": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.__index" }, - "1613": { + "1615": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.autoRefreshToken" }, - "1614": { + "1616": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.persistSession" }, - "1615": { + "1617": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.storage" }, - "1616": { + "1618": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.userStorage" }, - "1617": { + "1619": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.fetch" }, - "1618": { + "1620": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.flowType" }, - "1619": { + "1621": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.debug" }, - "1620": { + "1622": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1621": { + "1623": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1622": { + "1624": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "message" }, - "1623": { + "1625": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "args" }, - "1624": { + "1626": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.lock" }, - "1625": { + "1627": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.hasCustomAuthorizationHeader" }, - "1626": { + "1628": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.throwOnError" }, - "1627": { + "1629": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.lockAcquireTimeout" }, - "1628": { + "1630": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.skipAutoInitialize" }, - "1629": { + "1631": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.experimental" }, - "1630": { + "1632": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "ExperimentalFeatureFlags" }, - "1631": { + "1633": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1632": { + "1634": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.passkey" }, - "1633": { + "1635": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "WeakPasswordReasons" }, - "1634": { + "1636": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "WeakPassword" }, - "1635": { + "1637": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1636": { + "1638": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.reasons" }, - "1637": { + "1639": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.message" }, - "1638": { + "1640": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Prettify" }, - "1639": { + "1641": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1640": { + "1642": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "StrictOmit" }, - "1641": { + "1643": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1642": { + "1644": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "K" }, - "1643": { + "1645": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "RequestResult" }, - "1644": { + "1646": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1645": { + "1647": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1646": { + "1648": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1647": { + "1649": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1648": { + "1650": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1649": { + "1651": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1650": { + "1652": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1651": { + "1653": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "ErrorType" }, - "1652": { + "1654": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "RequestResultSafeDestructure" }, - "1653": { + "1655": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1654": { + "1656": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1655": { + "1657": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1656": { + "1658": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1657": { + "1659": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1658": { + "1660": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1659": { + "1661": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1660": { + "1662": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthResponse" }, - "1661": { + "1663": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1662": { + "1664": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1663": { + "1665": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1664": { + "1666": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthResponsePassword" }, - "1665": { + "1667": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1666": { + "1668": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1667": { + "1669": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1668": { + "1670": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.weak_password" }, - "1669": { + "1671": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthOtpResponse" }, - "1670": { + "1672": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1671": { + "1673": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1672": { + "1674": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1673": { + "1675": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.messageId" }, - "1674": { + "1676": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthTokenResponse" }, - "1675": { + "1677": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1676": { + "1678": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1677": { + "1679": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1678": { + "1680": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthTokenResponsePassword" }, - "1679": { + "1681": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1680": { + "1682": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1681": { + "1683": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1682": { + "1684": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.weakPassword" }, - "1683": { + "1685": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthResponse" }, - "1684": { + "1686": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1685": { + "1687": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1686": { + "1688": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1687": { + "1689": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider" }, - "1688": { + "1690": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1689": { + "1691": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1690": { + "1692": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1691": { + "1693": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1692": { + "1694": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1693": { + "1695": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider" }, - "1694": { + "1696": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1695": { + "1697": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1696": { + "1698": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SSOResponse" }, - "1697": { + "1699": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1698": { + "1700": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1699": { + "1701": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserResponse" }, - "1700": { + "1702": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1701": { + "1703": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1702": { + "1704": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Session" }, - "1703": { + "1705": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMRMethod" }, - "1704": { + "1706": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1705": { + "1707": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMREntry" }, - "1706": { + "1708": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMREntry.method" }, - "1707": { + "1709": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMREntry.timestamp" }, - "1708": { + "1710": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity" }, - "1709": { + "1711": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.id" }, - "1710": { + "1712": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.user_id" }, - "1711": { + "1713": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.identity_data" }, - "1712": { + "1714": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1713": { + "1715": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.__index" }, - "1715": { + "1717": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.identity_id" }, - "1716": { + "1718": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.provider" }, - "1717": { + "1719": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.created_at" }, - "1718": { + "1720": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.last_sign_in_at" }, - "1719": { + "1721": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.updated_at" }, - "1720": { + "1722": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "FactorType" }, - "1721": { + "1723": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Factor" }, - "1722": { + "1724": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1723": { + "1725": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.id" }, - "1724": { + "1726": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.friendly_name" }, - "1725": { + "1727": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.factor_type" }, - "1726": { + "1728": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.status" }, - "1727": { + "1729": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.created_at" }, - "1728": { + "1730": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.updated_at" }, - "1729": { + "1731": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.last_challenged_at" }, - "1730": { + "1732": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Type" }, - "1731": { + "1733": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Status" }, - "1732": { + "1734": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata" }, - "1733": { + "1735": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata.provider" }, - "1734": { + "1736": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata.providers" }, - "1735": { + "1737": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata.__index" }, - "1737": { + "1739": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserMetadata" }, - "1738": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserMetadata.__index" - }, "1740": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "User" - }, - "1741": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes" + "qualifiedName": "UserMetadata.__index" }, "1742": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.current_password" + "qualifiedName": "User" }, "1743": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.email" + "qualifiedName": "UserAttributes" }, "1744": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.phone" + "qualifiedName": "UserAttributes.current_password" }, "1745": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.password" + "qualifiedName": "UserAttributes.email" }, "1746": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.nonce" + "qualifiedName": "UserAttributes.phone" }, "1747": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.data" + "qualifiedName": "UserAttributes.password" }, "1748": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes" + "qualifiedName": "UserAttributes.nonce" }, "1749": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.user_metadata" + "qualifiedName": "UserAttributes.data" }, "1750": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.app_metadata" + "qualifiedName": "AdminUserAttributes" }, "1751": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.email_confirm" + "qualifiedName": "AdminUserAttributes.user_metadata" }, "1752": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.phone_confirm" + "qualifiedName": "AdminUserAttributes.app_metadata" }, "1753": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.ban_duration" + "qualifiedName": "AdminUserAttributes.email_confirm" }, "1754": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.role" + "qualifiedName": "AdminUserAttributes.phone_confirm" }, "1755": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.password_hash" + "qualifiedName": "AdminUserAttributes.ban_duration" }, "1756": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.id" + "qualifiedName": "AdminUserAttributes.role" }, "1757": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "nonce" + "qualifiedName": "AdminUserAttributes.password_hash" }, "1758": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "email" + "qualifiedName": "AdminUserAttributes.id" }, "1759": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "password" + "qualifiedName": "nonce" }, "1760": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "phone" + "qualifiedName": "email" }, "1761": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "current_password" + "qualifiedName": "password" }, "1762": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription" + "qualifiedName": "phone" }, "1763": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription.id" + "qualifiedName": "current_password" }, "1764": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription.callback" + "qualifiedName": "Subscription" }, "1765": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "Subscription.id" }, "1766": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "Subscription.callback" }, "1767": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "event" + "qualifiedName": "__type" }, "1768": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "session" + "qualifiedName": "__type" }, "1769": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription.unsubscribe" + "qualifiedName": "event" }, "1770": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "session" }, "1771": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "Subscription.unsubscribe" }, "1772": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInAnonymouslyCredentials" + "qualifiedName": "__type" }, "1773": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103081,7 +104696,7 @@ }, "1774": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignInAnonymouslyCredentials" }, "1775": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103089,23 +104704,23 @@ }, "1776": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.options" }, "1777": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1778": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignUpWithPasswordCredentials" + "qualifiedName": "__type.data" }, "1779": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1780": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignUpWithPasswordCredentials" }, "1781": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103113,31 +104728,31 @@ }, "1782": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.emailRedirectTo" + "qualifiedName": "__type.options" }, "1783": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1784": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.emailRedirectTo" }, "1785": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.channel" + "qualifiedName": "__type.data" }, "1786": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithPasswordCredentials" + "qualifiedName": "__type.captchaToken" }, "1787": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.channel" }, "1788": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignInWithPasswordCredentials" }, "1789": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103145,87 +104760,87 @@ }, "1790": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1791": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithPasswordlessCredentials" + "qualifiedName": "__type" }, "1792": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1793": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "SignInWithPasswordlessCredentials" }, "1794": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1795": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.email" }, "1796": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.emailRedirectTo" + "qualifiedName": "__type.options" }, "1797": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.shouldCreateUser" + "qualifiedName": "__type" }, "1798": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.emailRedirectTo" }, "1799": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.shouldCreateUser" }, "1800": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1801": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.phone" + "qualifiedName": "__type.captchaToken" }, "1802": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1803": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.phone" }, "1804": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.shouldCreateUser" + "qualifiedName": "__type.options" }, "1805": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1806": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.shouldCreateUser" }, "1807": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.channel" + "qualifiedName": "__type.data" }, "1808": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthFlowType" + "qualifiedName": "__type.captchaToken" }, "1809": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.channel" }, "1810": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithOAuthCredentials" + "qualifiedName": "AuthFlowType" }, "1811": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103233,51 +104848,51 @@ }, "1812": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.provider" + "qualifiedName": "SignInWithOAuthCredentials" }, "1813": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1814": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.provider" }, "1815": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "__type.options" }, "1816": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type" }, "1817": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.queryParams" + "qualifiedName": "__type.redirectTo" }, "1818": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.scopes" }, "1819": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "__type.queryParams" }, - "1821": { + "1820": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "__type" }, - "1822": { + "1821": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithIdTokenCredentials" + "qualifiedName": "__type.__index" }, "1823": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.skipBrowserRedirect" }, "1824": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.provider" + "qualifiedName": "SignInWithIdTokenCredentials" }, "1825": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103285,39 +104900,39 @@ }, "1826": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token" + "qualifiedName": "__type.provider" }, "1827": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.access_token" + "qualifiedName": "__type" }, "1828": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.nonce" + "qualifiedName": "__type.token" }, "1829": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.access_token" }, "1830": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.nonce" }, "1831": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1832": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SolanaWallet" + "qualifiedName": "__type" }, "1833": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1834": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signIn" + "qualifiedName": "SolanaWallet" }, "1835": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103325,23 +104940,23 @@ }, "1836": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signIn" }, "1837": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "inputs" + "qualifiedName": "__type" }, "1838": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.publicKey" + "qualifiedName": "__type" }, "1839": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "inputs" }, "1840": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.toBase58" + "qualifiedName": "__type.publicKey" }, "1841": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103349,11 +104964,11 @@ }, "1842": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.toBase58" }, "1843": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signMessage" + "qualifiedName": "__type" }, "1844": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103361,251 +104976,251 @@ }, "1845": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signMessage" }, "1846": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "message" + "qualifiedName": "__type" }, "1847": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "encoding" + "qualifiedName": "__type" }, "1848": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SolanaWeb3Credentials" + "qualifiedName": "message" }, "1849": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "encoding" }, "1850": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "SolanaWeb3Credentials" }, "1851": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.wallet" + "qualifiedName": "__type" }, "1852": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.statement" + "qualifiedName": "__type.chain" }, "1853": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.wallet" }, "1854": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.statement" }, "1855": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.url" + "qualifiedName": "__type.options" }, "1856": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1857": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signInWithSolana" + "qualifiedName": "__type.url" }, "1858": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1859": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "__type.signInWithSolana" }, "1860": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.message" + "qualifiedName": "__type" }, "1861": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signature" + "qualifiedName": "__type.chain" }, "1862": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.message" }, "1863": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signature" }, "1864": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1865": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "EthereumWallet" + "qualifiedName": "__type" }, "1866": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "EthereumWeb3Credentials" + "qualifiedName": "__type.captchaToken" }, "1867": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "EthereumWallet" }, "1868": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "EthereumWeb3Credentials" }, "1869": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.wallet" + "qualifiedName": "__type" }, "1870": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.statement" + "qualifiedName": "__type.chain" }, "1871": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.wallet" }, "1872": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.statement" }, "1873": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.url" + "qualifiedName": "__type.options" }, "1874": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1875": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signInWithEthereum" + "qualifiedName": "__type.url" }, "1876": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1877": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "__type.signInWithEthereum" }, "1878": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.message" + "qualifiedName": "__type" }, "1879": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signature" + "qualifiedName": "__type.chain" }, "1880": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.message" }, "1881": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signature" }, "1882": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1883": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Web3Credentials" + "qualifiedName": "__type" }, "1884": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyOtpParams" + "qualifiedName": "__type.captchaToken" }, "1885": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams" + "qualifiedName": "Web3Credentials" }, "1886": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.phone" + "qualifiedName": "VerifyOtpParams" }, "1887": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.token" + "qualifiedName": "VerifyMobileOtpParams" }, "1888": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.type" + "qualifiedName": "VerifyMobileOtpParams.phone" }, "1889": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.options" + "qualifiedName": "VerifyMobileOtpParams.token" }, "1890": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "VerifyMobileOtpParams.type" }, "1891": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "VerifyMobileOtpParams.options" }, "1892": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1893": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams" + "qualifiedName": "__type.redirectTo" }, "1894": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.email" + "qualifiedName": "__type.captchaToken" }, "1895": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.token" + "qualifiedName": "VerifyEmailOtpParams" }, "1896": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.type" + "qualifiedName": "VerifyEmailOtpParams.email" }, "1897": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.options" + "qualifiedName": "VerifyEmailOtpParams.token" }, "1898": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "VerifyEmailOtpParams.type" }, "1899": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "VerifyEmailOtpParams.options" }, "1900": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1901": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyTokenHashParams" + "qualifiedName": "__type.redirectTo" }, "1902": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyTokenHashParams.token_hash" + "qualifiedName": "__type.captchaToken" }, "1903": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyTokenHashParams.type" + "qualifiedName": "VerifyTokenHashParams" }, "1904": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MobileOtpType" + "qualifiedName": "VerifyTokenHashParams.token_hash" }, "1905": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "VerifyTokenHashParams.type" }, "1906": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "EmailOtpType" + "qualifiedName": "MobileOtpType" }, "1907": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103613,7 +105228,7 @@ }, "1908": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "ResendParams" + "qualifiedName": "EmailOtpType" }, "1909": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103621,307 +105236,307 @@ }, "1910": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "ResendParams" }, "1911": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1912": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1913": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.email" }, "1914": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.emailRedirectTo" + "qualifiedName": "__type.options" }, "1915": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1916": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.emailRedirectTo" }, "1917": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "__type.captchaToken" }, "1918": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.phone" + "qualifiedName": "__type" }, "1919": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1920": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.phone" }, "1921": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1922": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithSSO" + "qualifiedName": "__type" }, "1923": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1924": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.providerId" + "qualifiedName": "SignInWithSSO" }, "1925": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1926": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.providerId" }, "1927": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "__type.options" }, "1928": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1929": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "__type.redirectTo" }, "1930": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1931": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.domain" + "qualifiedName": "__type.skipBrowserRedirect" }, "1932": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1933": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.domain" }, "1934": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "__type.options" }, "1935": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1936": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "__type.redirectTo" }, "1937": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateSignupLinkParams" + "qualifiedName": "__type.captchaToken" }, "1938": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.skipBrowserRedirect" }, "1939": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateSignupLinkParams" }, "1940": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1941": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.password" + "qualifiedName": "__type.type" }, "1942": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.email" }, "1943": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateInviteOrMagiclinkParams" + "qualifiedName": "__type.password" }, "1944": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.options" }, "1945": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateInviteOrMagiclinkParams" }, "1946": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1947": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1948": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateRecoveryLinkParams" + "qualifiedName": "__type.email" }, "1949": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.options" }, "1950": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateRecoveryLinkParams" }, "1951": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1952": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1953": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateEmailChangeLinkParams" + "qualifiedName": "__type.email" }, "1954": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.options" }, "1955": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateEmailChangeLinkParams" }, "1956": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1957": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.newEmail" + "qualifiedName": "__type.type" }, "1958": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.email" }, "1959": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkOptions" + "qualifiedName": "__type.newEmail" }, "1960": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkOptions.data" + "qualifiedName": "__type.options" }, "1961": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkOptions.redirectTo" + "qualifiedName": "GenerateLinkOptions" }, "1962": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkParams" + "qualifiedName": "GenerateLinkOptions.data" }, "1963": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkResponse" + "qualifiedName": "GenerateLinkOptions.redirectTo" }, "1964": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GenerateLinkParams" }, "1965": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.properties" + "qualifiedName": "GenerateLinkResponse" }, "1966": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type" }, "1967": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkProperties" + "qualifiedName": "__type.properties" }, "1968": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.user" }, "1969": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.action_link" + "qualifiedName": "GenerateLinkProperties" }, "1970": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_otp" + "qualifiedName": "__type" }, "1971": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.hashed_token" + "qualifiedName": "__type.action_link" }, "1972": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_to" + "qualifiedName": "__type.email_otp" }, "1973": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.verification_type" + "qualifiedName": "__type.hashed_token" }, "1974": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkType" + "qualifiedName": "__type.redirect_to" }, "1975": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAEnrollParams" + "qualifiedName": "__type.verification_type" }, "1976": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAUnenrollParams" + "qualifiedName": "GenerateLinkType" }, "1977": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "MFAEnrollParams" }, "1978": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.factorId" + "qualifiedName": "MFAUnenrollParams" }, "1979": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyTOTPParams" + "qualifiedName": "__type" }, "1980": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyPhoneParams" + "qualifiedName": "__type.factorId" }, "1981": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyWebauthnParamFields" + "qualifiedName": "MFAVerifyTOTPParams" }, "1982": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "MFAVerifyPhoneParams" }, "1983": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.webauthn" + "qualifiedName": "MFAVerifyWebauthnParamFields" }, "1984": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "1985": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyWebauthnParams" + "qualifiedName": "__type.webauthn" }, "1986": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103929,131 +105544,131 @@ }, "1987": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyParams" + "qualifiedName": "MFAVerifyWebauthnParams" }, "1988": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFATOTPChannel" + "qualifiedName": "T" }, "1989": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeTOTPParams" + "qualifiedName": "MFAVerifyParams" }, "1990": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengePhoneParams" + "qualifiedName": "MFATOTPChannel" }, "1991": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeWebauthnParams" + "qualifiedName": "MFAChallengeTOTPParams" }, "1992": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeParams" + "qualifiedName": "MFAChallengePhoneParams" }, "1993": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeAndVerifyParams" + "qualifiedName": "MFAChallengeWebauthnParams" }, "1994": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAVerifyResponseData" + "qualifiedName": "MFAChallengeParams" }, "1995": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "MFAChallengeAndVerifyParams" }, "1996": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.access_token" + "qualifiedName": "AuthMFAVerifyResponseData" }, "1997": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_type" + "qualifiedName": "__type" }, "1998": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.expires_in" + "qualifiedName": "__type.access_token" }, "1999": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.refresh_token" + "qualifiedName": "__type.token_type" }, "2000": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type.expires_in" }, "2001": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAVerifyResponse" + "qualifiedName": "__type.refresh_token" }, "2002": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAEnrollResponse" + "qualifiedName": "__type.user" }, "2003": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAUnenrollResponse" + "qualifiedName": "AuthMFAVerifyResponse" }, "2004": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthMFAEnrollResponse" }, "2005": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "AuthMFAUnenrollResponse" }, "2006": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeTOTPResponse" + "qualifiedName": "__type" }, "2007": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengePhoneResponse" + "qualifiedName": "__type.id" }, "2008": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeWebauthnResponse" + "qualifiedName": "AuthMFAChallengeTOTPResponse" }, "2009": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON" + "qualifiedName": "AuthMFAChallengePhoneResponse" }, "2010": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeWebauthnServerResponse" + "qualifiedName": "AuthMFAChallengeWebauthnResponse" }, "2011": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeResponse" + "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON" }, "2012": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAListFactorsResponse" + "qualifiedName": "AuthMFAChallengeWebauthnServerResponse" }, "2013": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthMFAChallengeResponse" }, "2014": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.all" + "qualifiedName": "AuthMFAListFactorsResponse" }, "2015": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "2016": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthenticatorAssuranceLevels" + "qualifiedName": "__type.all" }, "2017": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "T" }, "2018": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse" + "qualifiedName": "AuthenticatorAssuranceLevels" }, "2019": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104061,31 +105676,31 @@ }, "2020": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.currentLevel" + "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse" }, "2021": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.nextLevel" + "qualifiedName": "__type" }, "2022": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.currentAuthenticationMethods" + "qualifiedName": "__type.currentLevel" }, "2023": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi" + "qualifiedName": "__type.nextLevel" }, "2024": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.enroll" + "qualifiedName": "__type.currentAuthenticationMethods" }, "2025": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.enroll" + "qualifiedName": "GoTrueMFAApi" }, "2026": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.enroll" }, "2027": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104113,123 +105728,123 @@ }, "2033": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "GoTrueMFAApi.enroll" }, "2034": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "params" }, "2035": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2036": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2037": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "params" }, "2038": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2039": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "data" }, "2040": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "error" }, "2041": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2042": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "data" }, "2043": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "error" }, "2044": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2045": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "params" }, "2046": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2047": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "data" }, "2048": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "error" }, "2049": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2050": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "data" }, "2051": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "error" }, "2052": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2053": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "params" }, "2054": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2055": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "data" }, "2056": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "error" }, "2057": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2058": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "data" }, "2059": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "error" }, "2060": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.verify" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2061": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.verify" + "qualifiedName": "params" }, "2062": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.verify" }, "2063": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104257,583 +105872,583 @@ }, "2069": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.unenroll" + "qualifiedName": "GoTrueMFAApi.verify" }, "2070": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.unenroll" + "qualifiedName": "params" }, "2071": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.unenroll" }, "2072": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challengeAndVerify" + "qualifiedName": "GoTrueMFAApi.unenroll" }, "2073": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challengeAndVerify" + "qualifiedName": "params" }, "2074": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.challengeAndVerify" }, "2075": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.listFactors" + "qualifiedName": "GoTrueMFAApi.challengeAndVerify" }, "2076": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.listFactors" + "qualifiedName": "params" }, "2077": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" + "qualifiedName": "GoTrueMFAApi.listFactors" }, "2078": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" + "qualifiedName": "GoTrueMFAApi.listFactors" }, "2079": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "jwt" + "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" }, "2080": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.webauthn" + "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" }, "2081": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminDeleteFactorResponse" + "qualifiedName": "jwt" }, "2082": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.webauthn" }, "2083": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "AuthMFAAdminDeleteFactorResponse" }, "2084": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminDeleteFactorParams" + "qualifiedName": "__type" }, "2085": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.id" }, "2086": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "AuthMFAAdminDeleteFactorParams" }, "2087": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "__type" }, "2088": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminListFactorsResponse" + "qualifiedName": "__type.id" }, "2089": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.userId" }, "2090": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.factors" + "qualifiedName": "AuthMFAAdminListFactorsResponse" }, "2091": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminListFactorsParams" + "qualifiedName": "__type" }, "2092": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.factors" }, "2093": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "AuthMFAAdminListFactorsParams" }, "2094": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi" + "qualifiedName": "__type" }, "2095": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.listFactors" + "qualifiedName": "__type.userId" }, "2096": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.listFactors" + "qualifiedName": "GoTrueAdminMFAApi" }, "2097": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminMFAApi.listFactors" }, "2098": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" + "qualifiedName": "GoTrueAdminMFAApi.listFactors" }, "2099": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" + "qualifiedName": "params" }, "2100": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" }, "2101": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SupportedStorage" + "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" }, "2102": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "params" }, "2103": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.isServer" + "qualifiedName": "SupportedStorage" }, "2104": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "InitializeResult" + "qualifiedName": "__type" }, "2105": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.isServer" }, "2106": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "InitializeResult" }, "2107": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CallRefreshTokenResult" + "qualifiedName": "__type" }, "2108": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Pagination" + "qualifiedName": "__type.error" }, "2109": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "CallRefreshTokenResult" }, "2110": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.nextPage" + "qualifiedName": "Pagination" }, "2111": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.lastPage" + "qualifiedName": "__type" }, "2112": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.total" + "qualifiedName": "__type.nextPage" }, "2113": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "__type.lastPage" + }, + "2114": { + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "__type.total" }, "2115": { + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "__type.__index" + }, + "2117": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "PageParams" }, - "2116": { + "2118": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2117": { + "2119": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.page" }, - "2118": { + "2120": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.perPage" }, - "2119": { + "2121": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SignOut" }, - "2120": { + "2122": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2121": { + "2123": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scope" }, - "2122": { + "2124": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "MFAEnrollTOTPParams" }, - "2123": { + "2125": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "MFAEnrollPhoneParams" }, - "2124": { + "2126": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "MFAEnrollWebauthnParams" }, - "2125": { + "2127": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthMFAEnrollTOTPResponse" }, - "2126": { + "2128": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthMFAEnrollPhoneResponse" }, - "2127": { + "2129": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthMFAEnrollWebauthnResponse" }, - "2128": { + "2130": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtHeader" }, - "2129": { + "2131": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2130": { + "2132": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.alg" }, - "2131": { + "2133": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2132": { + "2134": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.kid" }, - "2133": { + "2135": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.typ" }, - "2134": { + "2136": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "RequiredClaims" }, - "2135": { + "2137": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2136": { + "2138": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iss" }, - "2137": { + "2139": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.sub" }, - "2138": { + "2140": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aud" }, - "2139": { + "2141": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.exp" }, - "2140": { + "2142": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iat" }, - "2141": { + "2143": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.role" }, - "2142": { + "2144": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aal" }, - "2143": { + "2145": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session_id" }, - "2144": { + "2146": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload" }, - "2145": { + "2147": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.email" }, - "2146": { + "2148": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.phone" }, - "2147": { + "2149": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.is_anonymous" }, - "2148": { + "2150": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.jti" }, - "2149": { + "2151": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.nbf" }, - "2150": { + "2152": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.app_metadata" }, - "2151": { + "2153": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.user_metadata" }, - "2152": { + "2154": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.amr" }, - "2153": { + "2155": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.ref" }, - "2154": { + "2156": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iss" }, - "2155": { + "2157": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.sub" }, - "2156": { + "2158": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aud" }, - "2157": { + "2159": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.exp" }, - "2158": { + "2160": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iat" }, - "2159": { + "2161": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.role" }, - "2160": { + "2162": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aal" }, - "2161": { + "2163": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session_id" }, - "2162": { + "2164": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.__index" }, - "2164": { + "2166": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK" }, - "2165": { + "2167": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.kty" }, - "2166": { + "2168": { "sourceFileName": "", "qualifiedName": "__type" }, - "2167": { + "2169": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.key_ops" }, - "2168": { + "2170": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.alg" }, - "2169": { + "2171": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.kid" }, - "2170": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "JWK.__index" - }, "2172": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SIGN_OUT_SCOPES" - }, - "2173": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignOutScope" + "qualifiedName": "JWK.__index" }, "2174": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthClientGrantType" + "qualifiedName": "SIGN_OUT_SCOPES" }, "2175": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "SignOutScope" }, "2176": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthClientResponseType" + "qualifiedName": "OAuthClientGrantType" }, "2177": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthClientType" + "qualifiedName": "__type" }, "2178": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthClientRegistrationType" + "qualifiedName": "OAuthClientResponseType" }, "2179": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthClientTokenEndpointAuthMethod" + "qualifiedName": "OAuthClientType" }, "2180": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthClient" + "qualifiedName": "OAuthClientRegistrationType" }, "2181": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "OAuthClientTokenEndpointAuthMethod" }, "2182": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_id" + "qualifiedName": "OAuthClient" }, "2183": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_name" + "qualifiedName": "__type" }, "2184": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_secret" + "qualifiedName": "__type.client_id" }, "2185": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_type" + "qualifiedName": "__type.client_name" }, "2186": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_endpoint_auth_method" + "qualifiedName": "__type.client_secret" }, "2187": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.registration_type" + "qualifiedName": "__type.client_type" }, "2188": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_uri" + "qualifiedName": "__type.token_endpoint_auth_method" }, "2189": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.logo_uri" + "qualifiedName": "__type.registration_type" }, "2190": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_uris" + "qualifiedName": "__type.client_uri" }, "2191": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.grant_types" + "qualifiedName": "__type.logo_uri" }, "2192": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.response_types" + "qualifiedName": "__type.redirect_uris" }, "2193": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scope" + "qualifiedName": "__type.grant_types" }, "2194": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.created_at" + "qualifiedName": "__type.response_types" }, "2195": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.updated_at" + "qualifiedName": "__type.scope" }, "2196": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CreateOAuthClientParams" + "qualifiedName": "__type.created_at" }, "2197": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.updated_at" }, "2198": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_name" + "qualifiedName": "CreateOAuthClientParams" }, "2199": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_uri" + "qualifiedName": "__type" }, "2200": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_uris" + "qualifiedName": "__type.client_name" }, "2201": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.grant_types" + "qualifiedName": "__type.client_uri" }, "2202": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.response_types" + "qualifiedName": "__type.redirect_uris" }, "2203": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scope" + "qualifiedName": "__type.grant_types" }, "2204": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_endpoint_auth_method" + "qualifiedName": "__type.response_types" }, "2205": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UpdateOAuthClientParams" + "qualifiedName": "__type.scope" }, "2206": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.token_endpoint_auth_method" }, "2207": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_name" + "qualifiedName": "UpdateOAuthClientParams" }, "2208": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_uri" + "qualifiedName": "__type" }, "2209": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.logo_uri" + "qualifiedName": "__type.client_name" }, "2210": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_uris" + "qualifiedName": "__type.client_uri" }, "2211": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.grant_types" + "qualifiedName": "__type.logo_uri" }, "2212": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_endpoint_auth_method" + "qualifiedName": "__type.redirect_uris" }, "2213": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthClientResponse" + "qualifiedName": "__type.grant_types" }, "2214": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthClientListResponse" + "qualifiedName": "__type.token_endpoint_auth_method" }, "2215": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "OAuthClientResponse" }, "2216": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "OAuthClientListResponse" }, "2217": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104841,23 +106456,23 @@ }, "2218": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.clients" + "qualifiedName": "__type.data" }, "2219": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.aud" + "qualifiedName": "__type" }, "2220": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type.clients" }, "2221": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.aud" }, "2222": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "2223": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104865,439 +106480,439 @@ }, "2224": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.clients" + "qualifiedName": "__type.data" }, "2225": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2226": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi" + "qualifiedName": "__type.clients" }, "2227": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.listClients" + "qualifiedName": "__type.error" }, "2228": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.listClients" + "qualifiedName": "GoTrueAdminOAuthApi" }, "2229": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminOAuthApi.listClients" }, "2230": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.createClient" + "qualifiedName": "GoTrueAdminOAuthApi.listClients" }, "2231": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.createClient" + "qualifiedName": "params" }, "2232": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminOAuthApi.createClient" }, "2233": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.getClient" + "qualifiedName": "GoTrueAdminOAuthApi.createClient" }, "2234": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.getClient" + "qualifiedName": "params" }, "2235": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "clientId" + "qualifiedName": "GoTrueAdminOAuthApi.getClient" }, "2236": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.updateClient" + "qualifiedName": "GoTrueAdminOAuthApi.getClient" }, "2237": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.updateClient" + "qualifiedName": "clientId" }, "2238": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "clientId" + "qualifiedName": "GoTrueAdminOAuthApi.updateClient" }, "2239": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminOAuthApi.updateClient" }, "2240": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.deleteClient" + "qualifiedName": "clientId" }, "2241": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.deleteClient" + "qualifiedName": "params" }, "2242": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "clientId" + "qualifiedName": "GoTrueAdminOAuthApi.deleteClient" }, "2243": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueAdminOAuthApi.deleteClient" }, "2244": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "clientId" }, "2245": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2246": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret" + "qualifiedName": "__type.data" }, "2247": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret" + "qualifiedName": "__type.error" }, "2248": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "clientId" + "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret" }, "2249": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CustomProviderType" + "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret" }, "2250": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OIDCDiscoveryDocument" + "qualifiedName": "clientId" }, "2251": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "CustomProviderType" }, "2252": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.issuer" + "qualifiedName": "OIDCDiscoveryDocument" }, "2253": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_endpoint" + "qualifiedName": "__type" }, "2254": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_endpoint" + "qualifiedName": "__type.issuer" }, "2255": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.jwks_uri" + "qualifiedName": "__type.authorization_endpoint" }, "2256": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userinfo_endpoint" + "qualifiedName": "__type.token_endpoint" }, "2257": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.revocation_endpoint" + "qualifiedName": "__type.jwks_uri" }, "2258": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.supported_scopes" + "qualifiedName": "__type.userinfo_endpoint" }, "2259": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.supported_response_types" + "qualifiedName": "__type.revocation_endpoint" }, "2260": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.supported_subject_types" + "qualifiedName": "__type.supported_scopes" }, "2261": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.supported_id_token_signing_algs" + "qualifiedName": "__type.supported_response_types" }, "2262": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CustomOAuthProvider" + "qualifiedName": "__type.supported_subject_types" }, "2263": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.supported_id_token_signing_algs" }, "2264": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "CustomOAuthProvider" }, "2265": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.provider_type" + "qualifiedName": "__type" }, "2266": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.identifier" + "qualifiedName": "__type.id" }, "2267": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.name" + "qualifiedName": "__type.provider_type" }, "2268": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_id" + "qualifiedName": "__type.identifier" }, "2269": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.acceptable_client_ids" + "qualifiedName": "__type.name" }, "2270": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type.client_id" }, "2271": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.pkce_enabled" + "qualifiedName": "__type.acceptable_client_ids" }, "2272": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.attribute_mapping" + "qualifiedName": "__type.scopes" }, "2273": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_params" + "qualifiedName": "__type.pkce_enabled" }, "2274": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.enabled" + "qualifiedName": "__type.attribute_mapping" }, "2275": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_optional" + "qualifiedName": "__type.authorization_params" }, "2276": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.issuer" + "qualifiedName": "__type.enabled" }, "2277": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.discovery_url" + "qualifiedName": "__type.email_optional" }, "2278": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skip_nonce_check" + "qualifiedName": "__type.issuer" }, "2279": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_url" + "qualifiedName": "__type.discovery_url" }, "2280": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_url" + "qualifiedName": "__type.skip_nonce_check" }, "2281": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userinfo_url" + "qualifiedName": "__type.authorization_url" }, "2282": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.jwks_uri" + "qualifiedName": "__type.token_url" }, "2283": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.discovery_document" + "qualifiedName": "__type.userinfo_url" }, "2284": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.created_at" + "qualifiedName": "__type.jwks_uri" }, "2285": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.updated_at" + "qualifiedName": "__type.discovery_document" }, "2286": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CreateCustomProviderParams" + "qualifiedName": "__type.created_at" }, "2287": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.updated_at" }, "2288": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.provider_type" + "qualifiedName": "CreateCustomProviderParams" }, "2289": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.identifier" + "qualifiedName": "__type" }, "2290": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.name" + "qualifiedName": "__type.provider_type" }, "2291": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_id" + "qualifiedName": "__type.identifier" }, "2292": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_secret" + "qualifiedName": "__type.name" }, "2293": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.acceptable_client_ids" + "qualifiedName": "__type.client_id" }, "2294": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type.client_secret" }, "2295": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.pkce_enabled" + "qualifiedName": "__type.acceptable_client_ids" }, "2296": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.attribute_mapping" + "qualifiedName": "__type.scopes" }, "2297": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_params" + "qualifiedName": "__type.pkce_enabled" }, "2298": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.enabled" + "qualifiedName": "__type.attribute_mapping" }, "2299": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_optional" + "qualifiedName": "__type.authorization_params" }, "2300": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.issuer" + "qualifiedName": "__type.enabled" }, "2301": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.discovery_url" + "qualifiedName": "__type.email_optional" }, "2302": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skip_nonce_check" + "qualifiedName": "__type.issuer" }, "2303": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_url" + "qualifiedName": "__type.discovery_url" }, "2304": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_url" + "qualifiedName": "__type.skip_nonce_check" }, "2305": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userinfo_url" + "qualifiedName": "__type.authorization_url" }, "2306": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.jwks_uri" + "qualifiedName": "__type.token_url" }, "2307": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UpdateCustomProviderParams" + "qualifiedName": "__type.userinfo_url" }, "2308": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.jwks_uri" }, "2309": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.name" + "qualifiedName": "UpdateCustomProviderParams" }, "2310": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_id" + "qualifiedName": "__type" }, "2311": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_secret" + "qualifiedName": "__type.name" }, "2312": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.acceptable_client_ids" + "qualifiedName": "__type.client_id" }, "2313": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type.client_secret" }, "2314": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.pkce_enabled" + "qualifiedName": "__type.acceptable_client_ids" }, "2315": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.attribute_mapping" + "qualifiedName": "__type.scopes" }, "2316": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_params" + "qualifiedName": "__type.pkce_enabled" }, "2317": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.enabled" + "qualifiedName": "__type.attribute_mapping" }, "2318": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_optional" + "qualifiedName": "__type.authorization_params" }, "2319": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.issuer" + "qualifiedName": "__type.enabled" }, "2320": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.discovery_url" + "qualifiedName": "__type.email_optional" }, "2321": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skip_nonce_check" + "qualifiedName": "__type.issuer" }, "2322": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_url" + "qualifiedName": "__type.discovery_url" }, "2323": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_url" + "qualifiedName": "__type.skip_nonce_check" }, "2324": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userinfo_url" + "qualifiedName": "__type.authorization_url" }, "2325": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.jwks_uri" + "qualifiedName": "__type.token_url" }, "2326": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "ListCustomProvidersParams" + "qualifiedName": "__type.userinfo_url" }, "2327": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.jwks_uri" }, "2328": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "ListCustomProvidersParams" }, "2329": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CustomProviderResponse" + "qualifiedName": "__type" }, "2330": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CustomProviderListResponse" + "qualifiedName": "__type.type" }, "2331": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "CustomProviderResponse" }, "2332": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "CustomProviderListResponse" }, "2333": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105305,19 +106920,19 @@ }, "2334": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.providers" + "qualifiedName": "__type.data" }, "2335": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2336": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.providers" }, "2337": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "2338": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105325,427 +106940,427 @@ }, "2339": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.providers" + "qualifiedName": "__type.data" }, "2340": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2341": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi" + "qualifiedName": "__type.providers" }, "2342": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" + "qualifiedName": "__type.error" }, "2343": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" + "qualifiedName": "GoTrueAdminCustomProvidersApi" }, "2344": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" }, "2345": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" + "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" }, "2346": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" + "qualifiedName": "params" }, "2347": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" }, "2348": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" + "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" }, "2349": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" + "qualifiedName": "params" }, "2350": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "identifier" + "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" }, "2351": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" + "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" }, "2352": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" + "qualifiedName": "identifier" }, "2353": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "identifier" + "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" }, "2354": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" }, "2355": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" + "qualifiedName": "identifier" }, "2356": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" + "qualifiedName": "params" }, "2357": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "identifier" + "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" }, "2358": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" }, "2359": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "identifier" }, "2360": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2361": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthAuthorizationClient" + "qualifiedName": "__type.data" }, "2362": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.error" }, "2363": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "OAuthAuthorizationClient" }, "2364": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.name" + "qualifiedName": "__type" }, "2365": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.uri" + "qualifiedName": "__type.id" }, "2366": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.logo_uri" + "qualifiedName": "__type.name" }, "2367": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthAuthorizationDetails" + "qualifiedName": "__type.uri" }, "2368": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.logo_uri" }, "2369": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_id" + "qualifiedName": "OAuthAuthorizationDetails" }, "2370": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_uri" + "qualifiedName": "__type" }, "2371": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client" + "qualifiedName": "__type.authorization_id" }, "2372": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type.redirect_uri" }, "2373": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.client" }, "2374": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "__type.user" }, "2375": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "2376": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scope" + "qualifiedName": "__type.id" }, "2377": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthRedirect" + "qualifiedName": "__type.email" }, "2378": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.scope" }, "2379": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_url" + "qualifiedName": "OAuthRedirect" }, "2380": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthAuthorizationDetailsResponse" + "qualifiedName": "__type" }, "2381": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthConsentResponse" + "qualifiedName": "__type.redirect_url" }, "2382": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthGrant" + "qualifiedName": "AuthOAuthAuthorizationDetailsResponse" }, "2383": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthOAuthConsentResponse" }, "2384": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client" + "qualifiedName": "OAuthGrant" }, "2385": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type" }, "2386": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.granted_at" + "qualifiedName": "__type.client" }, "2387": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthGrantsResponse" + "qualifiedName": "__type.scopes" }, "2388": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthRevokeGrantResponse" + "qualifiedName": "__type.granted_at" }, "2389": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthOAuthGrantsResponse" }, "2390": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi" + "qualifiedName": "AuthOAuthRevokeGrantResponse" }, "2391": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" + "qualifiedName": "__type" }, "2392": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" + "qualifiedName": "AuthOAuthServerApi" }, "2393": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "authorizationId" + "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" }, "2394": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.approveAuthorization" + "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" }, "2395": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.approveAuthorization" + "qualifiedName": "authorizationId" }, "2396": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "authorizationId" + "qualifiedName": "AuthOAuthServerApi.approveAuthorization" }, "2397": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "options" + "qualifiedName": "AuthOAuthServerApi.approveAuthorization" }, "2398": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "authorizationId" }, "2399": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "options" }, "2400": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.denyAuthorization" + "qualifiedName": "__type" }, "2401": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.denyAuthorization" + "qualifiedName": "__type.skipBrowserRedirect" }, "2402": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "authorizationId" + "qualifiedName": "AuthOAuthServerApi.denyAuthorization" }, "2403": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "options" + "qualifiedName": "AuthOAuthServerApi.denyAuthorization" }, "2404": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "authorizationId" }, "2405": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "options" }, "2406": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.listGrants" + "qualifiedName": "__type" }, "2407": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.listGrants" + "qualifiedName": "__type.skipBrowserRedirect" }, "2408": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.revokeGrant" + "qualifiedName": "AuthOAuthServerApi.listGrants" }, "2409": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.revokeGrant" + "qualifiedName": "AuthOAuthServerApi.listGrants" }, "2410": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "options" + "qualifiedName": "AuthOAuthServerApi.revokeGrant" }, "2411": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthOAuthServerApi.revokeGrant" }, "2412": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.clientId" + "qualifiedName": "options" }, "2413": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyRegistrationOptionsResponse" + "qualifiedName": "__type" }, "2414": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.clientId" }, "2415": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyRegistrationOptionsResponse" }, "2416": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "2417": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.expires_at" + "qualifiedName": "__type.challenge_id" }, "2418": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyRegistrationVerifyParams" + "qualifiedName": "__type.options" }, "2419": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.expires_at" }, "2420": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyRegistrationVerifyParams" }, "2421": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2422": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyMetadata" + "qualifiedName": "__type.challenge_id" }, "2423": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2424": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "PasskeyMetadata" }, "2425": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.friendly_name" + "qualifiedName": "__type" }, "2426": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.created_at" + "qualifiedName": "__type.id" }, "2427": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyAuthenticationOptionsResponse" + "qualifiedName": "__type.friendly_name" }, "2428": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.created_at" }, "2429": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyAuthenticationOptionsResponse" }, "2430": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "2431": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.expires_at" + "qualifiedName": "__type.challenge_id" }, "2432": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyAuthenticationVerifyParams" + "qualifiedName": "__type.options" }, "2433": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.expires_at" }, "2434": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyAuthenticationVerifyParams" }, "2435": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2436": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyListItem" + "qualifiedName": "__type.challenge_id" }, "2437": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2438": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "PasskeyListItem" }, "2439": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.friendly_name" + "qualifiedName": "__type" }, "2440": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.created_at" + "qualifiedName": "__type.id" }, "2441": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.last_used_at" + "qualifiedName": "__type.friendly_name" }, "2442": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithPasskeyCredentials" + "qualifiedName": "__type.created_at" }, "2443": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.last_used_at" }, "2444": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignInWithPasskeyCredentials" }, "2445": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105753,23 +107368,23 @@ }, "2446": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "2447": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signal" + "qualifiedName": "__type" }, "2448": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "RegisterPasskeyCredentials" + "qualifiedName": "__type.captchaToken" }, "2449": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signal" }, "2450": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "RegisterPasskeyCredentials" }, "2451": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105777,35 +107392,35 @@ }, "2452": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signal" + "qualifiedName": "__type.options" }, "2453": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyPasskeyRegistrationParams" + "qualifiedName": "__type" }, "2454": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signal" }, "2455": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challengeId" + "qualifiedName": "VerifyPasskeyRegistrationParams" }, "2456": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2457": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "StartPasskeyAuthenticationParams" + "qualifiedName": "__type.challengeId" }, "2458": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2459": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "StartPasskeyAuthenticationParams" }, "2460": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105813,1811 +107428,1819 @@ }, "2461": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "2462": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyPasskeyAuthenticationParams" + "qualifiedName": "__type" }, "2463": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "2464": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challengeId" + "qualifiedName": "VerifyPasskeyAuthenticationParams" }, "2465": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2466": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyUpdateParams" + "qualifiedName": "__type.challengeId" }, "2467": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2468": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.passkeyId" + "qualifiedName": "PasskeyUpdateParams" }, "2469": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.friendlyName" + "qualifiedName": "__type" }, "2470": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyDeleteParams" + "qualifiedName": "__type.passkeyId" }, "2471": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.friendlyName" }, "2472": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.passkeyId" + "qualifiedName": "PasskeyDeleteParams" }, "2473": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyRegistrationOptionsResponse" + "qualifiedName": "__type" }, "2474": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyRegistrationVerifyResponse" + "qualifiedName": "__type.passkeyId" }, "2475": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAuthenticationOptionsResponse" + "qualifiedName": "AuthPasskeyRegistrationOptionsResponse" }, "2476": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAuthenticationVerifyResponse" + "qualifiedName": "AuthPasskeyRegistrationVerifyResponse" }, "2477": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthPasskeyAuthenticationOptionsResponse" }, "2478": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.session" + "qualifiedName": "AuthPasskeyAuthenticationVerifyResponse" }, "2479": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type" }, "2480": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyListResponse" + "qualifiedName": "__type.session" }, "2481": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyUpdateResponse" + "qualifiedName": "__type.user" }, "2482": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyDeleteResponse" + "qualifiedName": "AuthPasskeyListResponse" }, "2483": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAdminListParams" + "qualifiedName": "AuthPasskeyUpdateResponse" }, "2484": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthPasskeyDeleteResponse" }, "2485": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "AuthPasskeyAdminListParams" }, "2486": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAdminDeleteParams" + "qualifiedName": "__type" }, "2487": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.userId" }, "2488": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "AuthPasskeyAdminDeleteParams" }, "2489": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.passkeyId" + "qualifiedName": "__type" }, "2490": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi" + "qualifiedName": "__type.userId" }, "2491": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startRegistration" + "qualifiedName": "__type.passkeyId" }, "2492": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startRegistration" + "qualifiedName": "AuthPasskeyApi" }, "2493": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyRegistration" + "qualifiedName": "AuthPasskeyApi.startRegistration" }, "2494": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyRegistration" + "qualifiedName": "AuthPasskeyApi.startRegistration" }, "2495": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.verifyRegistration" }, "2496": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startAuthentication" + "qualifiedName": "AuthPasskeyApi.verifyRegistration" }, "2497": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startAuthentication" + "qualifiedName": "params" }, "2498": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.startAuthentication" }, "2499": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyAuthentication" + "qualifiedName": "AuthPasskeyApi.startAuthentication" }, "2500": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyAuthentication" + "qualifiedName": "params" }, "2501": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.verifyAuthentication" }, "2502": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.list" + "qualifiedName": "AuthPasskeyApi.verifyAuthentication" }, "2503": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.list" + "qualifiedName": "params" }, "2504": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.update" + "qualifiedName": "AuthPasskeyApi.list" }, "2505": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.update" + "qualifiedName": "AuthPasskeyApi.list" }, "2506": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.update" }, "2507": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.delete" + "qualifiedName": "AuthPasskeyApi.update" }, "2508": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.delete" + "qualifiedName": "params" }, "2509": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.delete" }, "2510": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi" + "qualifiedName": "AuthPasskeyApi.delete" }, "2511": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" + "qualifiedName": "params" }, "2512": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" + "qualifiedName": "GoTrueAdminPasskeyApi" }, "2513": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" }, "2514": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" + "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" }, "2515": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" + "qualifiedName": "params" }, "2516": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" }, "2517": { + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" + }, + "2518": { + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "params" + }, + "2519": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthError" }, - "2518": { + "2520": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthError" }, - "2519": { + "2521": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "error" }, - "2520": { + "2522": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthApiError" }, - "2521": { + "2523": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthApiError" }, - "2522": { + "2524": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "error" }, - "2523": { + "2525": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthSessionMissingError" }, - "2524": { + "2526": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthSessionMissingError" }, - "2525": { + "2527": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "error" }, - "2526": { + "2528": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthImplicitGrantRedirectError" }, - "2527": { + "2529": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthImplicitGrantRedirectError" }, - "2528": { + "2530": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "error" }, - "2529": { + "2531": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthPKCECodeVerifierMissingError" }, - "2530": { + "2532": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthPKCECodeVerifierMissingError" }, - "2531": { + "2533": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "error" }, - "2532": { + "2534": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthRetryableFetchError" }, - "2533": { + "2535": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthRetryableFetchError" }, - "2534": { + "2536": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "error" }, - "2535": { + "2537": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "isAuthRefreshDiscardedError" + }, + "2538": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "isAuthRefreshDiscardedError" + }, + "2539": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "error" + }, + "2540": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthWeakPasswordError" }, - "2536": { + "2541": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "isAuthWeakPasswordError" }, - "2537": { + "2542": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "error" }, - "2538": { + "2543": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError" }, - "2539": { + "2544": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__constructor" }, - "2540": { + "2545": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError" }, - "2541": { + "2546": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2542": { + "2547": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2543": { + "2548": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "code" }, - "2544": { + "2549": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2545": { + "2550": { "sourceFileName": "", "qualifiedName": "__type" }, - "2546": { + "2551": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "2547": { + "2552": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2548": { + "2553": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2549": { + "2554": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2550": { + "2555": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2551": { + "2556": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2552": { + "2557": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2553": { + "2558": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2554": { + "2559": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2555": { + "2560": { "sourceFileName": "", "qualifiedName": "__type" }, - "2556": { + "2561": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthApiError" }, - "2557": { + "2562": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthApiError.__constructor" }, - "2558": { + "2563": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthApiError" }, - "2559": { + "2564": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2560": { + "2565": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2561": { + "2566": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "code" }, - "2562": { + "2567": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthApiError.status" }, - "2563": { + "2568": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2564": { + "2569": { "sourceFileName": "", "qualifiedName": "__type" }, - "2565": { + "2570": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2566": { + "2571": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2567": { + "2572": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2568": { + "2573": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2569": { + "2574": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2570": { + "2575": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2571": { + "2576": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2572": { + "2577": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2573": { + "2578": { "sourceFileName": "", "qualifiedName": "__type" }, - "2574": { + "2579": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "2575": { + "2580": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError.__constructor" }, - "2576": { + "2581": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "2577": { + "2582": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2578": { + "2583": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "originalError" }, - "2579": { + "2584": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError.originalError" }, - "2580": { + "2585": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2581": { + "2586": { "sourceFileName": "", "qualifiedName": "__type" }, - "2582": { + "2587": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "2583": { + "2588": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2584": { + "2589": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2585": { + "2590": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2586": { + "2591": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2587": { + "2592": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2588": { + "2593": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2589": { + "2594": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2590": { + "2595": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2591": { + "2596": { "sourceFileName": "", "qualifiedName": "__type" }, - "2592": { + "2597": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "2593": { + "2598": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.__constructor" }, - "2594": { + "2599": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "2595": { + "2600": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2596": { + "2601": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "name" }, - "2597": { + "2602": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2598": { + "2603": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "code" }, - "2599": { + "2604": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2600": { + "2605": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2601": { + "2606": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2602": { + "2607": { "sourceFileName": "", "qualifiedName": "__type" }, - "2603": { + "2608": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2604": { + "2609": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2605": { + "2610": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2606": { + "2611": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2607": { + "2612": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2608": { + "2613": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2609": { + "2614": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2610": { + "2615": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2611": { + "2616": { "sourceFileName": "", "qualifiedName": "__type" }, - "2612": { + "2617": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "2613": { + "2618": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError.__constructor" }, - "2614": { + "2619": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "2615": { + "2620": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2616": { + "2621": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2617": { + "2622": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2618": { + "2623": { "sourceFileName": "", "qualifiedName": "__type" }, - "2619": { + "2624": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2620": { + "2625": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2621": { + "2626": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2622": { + "2627": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2623": { + "2628": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2624": { + "2629": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2625": { + "2630": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2626": { + "2631": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2627": { + "2632": { "sourceFileName": "", "qualifiedName": "__type" }, - "2628": { + "2633": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "2629": { + "2634": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError.__constructor" }, - "2630": { + "2635": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "2631": { + "2636": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2632": { + "2637": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2633": { + "2638": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2634": { + "2639": { "sourceFileName": "", "qualifiedName": "__type" }, - "2635": { + "2640": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2636": { + "2641": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2637": { + "2642": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2638": { + "2643": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2639": { + "2644": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2640": { + "2645": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2641": { + "2646": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2642": { + "2647": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2643": { + "2648": { "sourceFileName": "", "qualifiedName": "__type" }, - "2644": { + "2649": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "2645": { + "2650": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError.__constructor" }, - "2646": { + "2651": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "2647": { + "2652": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2648": { + "2653": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2649": { + "2654": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2650": { + "2655": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2651": { + "2656": { "sourceFileName": "", "qualifiedName": "__type" }, - "2652": { + "2657": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2653": { + "2658": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2654": { + "2659": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2655": { + "2660": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2656": { + "2661": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2657": { + "2662": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2658": { + "2663": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2659": { + "2664": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2660": { + "2665": { "sourceFileName": "", "qualifiedName": "__type" }, - "2661": { + "2666": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "2662": { + "2667": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.__constructor" }, - "2663": { + "2668": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "2664": { + "2669": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2665": { + "2670": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "details" }, - "2666": { + "2671": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2667": { + "2672": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2668": { + "2673": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2669": { + "2674": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.details" }, - "2670": { + "2675": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2671": { + "2676": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2672": { + "2677": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2673": { + "2678": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "2674": { + "2679": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "2675": { + "2680": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2676": { + "2681": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2677": { + "2682": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2678": { + "2683": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2679": { + "2684": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2680": { + "2685": { "sourceFileName": "", "qualifiedName": "__type" }, - "2681": { + "2686": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.details" }, - "2682": { + "2687": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2683": { + "2688": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2684": { + "2689": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2685": { + "2690": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2686": { + "2691": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2687": { + "2692": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2688": { + "2693": { "sourceFileName": "", "qualifiedName": "__type" }, - "2689": { + "2694": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2690": { + "2695": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "2691": { + "2696": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor" }, - "2692": { + "2697": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "2693": { + "2698": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2694": { + "2699": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "details" }, - "2695": { + "2700": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2696": { + "2701": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2697": { + "2702": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2698": { + "2703": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.details" }, - "2699": { + "2704": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2700": { + "2705": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2701": { + "2706": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2702": { + "2707": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "2703": { + "2708": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "2704": { + "2709": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2705": { + "2710": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2706": { + "2711": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2707": { + "2712": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2708": { + "2713": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2709": { + "2714": { "sourceFileName": "", "qualifiedName": "__type" }, - "2710": { + "2715": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.details" }, - "2711": { + "2716": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2712": { + "2717": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2713": { + "2718": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2714": { + "2719": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2715": { + "2720": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2716": { + "2721": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2717": { + "2722": { "sourceFileName": "", "qualifiedName": "__type" }, - "2718": { + "2723": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2719": { + "2724": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "2720": { + "2725": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor" }, - "2721": { + "2726": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "2722": { + "2727": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2723": { + "2728": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2724": { + "2729": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2725": { + "2730": { "sourceFileName": "", "qualifiedName": "__type" }, - "2726": { + "2731": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2727": { + "2732": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2728": { + "2733": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2729": { + "2734": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2730": { + "2735": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2731": { + "2736": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2732": { + "2737": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2733": { + "2738": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2734": { + "2739": { "sourceFileName": "", "qualifiedName": "__type" }, - "2735": { + "2740": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "2736": { + "2741": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError.__constructor" }, - "2737": { + "2742": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "2738": { + "2743": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2739": { + "2744": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2740": { + "2745": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2741": { + "2746": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2742": { + "2747": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2743": { + "2748": { "sourceFileName": "", "qualifiedName": "__type" }, - "2744": { + "2749": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2745": { + "2750": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2746": { + "2751": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2747": { + "2752": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2748": { + "2753": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2749": { + "2754": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2750": { + "2755": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2751": { + "2756": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2752": { + "2757": { "sourceFileName": "", "qualifiedName": "__type" }, - "2753": { + "2758": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "2759": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError.__constructor" + }, + "2760": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "2761": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "message" + }, + "2762": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "CustomAuthError.name" + }, + "2763": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "CustomAuthError.status" + }, + "2764": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.code" + }, + "2765": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "2766": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.__isAuthError" + }, + "2767": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "2768": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "2769": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type" + }, + "2770": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.name" + }, + "2771": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.message" + }, + "2772": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.status" + }, + "2773": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.code" + }, + "2774": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "2775": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "2754": { + "2776": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.__constructor" }, - "2755": { + "2777": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "2756": { + "2778": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2757": { + "2779": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2758": { + "2780": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "reasons" }, - "2759": { + "2781": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.reasons" }, - "2760": { + "2782": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "2761": { + "2783": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "2762": { + "2784": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2763": { + "2785": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2764": { + "2786": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2765": { + "2787": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2766": { + "2788": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2767": { + "2789": { "sourceFileName": "", "qualifiedName": "__type" }, - "2768": { + "2790": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.reasons" }, - "2769": { + "2791": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2770": { + "2792": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2771": { + "2793": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2772": { + "2794": { "sourceFileName": "", "qualifiedName": "__type" }, - "2773": { + "2795": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2774": { + "2796": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "2775": { + "2797": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError.__constructor" }, - "2776": { + "2798": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "2777": { + "2799": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2778": { + "2800": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2779": { + "2801": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2780": { + "2802": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2781": { + "2803": { "sourceFileName": "", "qualifiedName": "__type" }, - "2782": { + "2804": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2783": { + "2805": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2784": { + "2806": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2785": { + "2807": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2786": { + "2808": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2787": { + "2809": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2788": { + "2810": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2789": { + "2811": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2790": { + "2812": { "sourceFileName": "", "qualifiedName": "__type" }, - "2791": { + "2813": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default" }, - "2792": { + "2814": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.__constructor" }, - "2793": { + "2815": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default" }, - "2794": { + "2816": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "channel" }, - "2795": { + "2817": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "opts" }, - "2796": { + "2818": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.channel" }, - "2797": { + "2819": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.state" }, - "2798": { + "2820": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.state" }, - "2800": { + "2822": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default" }, - "2801": { + "2823": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.__constructor" }, - "2802": { + "2824": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default" }, - "2803": { + "2825": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "topic" }, - "2804": { + "2826": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "params" }, - "2805": { + "2827": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "socket" }, - "2806": { + "2828": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.topic" }, - "2807": { + "2829": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.params" }, - "2808": { + "2830": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.socket" }, - "2809": { + "2831": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.bindings" }, - "2810": { + "2832": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.subTopic" }, - "2811": { + "2833": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.broadcastEndpointURL" }, - "2812": { + "2834": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.private" }, - "2813": { + "2835": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.presence" }, - "2814": { + "2836": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.state" }, - "2815": { + "2837": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.state" }, - "2816": { + "2838": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.state" }, - "2817": { + "2839": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "state" }, - "2818": { + "2840": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinedOnce" }, - "2819": { + "2841": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinedOnce" }, - "2820": { + "2842": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.timeout" }, - "2821": { + "2843": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.timeout" }, - "2822": { + "2844": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinPush" }, - "2823": { + "2845": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinPush" }, - "2824": { + "2846": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.rejoinTimer" }, - "2825": { + "2847": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.rejoinTimer" }, - "2826": { + "2848": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.subscribe" }, - "2827": { + "2849": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.subscribe" }, - "2828": { + "2850": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2829": { + "2851": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2830": { + "2852": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2831": { + "2853": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "status" }, - "2832": { + "2854": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "err" }, - "2833": { + "2855": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "timeout" }, - "2835": { + "2857": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.presenceState" }, - "2836": { + "2858": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.presenceState" }, - "2837": { + "2859": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2838": { + "2860": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2839": { + "2861": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2841": { + "2863": { "sourceFileName": "", "qualifiedName": "__type" }, - "2842": { + "2864": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.track" }, - "2843": { + "2865": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.track" }, - "2844": { + "2866": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "2845": { + "2867": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2846": { + "2868": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2848": { + "2870": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "2849": { + "2871": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2850": { + "2872": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2852": { + "2874": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.untrack" }, - "2853": { + "2875": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.untrack" }, - "2854": { + "2876": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "2855": { + "2877": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2856": { + "2878": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2858": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "default.on" - }, - "2859": { + "2880": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2860": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "type" - }, - "2861": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "filter" - }, - "2862": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2863": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.event" - }, - "2864": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "callback" - }, - "2865": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2866": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2867": { + "2881": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2868": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "T" - }, - "2869": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2870": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" - }, - "2872": { + "2882": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2873": { + "2883": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2874": { + "2884": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2875": { + "2885": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "2876": { + "2886": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2877": { + "2887": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2878": { + "2888": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2879": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "payload" - }, - "2880": { + "2889": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2881": { + "2890": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2882": { + "2891": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2883": { + "2892": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2885": { + "2894": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2886": { + "2895": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2887": { + "2896": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2888": { + "2897": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "2889": { + "2898": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2890": { + "2899": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2891": { + "2900": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2892": { + "2901": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "2893": { + "2902": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2894": { + "2903": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2895": { + "2904": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2896": { + "2905": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2898": { + "2907": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2899": { + "2908": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2900": { + "2909": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2901": { + "2910": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "2902": { + "2911": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2903": { + "2912": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2904": { + "2913": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2905": { + "2914": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "2906": { + "2915": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2907": { + "2916": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2908": { + "2917": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2909": { + "2918": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2911": { + "2920": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2912": { + "2921": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2913": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "callback" - }, - "2914": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2915": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2916": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "payload" - }, - "2917": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "default.on" - }, - "2918": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "T" - }, - "2919": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2920": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" - }, "2922": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "type" + "qualifiedName": "__type" }, "2923": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "filter" + "qualifiedName": "__type.event" }, "2924": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107761,35 +109384,31 @@ }, "2962": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "type" + "qualifiedName": "T" }, "2963": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "filter" - }, - "2964": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2965": { + "2964": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.event" + "qualifiedName": "__type.__index" }, "2966": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "callback" + "qualifiedName": "type" }, "2967": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" + "qualifiedName": "filter" }, "2968": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" + "qualifiedName": "callback" }, "2969": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "payload" + "qualifiedName": "__type" }, "2970": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107797,15 +109416,15 @@ }, "2971": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.type" + "qualifiedName": "payload" }, "2972": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.event" + "qualifiedName": "default.on" }, "2973": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.meta" + "qualifiedName": "T" }, "2974": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107813,23 +109432,23 @@ }, "2975": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.replayed" + "qualifiedName": "__type.__index" }, - "2976": { + "2977": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.id" + "qualifiedName": "type" }, - "2977": { + "2978": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "filter" }, "2979": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "default.on" + "qualifiedName": "callback" }, "2980": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "2981": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107837,7 +109456,11 @@ }, "2982": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "payload" + }, + "2983": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "default.on" }, "2984": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107900,1758 +109523,1838 @@ "qualifiedName": "__type.id" }, "2999": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.__index" + }, + "3001": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "default.on" + }, + "3002": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "T" + }, + "3003": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3004": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.__index" + }, + "3006": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "type" + }, + "3007": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "filter" + }, + "3008": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3009": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.event" + }, + "3010": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "callback" + }, + "3011": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3012": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3013": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "payload" + }, + "3014": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3015": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.type" + }, + "3016": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.event" + }, + "3017": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.meta" + }, + "3018": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3019": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.replayed" + }, + "3020": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.id" + }, + "3021": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3000": { + "3022": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3001": { + "3023": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3002": { + "3024": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3003": { + "3025": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3004": { + "3026": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3005": { + "3027": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3006": { + "3028": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3007": { + "3029": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3008": { + "3030": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3009": { + "3031": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3010": { + "3032": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3011": { + "3033": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3012": { + "3034": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3013": { + "3035": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3014": { + "3036": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3015": { + "3037": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3016": { + "3038": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3017": { + "3039": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3019": { + "3041": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3020": { + "3042": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3021": { + "3043": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3022": { + "3044": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3023": { + "3045": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3024": { + "3046": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3025": { + "3047": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3026": { + "3048": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3027": { + "3049": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3028": { + "3050": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3029": { + "3051": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3030": { + "3052": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3031": { + "3053": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3032": { + "3054": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3033": { + "3055": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3034": { + "3056": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3036": { + "3058": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3037": { + "3059": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3038": { + "3060": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3039": { + "3061": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3040": { + "3062": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3041": { + "3063": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3042": { + "3064": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3043": { + "3065": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3044": { + "3066": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3045": { + "3067": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3046": { + "3068": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3047": { + "3069": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3048": { + "3070": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3049": { + "3071": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3050": { + "3072": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3051": { + "3073": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3053": { + "3075": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3054": { + "3076": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3055": { + "3077": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3056": { + "3078": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3057": { + "3079": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3058": { + "3080": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3059": { + "3081": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3060": { + "3082": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3061": { + "3083": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3062": { + "3084": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3063": { + "3085": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3064": { + "3086": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3065": { + "3087": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3066": { + "3088": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3067": { + "3089": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3068": { + "3090": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3070": { + "3092": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3071": { + "3093": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3072": { + "3094": { "sourceFileName": "", "qualifiedName": "__type" }, - "3073": { + "3095": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3074": { + "3096": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3075": { + "3097": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3076": { + "3098": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3077": { + "3099": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.httpSend" }, - "3078": { + "3100": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.httpSend" }, - "3079": { + "3101": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "event" }, - "3080": { + "3102": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3081": { + "3103": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "3082": { + "3104": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3083": { + "3105": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.timeout" }, - "3084": { + "3106": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3085": { + "3107": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.success" }, - "3086": { + "3108": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3087": { + "3109": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.success" }, - "3088": { + "3110": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.status" }, - "3089": { + "3111": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.error" }, - "3090": { + "3112": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.send" }, - "3091": { + "3113": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.send" }, - "3092": { + "3114": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "args" }, - "3093": { + "3115": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3094": { + "3116": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3095": { + "3117": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3096": { + "3118": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3097": { + "3119": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3099": { + "3121": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "3100": { + "3122": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3101": { + "3123": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3103": { + "3125": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.updateJoinPayload" }, - "3104": { + "3126": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.updateJoinPayload" }, - "3105": { + "3127": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3106": { + "3128": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.unsubscribe" }, - "3107": { + "3129": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.unsubscribe" }, - "3108": { + "3130": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "timeout" }, - "3109": { + "3131": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.teardown" }, - "3110": { + "3132": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.teardown" }, - "3111": { + "3133": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.copyBindings" }, - "3112": { + "3134": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.copyBindings" }, - "3113": { + "3135": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "other" }, - "3114": { + "3136": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimeChannelOptions" }, - "3115": { + "3137": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3116": { + "3138": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.config" }, - "3117": { + "3139": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3118": { + "3140": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.broadcast" }, - "3119": { + "3141": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3120": { + "3142": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.self" }, - "3121": { + "3143": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.ack" }, - "3122": { + "3144": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.replay" }, - "3123": { + "3145": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.presence" }, - "3124": { + "3146": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3125": { + "3147": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.key" }, - "3126": { + "3148": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.enabled" }, - "3127": { + "3149": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.private" }, - "3128": { + "3150": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimeChannelSendResponse" }, - "3129": { + "3151": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3130": { + "3152": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default" }, - "3131": { + "3153": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.__constructor" }, - "3132": { + "3154": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default" }, - "3133": { + "3155": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "endPoint" }, - "3134": { + "3156": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "options" }, - "3135": { + "3157": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.channels" }, - "3136": { + "3158": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.accessTokenValue" }, - "3137": { + "3159": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.accessToken" }, - "3138": { + "3160": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3139": { + "3161": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3140": { + "3162": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.apiKey" }, - "3141": { + "3163": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.httpEndpoint" }, - "3142": { + "3164": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.headers" }, - "3143": { + "3165": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3144": { + "3166": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3146": { + "3168": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.params" }, - "3147": { + "3169": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3148": { + "3170": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3150": { + "3172": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.ref" }, - "3151": { + "3173": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.logLevel" }, - "3152": { + "3174": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.fetch" }, - "3153": { + "3175": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "3154": { + "3176": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "3155": { + "3177": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "3156": { + "3178": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "3157": { + "3179": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "3158": { + "3180": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "3159": { + "3181": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "3160": { + "3182": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.worker" }, - "3161": { + "3183": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.workerUrl" }, - "3162": { + "3184": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.workerRef" }, - "3163": { + "3185": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.serializer" }, - "3164": { + "3186": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endPoint" }, - "3165": { + "3187": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endPoint" }, - "3166": { + "3188": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.timeout" }, - "3167": { + "3189": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.timeout" }, - "3168": { + "3190": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.transport" }, - "3169": { + "3191": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.transport" }, - "3170": { + "3192": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatCallback" }, - "3171": { + "3193": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatCallback" }, - "3172": { + "3194": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatIntervalMs" }, - "3173": { + "3195": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatIntervalMs" }, - "3174": { + "3196": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatTimer" }, - "3175": { + "3197": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatTimer" }, - "3176": { + "3198": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.pendingHeartbeatRef" }, - "3177": { + "3199": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.pendingHeartbeatRef" }, - "3178": { + "3200": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectTimer" }, - "3179": { + "3201": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectTimer" }, - "3180": { + "3202": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.vsn" }, - "3181": { + "3203": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.vsn" }, - "3182": { + "3204": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.encode" }, - "3183": { + "3205": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.encode" }, - "3184": { + "3206": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.decode" }, - "3185": { + "3207": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.decode" }, - "3186": { + "3208": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectAfterMs" }, - "3187": { + "3209": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectAfterMs" }, - "3188": { + "3210": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3189": { + "3211": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3190": { + "3212": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "tries" }, - "3191": { + "3213": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendBuffer" }, - "3192": { + "3214": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendBuffer" }, - "3193": { + "3215": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3194": { + "3216": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3195": { + "3217": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.stateChangeCallbacks" }, - "3196": { + "3218": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.stateChangeCallbacks" }, - "3197": { + "3219": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3198": { + "3220": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.open" }, - "3199": { + "3221": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.close" }, - "3200": { + "3222": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.error" }, - "3201": { + "3223": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.message" }, - "3208": { + "3230": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connect" }, - "3209": { + "3231": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connect" }, - "3210": { + "3232": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endpointURL" }, - "3211": { + "3233": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endpointURL" }, - "3212": { + "3234": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.disconnect" }, - "3213": { + "3235": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.disconnect" }, - "3214": { + "3236": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "code" }, - "3215": { + "3237": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "reason" }, - "3216": { + "3238": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.getChannels" }, - "3217": { + "3239": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.getChannels" }, - "3218": { + "3240": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeChannel" }, - "3219": { + "3241": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeChannel" }, - "3220": { + "3242": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "channel" }, - "3221": { + "3243": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeAllChannels" }, - "3222": { + "3244": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeAllChannels" }, - "3223": { + "3245": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.log" }, - "3224": { + "3246": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.log" }, - "3225": { + "3247": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "kind" }, - "3226": { + "3248": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "msg" }, - "3227": { + "3249": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "data" }, - "3228": { + "3250": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connectionState" }, - "3229": { + "3251": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connectionState" }, - "3230": { + "3252": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnected" }, - "3231": { + "3253": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnected" }, - "3232": { + "3254": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnecting" }, - "3233": { + "3255": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnecting" }, - "3234": { + "3256": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isDisconnecting" }, - "3235": { + "3257": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isDisconnecting" }, - "3236": { + "3258": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.channel" }, - "3237": { + "3259": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.channel" }, - "3238": { + "3260": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "topic" }, - "3239": { + "3261": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "params" }, - "3240": { + "3262": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.push" }, - "3241": { + "3263": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.push" }, - "3242": { + "3264": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "data" }, - "3243": { + "3265": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.setAuth" }, - "3244": { + "3266": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.setAuth" }, - "3245": { + "3267": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "token" }, - "3246": { + "3268": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendHeartbeat" }, - "3247": { + "3269": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendHeartbeat" }, - "3248": { + "3270": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.onHeartbeat" }, - "3249": { + "3271": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.onHeartbeat" }, - "3250": { + "3272": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "callback" }, - "3251": { + "3273": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "RealtimeClientOptions" }, - "3252": { + "3274": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3253": { + "3275": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.transport" }, - "3254": { + "3276": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.timeout" }, - "3255": { + "3277": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.heartbeatIntervalMs" }, - "3256": { + "3278": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.heartbeatCallback" }, - "3257": { + "3279": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3258": { + "3280": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3259": { + "3281": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "status" }, - "3260": { + "3282": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "latency" }, - "3261": { + "3283": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.vsn" }, - "3262": { + "3284": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.logger" }, - "3263": { + "3285": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3264": { + "3286": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3265": { + "3287": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "kind" }, - "3266": { + "3288": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "msg" }, - "3267": { + "3289": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "data" }, - "3268": { + "3290": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.encode" }, - "3269": { + "3291": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.decode" }, - "3270": { + "3292": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.reconnectAfterMs" }, - "3271": { + "3293": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3272": { + "3294": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3273": { + "3295": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "tries" }, - "3274": { + "3296": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.headers" }, - "3275": { + "3297": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3276": { + "3298": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3278": { + "3300": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.params" }, - "3279": { + "3301": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3280": { + "3302": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3282": { + "3304": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.log_level" }, - "3283": { + "3305": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.logLevel" }, - "3284": { + "3306": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.fetch" }, - "3285": { + "3307": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.worker" }, - "3286": { + "3308": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.workerUrl" }, - "3287": { + "3309": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.accessToken" }, - "3288": { + "3310": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3289": { + "3311": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3290": { + "3312": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.disconnectOnEmptyChannelsAfterMs" }, - "3291": { + "3313": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.sessionStorage" }, - "3292": { + "3314": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "RealtimeMessage" }, - "3293": { + "3315": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3294": { + "3316": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.topic" }, - "3295": { + "3317": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.event" }, - "3296": { + "3318": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.payload" }, - "3297": { + "3319": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.ref" }, - "3298": { + "3320": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.join_ref" }, - "3299": { + "3321": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresChangesFilter" }, - "3300": { + "3322": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3301": { + "3323": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3302": { + "3324": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.schema" }, - "3303": { + "3325": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.table" }, - "3304": { + "3326": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.filter" }, - "3305": { + "3327": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3306": { + "3328": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresChangesPayload" }, - "3307": { + "3329": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3308": { + "3330": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3309": { + "3331": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3311": { + "3333": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresInsertPayload" }, - "3312": { + "3334": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3313": { + "3335": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.eventType" }, - "3314": { + "3336": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.new" }, - "3315": { + "3337": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.old" }, - "3316": { + "3338": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3317": { + "3339": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3318": { + "3340": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3319": { + "3341": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3321": { + "3343": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresUpdatePayload" }, - "3322": { + "3344": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3323": { + "3345": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.eventType" }, - "3324": { + "3346": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.new" }, - "3325": { + "3347": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.old" }, - "3326": { + "3348": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3327": { + "3349": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3328": { + "3350": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3330": { + "3352": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresDeletePayload" }, - "3331": { + "3353": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3332": { + "3354": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.eventType" }, - "3333": { + "3355": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.new" }, - "3334": { + "3356": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3335": { + "3357": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.old" }, - "3336": { + "3358": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3337": { + "3359": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3338": { + "3360": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3340": { + "3362": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "RealtimePresenceJoinPayload" }, - "3341": { + "3363": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3342": { + "3364": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.event" }, - "3343": { + "3365": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.key" }, - "3344": { + "3366": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.currentPresences" }, - "3345": { + "3367": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.newPresences" }, - "3346": { + "3368": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "T" }, - "3347": { + "3369": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3348": { + "3370": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3350": { + "3372": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "RealtimePresenceLeavePayload" }, - "3351": { + "3373": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3352": { + "3374": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.event" }, - "3353": { + "3375": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.key" }, - "3354": { + "3376": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.currentPresences" }, - "3355": { + "3377": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.leftPresences" }, - "3356": { + "3378": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "T" }, - "3357": { + "3379": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3358": { + "3380": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3360": { + "3382": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "RealtimePresenceState" }, - "3361": { + "3383": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3362": { + "3384": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3364": { + "3386": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "T" }, - "3365": { + "3387": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3366": { + "3388": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3368": { + "3390": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3369": { + "3391": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "RealtimeRemoveChannelResponse" }, - "3370": { + "3392": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3371": { + "3393": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES" }, - "3372": { + "3394": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST" }, - "3373": { + "3395": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE" }, - "3374": { + "3396": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES" }, - "3375": { + "3397": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM" }, - "3376": { + "3398": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT" }, - "3377": { + "3399": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL" }, - "3378": { + "3400": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT" }, - "3379": { + "3401": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE" }, - "3380": { + "3402": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE" }, - "3381": { + "3403": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS" }, - "3382": { + "3404": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC" }, - "3383": { + "3405": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN" }, - "3384": { + "3406": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE" }, - "3385": { + "3407": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES" }, - "3386": { + "3408": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED" }, - "3387": { + "3409": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT" }, - "3388": { + "3410": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED" }, - "3389": { + "3411": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR" }, - "3390": { + "3412": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_CHANNEL_STATES" }, - "3391": { + "3413": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3392": { + "3414": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.closed" }, - "3393": { + "3415": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.errored" }, - "3394": { + "3416": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.joined" }, - "3395": { + "3417": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.joining" }, - "3396": { + "3418": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.leaving" }, - "3397": { + "3419": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory" }, - "3399": { + "3421": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.getWebSocketConstructor" }, - "3400": { + "3422": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.getWebSocketConstructor" }, - "3401": { + "3423": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "__type" }, - "3402": { + "3424": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "__type" }, - "3403": { + "3425": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "url" }, - "3404": { + "3426": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "protocols" }, - "3405": { + "3427": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.isWebSocketSupported" }, - "3406": { + "3428": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.isWebSocketSupported" }, - "3409": { + "3431": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike" }, - "3410": { + "3432": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.CONNECTING" }, - "3411": { + "3433": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.OPEN" }, - "3412": { + "3434": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.CLOSING" }, - "3413": { + "3435": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.CLOSED" }, - "3414": { + "3436": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.readyState" }, - "3415": { + "3437": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.url" }, - "3416": { + "3438": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.protocol" }, - "3417": { + "3439": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.close" }, - "3418": { + "3440": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.close" }, - "3419": { + "3441": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "code" }, - "3420": { + "3442": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "reason" }, - "3421": { + "3443": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.send" }, - "3422": { + "3444": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.send" }, - "3423": { + "3445": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "data" }, - "3424": { + "3446": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onopen" }, - "3425": { + "3447": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3426": { + "3448": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3427": { + "3449": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3428": { + "3450": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3429": { + "3451": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onmessage" }, - "3430": { + "3452": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3431": { + "3453": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3432": { + "3454": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3433": { + "3455": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3434": { + "3456": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onclose" }, - "3435": { + "3457": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3436": { + "3458": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3437": { + "3459": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3438": { + "3460": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3439": { + "3461": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onerror" }, - "3440": { + "3462": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3441": { + "3463": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3442": { + "3464": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3443": { + "3465": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3444": { + "3466": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.addEventListener" }, - "3445": { + "3467": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.addEventListener" }, - "3446": { + "3468": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "type" }, - "3447": { + "3469": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "listener" }, - "3448": { + "3470": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.removeEventListener" }, - "3449": { + "3471": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.removeEventListener" }, - "3450": { + "3472": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "type" }, - "3451": { + "3473": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "listener" }, - "3452": { + "3474": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.binaryType" }, - "3453": { + "3475": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.bufferedAmount" }, - "3454": { + "3476": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.extensions" }, - "3455": { + "3477": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.dispatchEvent" }, - "3456": { + "3478": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3457": { + "3479": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3458": { + "3480": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "event" }, - "3459": { + "3481": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor" }, - "3460": { + "3482": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor" }, - "3461": { + "3483": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor" }, - "3462": { + "3484": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "address" }, - "3463": { + "3485": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "subprotocols" }, - "3464": { + "3486": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor.__index" } @@ -109677,7 +111380,7 @@ "flags": {}, "children": [ { - "id": 1741, + "id": 1744, "name": "AuthApiError", "variant": "declaration", "kind": 128, @@ -109703,7 +111406,7 @@ }, "children": [ { - "id": 1742, + "id": 1745, "name": "constructor", "variant": "declaration", "kind": 512, @@ -109713,12 +111416,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L67" } ], "signatures": [ { - "id": 1743, + "id": 1746, "name": "AuthApiError", "variant": "signature", "kind": 16384, @@ -109728,12 +111431,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L67" } ], "parameters": [ { - "id": 1744, + "id": 1747, "name": "message", "variant": "param", "kind": 32768, @@ -109744,7 +111447,7 @@ } }, { - "id": 1745, + "id": 1748, "name": "status", "variant": "param", "kind": 32768, @@ -109755,7 +111458,7 @@ } }, { - "id": 1746, + "id": 1749, "name": "code", "variant": "param", "kind": 32768, @@ -109777,25 +111480,25 @@ ], "type": { "type": "reference", - "target": 1741, + "target": 1744, "name": "AuthApiError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1725, + "target": 1728, "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1724, + "target": 1727, "name": "AuthError.constructor" } }, { - "id": 1748, + "id": 1751, "name": "code", "variant": "declaration", "kind": 1024, @@ -109824,7 +111527,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -109844,7 +111547,7 @@ { "type": "reflection", "declaration": { - "id": 1749, + "id": 1752, "name": "__type", "variant": "declaration", "kind": 65536, @@ -109866,12 +111569,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1729, + "target": 1732, "name": "AuthError.code" } }, { - "id": 1747, + "id": 1750, "name": "status", "variant": "declaration", "kind": 1024, @@ -109889,7 +111592,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L65" } ], "type": { @@ -109898,12 +111601,12 @@ }, "overwrites": { "type": "reference", - "target": 1731, + "target": 1734, "name": "AuthError.status" } }, { - "id": 1751, + "id": 1754, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -109915,12 +111618,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1752, + "id": 1755, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -109932,20 +111635,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1753, + "id": 1756, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1757, + "id": 1760, "name": "code", "variant": "declaration", "kind": 1024, @@ -109955,7 +111658,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -109975,7 +111678,7 @@ { "type": "reflection", "declaration": { - "id": 1758, + "id": 1761, "name": "__type", "variant": "declaration", "kind": 65536, @@ -109997,7 +111700,7 @@ } }, { - "id": 1755, + "id": 1758, "name": "message", "variant": "declaration", "kind": 1024, @@ -110007,7 +111710,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -110016,7 +111719,7 @@ } }, { - "id": 1754, + "id": 1757, "name": "name", "variant": "declaration", "kind": 1024, @@ -110026,7 +111729,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -110035,7 +111738,7 @@ } }, { - "id": 1756, + "id": 1759, "name": "status", "variant": "declaration", "kind": 1024, @@ -110045,7 +111748,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -110066,7 +111769,7 @@ "groups": [ { "title": "Properties", - "children": [1757, 1755, 1754, 1756] + "children": [1760, 1758, 1757, 1759] } ], "sources": [ @@ -110074,21 +111777,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1734, + "target": 1737, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1733, + "target": 1736, "name": "AuthError.toJSON" } } @@ -110096,15 +111799,15 @@ "groups": [ { "title": "Constructors", - "children": [1742] + "children": [1745] }, { "title": "Properties", - "children": [1748, 1747] + "children": [1751, 1750] }, { "title": "Methods", - "children": [1751] + "children": [1754] } ], "sources": [ @@ -110112,20 +111815,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 64, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L64" } ], "extendedTypes": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1723, + "id": 1726, "name": "AuthError", "variant": "declaration", "kind": 128, @@ -110151,7 +111854,7 @@ }, "children": [ { - "id": 1724, + "id": 1727, "name": "constructor", "variant": "declaration", "kind": 512, @@ -110161,12 +111864,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L28" } ], "signatures": [ { - "id": 1725, + "id": 1728, "name": "AuthError", "variant": "signature", "kind": 16384, @@ -110176,12 +111879,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L28" } ], "parameters": [ { - "id": 1726, + "id": 1729, "name": "message", "variant": "param", "kind": 32768, @@ -110192,7 +111895,7 @@ } }, { - "id": 1727, + "id": 1730, "name": "status", "variant": "param", "kind": 32768, @@ -110205,7 +111908,7 @@ } }, { - "id": 1728, + "id": 1731, "name": "code", "variant": "param", "kind": 32768, @@ -110220,7 +111923,7 @@ ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -110238,7 +111941,7 @@ } }, { - "id": 1729, + "id": 1732, "name": "code", "variant": "declaration", "kind": 1024, @@ -110265,7 +111968,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -110285,7 +111988,7 @@ { "type": "reflection", "declaration": { - "id": 1730, + "id": 1733, "name": "__type", "variant": "declaration", "kind": 65536, @@ -110307,7 +112010,7 @@ } }, { - "id": 1731, + "id": 1734, "name": "status", "variant": "declaration", "kind": 1024, @@ -110325,7 +112028,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -110343,7 +112046,7 @@ } }, { - "id": 1733, + "id": 1736, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -110353,12 +112056,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1734, + "id": 1737, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -110368,20 +112071,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1735, + "id": 1738, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1739, + "id": 1742, "name": "code", "variant": "declaration", "kind": 1024, @@ -110391,7 +112094,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -110411,7 +112114,7 @@ { "type": "reflection", "declaration": { - "id": 1740, + "id": 1743, "name": "__type", "variant": "declaration", "kind": 65536, @@ -110433,7 +112136,7 @@ } }, { - "id": 1737, + "id": 1740, "name": "message", "variant": "declaration", "kind": 1024, @@ -110443,7 +112146,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -110452,7 +112155,7 @@ } }, { - "id": 1736, + "id": 1739, "name": "name", "variant": "declaration", "kind": 1024, @@ -110462,7 +112165,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -110471,7 +112174,7 @@ } }, { - "id": 1738, + "id": 1741, "name": "status", "variant": "declaration", "kind": 1024, @@ -110481,7 +112184,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -110502,7 +112205,7 @@ "groups": [ { "title": "Properties", - "children": [1739, 1737, 1736, 1738] + "children": [1742, 1740, 1739, 1741] } ], "sources": [ @@ -110510,7 +112213,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -110522,15 +112225,15 @@ "groups": [ { "title": "Constructors", - "children": [1724] + "children": [1727] }, { "title": "Properties", - "children": [1729, 1731] + "children": [1732, 1734] }, { "title": "Methods", - "children": [1733] + "children": [1736] } ], "sources": [ @@ -110538,7 +112241,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 14, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -110555,23 +112258,23 @@ "extendedBy": [ { "type": "reference", - "target": 1741, + "target": 1744, "name": "AuthApiError" }, { "type": "reference", - "target": 1759, + "target": 1762, "name": "AuthUnknownError" }, { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError" } ] }, { - "id": 1846, + "id": 1849, "name": "AuthImplicitGrantRedirectError", "variant": "declaration", "kind": 128, @@ -110597,7 +112300,7 @@ }, "children": [ { - "id": 1847, + "id": 1850, "name": "constructor", "variant": "declaration", "kind": 512, @@ -110607,12 +112310,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "signatures": [ { - "id": 1848, + "id": 1851, "name": "AuthImplicitGrantRedirectError", "variant": "signature", "kind": 16384, @@ -110622,12 +112325,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "parameters": [ { - "id": 1849, + "id": 1852, "name": "message", "variant": "param", "kind": 32768, @@ -110638,7 +112341,7 @@ } }, { - "id": 1850, + "id": 1853, "name": "details", "variant": "param", "kind": 32768, @@ -110653,14 +112356,14 @@ { "type": "reflection", "declaration": { - "id": 1851, + "id": 1854, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1853, + "id": 1856, "name": "code", "variant": "declaration", "kind": 1024, @@ -110670,7 +112373,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -110679,7 +112382,7 @@ } }, { - "id": 1852, + "id": 1855, "name": "error", "variant": "declaration", "kind": 1024, @@ -110689,7 +112392,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -110701,7 +112404,7 @@ "groups": [ { "title": "Properties", - "children": [1853, 1852] + "children": [1856, 1855] } ], "sources": [ @@ -110709,7 +112412,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ] } @@ -110721,25 +112424,25 @@ ], "type": { "type": "reference", - "target": 1846, + "target": 1849, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1872, + "id": 1875, "name": "code", "variant": "declaration", "kind": 1024, @@ -110768,7 +112471,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -110788,7 +112491,625 @@ { "type": "reflection", "declaration": { - "id": 1873, + "id": 1876, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 1789, + "name": "CustomAuthError.code" + } + }, + { + "id": 1857, + "name": "details", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 190, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1858, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1860, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 190, + "character": 28, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1859, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 190, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1860, 1859] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 190, + "character": 11, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" + } + ] + } + } + ] + }, + "defaultValue": "null" + }, + { + "id": 1873, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 114, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 1787, + "name": "CustomAuthError.name" + } + }, + { + "id": 1874, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP status code that caused the error." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 115, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 1788, + "name": "CustomAuthError.status" + } + }, + { + "id": 1861, + "name": "toJSON", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 196, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L196" + } + ], + "signatures": [ + { + "id": 1862, + "name": "toJSON", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 196, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L196" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1863, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1867, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 200, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L200" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 1868, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + } + ] + } + }, + { + "id": 1869, + "name": "details", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 201, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1870, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1872, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 201, + "character": 30, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1871, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 201, + "character": 15, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1872, 1871] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 201, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" + } + ] + } + } + ] + } + }, + { + "id": 1865, + "name": "message", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 198, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L198" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1864, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 197, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L197" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1866, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 199, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L199" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1867, 1869, 1865, 1864, 1866] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 196, + "character": 12, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L196" + } + ] + } + }, + "overwrites": { + "type": "reference", + "target": 1793, + "name": "CustomAuthError.toJSON" + } + } + ], + "overwrites": { + "type": "reference", + "target": 1792, + "name": "CustomAuthError.toJSON" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [1850] + }, + { + "title": "Properties", + "children": [1875, 1857, 1873, 1874] + }, + { + "title": "Methods", + "children": [1861] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 189, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L189" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1780, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + } + ] + }, + { + "id": 1832, + "name": "AuthInvalidCredentialsError", + "variant": "declaration", + "kind": 128, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error thrown when email/password credentials are invalid." + } + ], + "blockTags": [ + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport { AuthInvalidCredentialsError } from '@supabase/auth-js'\n\nthrow new AuthInvalidCredentialsError('Email or password is incorrect')\n```" + } + ] + } + ] + }, + "children": [ + { + "id": 1833, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 171, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L171" + } + ], + "signatures": [ + { + "id": 1834, + "name": "AuthInvalidCredentialsError", + "variant": "signature", + "kind": 16384, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 171, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L171" + } + ], + "parameters": [ + { + "id": 1835, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "target": 1832, + "name": "AuthInvalidCredentialsError", + "package": "@supabase/auth-js" + }, + "overwrites": { + "type": "reference", + "target": 1782, + "name": "CustomAuthError.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "target": 1781, + "name": "CustomAuthError.constructor" + } + }, + { + "id": 1838, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#status" + }, + { + "kind": "text", + "text": " will also be undefined." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 21, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 1839, "name": "__type", "variant": "declaration", "kind": 65536, @@ -110810,101 +113131,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1854, - "name": "details", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 190, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reflection", - "declaration": { - "id": 1855, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1857, - "name": "code", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 190, - "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1856, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 190, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [1857, 1856] - } - ], - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 190, - "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" - } - ] - } - } - ] - }, - "defaultValue": "null" - }, - { - "id": 1870, + "id": 1836, "name": "name", "variant": "declaration", "kind": 1024, @@ -110916,7 +113148,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -110925,12 +113157,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1871, + "id": 1837, "name": "status", "variant": "declaration", "kind": 1024, @@ -110950,7 +113182,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -110959,50 +113191,54 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1858, + "id": 1841, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 196, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1859, + "id": 1842, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 196, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1860, + "id": 1843, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1864, + "id": 1847, "name": "code", "variant": "declaration", "kind": 1024, @@ -111010,9 +113246,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 200, + "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -111032,7 +113268,7 @@ { "type": "reflection", "declaration": { - "id": 1865, + "id": 1848, "name": "__type", "variant": "declaration", "kind": 65536, @@ -111054,95 +113290,7 @@ } }, { - "id": 1866, - "name": "details", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 201, - "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reflection", - "declaration": { - "id": 1867, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1869, - "name": "code", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 201, - "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1868, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 201, - "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [1869, 1868] - } - ], - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 201, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" - } - ] - } - } - ] - } - }, - { - "id": 1862, + "id": 1845, "name": "message", "variant": "declaration", "kind": 1024, @@ -111150,9 +113298,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 198, + "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -111161,7 +113309,7 @@ } }, { - "id": 1861, + "id": 1844, "name": "name", "variant": "declaration", "kind": 1024, @@ -111169,9 +113317,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 197, + "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -111180,7 +113328,7 @@ } }, { - "id": 1863, + "id": 1846, "name": "status", "variant": "declaration", "kind": 1024, @@ -111188,9 +113336,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 199, + "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -111211,29 +113359,29 @@ "groups": [ { "title": "Properties", - "children": [1864, 1866, 1862, 1861, 1863] + "children": [1847, 1845, 1844, 1846] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 196, + "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -111241,37 +113389,37 @@ "groups": [ { "title": "Constructors", - "children": [1847] + "children": [1833] }, { "title": "Properties", - "children": [1872, 1854, 1870, 1871] + "children": [1838, 1836, 1837] }, { "title": "Methods", - "children": [1858] + "children": [1841] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 189, + "line": 170, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L170" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1829, - "name": "AuthInvalidCredentialsError", + "id": 1979, + "name": "AuthInvalidJwtError", "variant": "declaration", "kind": 128, "flags": {}, @@ -111279,7 +113427,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when email/password credentials are invalid." + "text": "Error thrown when a JWT cannot be verified or parsed." } ], "blockTags": [ @@ -111288,7 +113436,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthInvalidCredentialsError } from '@supabase/auth-js'\n\nthrow new AuthInvalidCredentialsError('Email or password is incorrect')\n```" + "text": "```ts\nimport { AuthInvalidJwtError } from '@supabase/auth-js'\n\nthrow new AuthInvalidJwtError('Token signature is invalid')\n```" } ] } @@ -111296,7 +113444,7 @@ }, "children": [ { - "id": 1830, + "id": 1980, "name": "constructor", "variant": "declaration", "kind": 512, @@ -111304,29 +113452,29 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 171, + "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L388" } ], "signatures": [ { - "id": 1831, - "name": "AuthInvalidCredentialsError", + "id": 1981, + "name": "AuthInvalidJwtError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 171, + "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L388" } ], "parameters": [ { - "id": 1832, + "id": 1982, "name": "message", "variant": "param", "kind": 32768, @@ -111339,25 +113487,25 @@ ], "type": { "type": "reference", - "target": 1829, - "name": "AuthInvalidCredentialsError", + "target": 1979, + "name": "AuthInvalidJwtError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1835, + "id": 1985, "name": "code", "variant": "declaration", "kind": 1024, @@ -111386,7 +113534,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -111406,7 +113554,7 @@ { "type": "reflection", "declaration": { - "id": 1836, + "id": 1986, "name": "__type", "variant": "declaration", "kind": 65536, @@ -111428,12 +113576,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1833, + "id": 1983, "name": "name", "variant": "declaration", "kind": 1024, @@ -111445,7 +113593,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -111454,12 +113602,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1834, + "id": 1984, "name": "status", "variant": "declaration", "kind": 1024, @@ -111479,7 +113627,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -111488,12 +113636,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1838, + "id": 1988, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -111505,12 +113653,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1839, + "id": 1989, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -111522,20 +113670,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1840, + "id": 1990, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1844, + "id": 1994, "name": "code", "variant": "declaration", "kind": 1024, @@ -111545,7 +113693,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -111565,7 +113713,7 @@ { "type": "reflection", "declaration": { - "id": 1845, + "id": 1995, "name": "__type", "variant": "declaration", "kind": 65536, @@ -111587,7 +113735,7 @@ } }, { - "id": 1842, + "id": 1992, "name": "message", "variant": "declaration", "kind": 1024, @@ -111597,7 +113745,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -111606,7 +113754,7 @@ } }, { - "id": 1841, + "id": 1991, "name": "name", "variant": "declaration", "kind": 1024, @@ -111616,7 +113764,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -111625,7 +113773,7 @@ } }, { - "id": 1843, + "id": 1993, "name": "status", "variant": "declaration", "kind": 1024, @@ -111635,7 +113783,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -111656,7 +113804,7 @@ "groups": [ { "title": "Properties", - "children": [1844, 1842, 1841, 1843] + "children": [1994, 1992, 1991, 1993] } ], "sources": [ @@ -111664,21 +113812,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -111686,37 +113834,37 @@ "groups": [ { "title": "Constructors", - "children": [1830] + "children": [1980] }, { "title": "Properties", - "children": [1835, 1833, 1834] + "children": [1985, 1983, 1984] }, { "title": "Methods", - "children": [1838] + "children": [1988] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 170, + "line": 387, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L387" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1959, - "name": "AuthInvalidJwtError", + "id": 1816, + "name": "AuthInvalidTokenResponseError", "variant": "declaration", "kind": 128, "flags": {}, @@ -111724,7 +113872,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a JWT cannot be verified or parsed." + "text": "Error thrown when the token response is malformed." } ], "blockTags": [ @@ -111733,7 +113881,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthInvalidJwtError } from '@supabase/auth-js'\n\nthrow new AuthInvalidJwtError('Token signature is invalid')\n```" + "text": "```ts\nimport { AuthInvalidTokenResponseError } from '@supabase/auth-js'\n\nthrow new AuthInvalidTokenResponseError()\n```" } ] } @@ -111741,7 +113889,7 @@ }, "children": [ { - "id": 1960, + "id": 1817, "name": "constructor", "variant": "declaration", "kind": 512, @@ -111749,60 +113897,47 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 356, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L155" } ], "signatures": [ { - "id": 1961, - "name": "AuthInvalidJwtError", + "id": 1818, + "name": "AuthInvalidTokenResponseError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 356, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L356" - } - ], - "parameters": [ - { - "id": 1962, - "name": "message", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L155" } ], "type": { "type": "reference", - "target": 1959, - "name": "AuthInvalidJwtError", + "target": 1816, + "name": "AuthInvalidTokenResponseError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1965, + "id": 1821, "name": "code", "variant": "declaration", "kind": 1024, @@ -111831,7 +113966,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -111851,7 +113986,7 @@ { "type": "reflection", "declaration": { - "id": 1966, + "id": 1822, "name": "__type", "variant": "declaration", "kind": 65536, @@ -111873,12 +114008,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1963, + "id": 1819, "name": "name", "variant": "declaration", "kind": 1024, @@ -111890,7 +114025,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -111899,12 +114034,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1964, + "id": 1820, "name": "status", "variant": "declaration", "kind": 1024, @@ -111924,7 +114059,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -111933,12 +114068,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1968, + "id": 1824, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -111950,12 +114085,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1969, + "id": 1825, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -111967,20 +114102,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1970, + "id": 1826, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1974, + "id": 1830, "name": "code", "variant": "declaration", "kind": 1024, @@ -111990,7 +114125,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -112010,7 +114145,7 @@ { "type": "reflection", "declaration": { - "id": 1975, + "id": 1831, "name": "__type", "variant": "declaration", "kind": 65536, @@ -112032,7 +114167,7 @@ } }, { - "id": 1972, + "id": 1828, "name": "message", "variant": "declaration", "kind": 1024, @@ -112042,7 +114177,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -112051,7 +114186,7 @@ } }, { - "id": 1971, + "id": 1827, "name": "name", "variant": "declaration", "kind": 1024, @@ -112061,7 +114196,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -112070,7 +114205,7 @@ } }, { - "id": 1973, + "id": 1829, "name": "status", "variant": "declaration", "kind": 1024, @@ -112080,7 +114215,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -112101,7 +114236,7 @@ "groups": [ { "title": "Properties", - "children": [1974, 1972, 1971, 1973] + "children": [1830, 1828, 1827, 1829] } ], "sources": [ @@ -112109,21 +114244,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -112131,37 +114266,37 @@ "groups": [ { "title": "Constructors", - "children": [1960] + "children": [1817] }, { "title": "Properties", - "children": [1965, 1963, 1964] + "children": [1821, 1819, 1820] }, { "title": "Methods", - "children": [1968] + "children": [1824] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 355, + "line": 154, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L154" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1813, - "name": "AuthInvalidTokenResponseError", + "id": 1907, + "name": "AuthPKCECodeVerifierMissingError", "variant": "declaration", "kind": 128, "flags": {}, @@ -112169,7 +114304,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when the token response is malformed." + "text": "Error thrown when the PKCE code verifier is not found in storage.\nThis typically happens when the auth flow was initiated in a different\nbrowser, device, or the storage was cleared." } ], "blockTags": [ @@ -112178,7 +114313,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthInvalidTokenResponseError } from '@supabase/auth-js'\n\nthrow new AuthInvalidTokenResponseError()\n```" + "text": "```ts\nimport { AuthPKCECodeVerifierMissingError } from '@supabase/auth-js'\n\nthrow new AuthPKCECodeVerifierMissingError()\n```" } ] } @@ -112186,7 +114321,7 @@ }, "children": [ { - "id": 1814, + "id": 1908, "name": "constructor", "variant": "declaration", "kind": 512, @@ -112194,47 +114329,47 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 155, + "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L261" } ], "signatures": [ { - "id": 1815, - "name": "AuthInvalidTokenResponseError", + "id": 1909, + "name": "AuthPKCECodeVerifierMissingError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 155, + "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L261" } ], "type": { "type": "reference", - "target": 1813, - "name": "AuthInvalidTokenResponseError", + "target": 1907, + "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1818, + "id": 1912, "name": "code", "variant": "declaration", "kind": 1024, @@ -112263,7 +114398,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -112283,7 +114418,7 @@ { "type": "reflection", "declaration": { - "id": 1819, + "id": 1913, "name": "__type", "variant": "declaration", "kind": 65536, @@ -112305,12 +114440,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1816, + "id": 1910, "name": "name", "variant": "declaration", "kind": 1024, @@ -112322,7 +114457,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -112331,12 +114466,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1817, + "id": 1911, "name": "status", "variant": "declaration", "kind": 1024, @@ -112356,7 +114491,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -112365,12 +114500,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1821, + "id": 1915, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -112382,12 +114517,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1822, + "id": 1916, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -112399,20 +114534,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1823, + "id": 1917, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1827, + "id": 1921, "name": "code", "variant": "declaration", "kind": 1024, @@ -112422,7 +114557,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -112442,7 +114577,7 @@ { "type": "reflection", "declaration": { - "id": 1828, + "id": 1922, "name": "__type", "variant": "declaration", "kind": 65536, @@ -112464,7 +114599,7 @@ } }, { - "id": 1825, + "id": 1919, "name": "message", "variant": "declaration", "kind": 1024, @@ -112474,7 +114609,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -112483,7 +114618,7 @@ } }, { - "id": 1824, + "id": 1918, "name": "name", "variant": "declaration", "kind": 1024, @@ -112493,7 +114628,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -112502,7 +114637,7 @@ } }, { - "id": 1826, + "id": 1920, "name": "status", "variant": "declaration", "kind": 1024, @@ -112512,7 +114647,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -112533,7 +114668,7 @@ "groups": [ { "title": "Properties", - "children": [1827, 1825, 1824, 1826] + "children": [1921, 1919, 1918, 1920] } ], "sources": [ @@ -112541,21 +114676,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -112563,37 +114698,37 @@ "groups": [ { "title": "Constructors", - "children": [1814] + "children": [1908] }, { "title": "Properties", - "children": [1818, 1816, 1817] + "children": [1912, 1910, 1911] }, { "title": "Methods", - "children": [1821] + "children": [1915] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 154, + "line": 260, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L260" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1904, - "name": "AuthPKCECodeVerifierMissingError", + "id": 1878, + "name": "AuthPKCEGrantCodeExchangeError", "variant": "declaration", "kind": 128, "flags": {}, @@ -112601,7 +114736,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when the PKCE code verifier is not found in storage.\nThis typically happens when the auth flow was initiated in a different\nbrowser, device, or the storage was cleared." + "text": "Error thrown during PKCE code exchanges." } ], "blockTags": [ @@ -112610,7 +114745,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthPKCECodeVerifierMissingError } from '@supabase/auth-js'\n\nthrow new AuthPKCECodeVerifierMissingError()\n```" + "text": "```ts\nimport { AuthPKCEGrantCodeExchangeError } from '@supabase/auth-js'\n\nthrow new AuthPKCEGrantCodeExchangeError('PKCE exchange failed')\n```" } ] } @@ -112618,7 +114753,7 @@ }, "children": [ { - "id": 1905, + "id": 1879, "name": "constructor", "variant": "declaration", "kind": 512, @@ -112626,47 +114761,141 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 261, + "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ], "signatures": [ { - "id": 1906, - "name": "AuthPKCECodeVerifierMissingError", + "id": 1880, + "name": "AuthPKCEGrantCodeExchangeError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 261, + "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" + } + ], + "parameters": [ + { + "id": 1881, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1882, + "name": "details", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1883, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1885, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 229, + "character": 57, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1884, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 229, + "character": 42, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1885, 1884] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 229, + "character": 40, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" + } + ] + } + } + ] + }, + "defaultValue": "null" } ], "type": { "type": "reference", - "target": 1904, - "name": "AuthPKCECodeVerifierMissingError", + "target": 1878, + "name": "AuthPKCEGrantCodeExchangeError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1909, + "id": 1904, "name": "code", "variant": "declaration", "kind": 1024, @@ -112695,7 +114924,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -112715,7 +114944,7 @@ { "type": "reflection", "declaration": { - "id": 1910, + "id": 1905, "name": "__type", "variant": "declaration", "kind": 65536, @@ -112737,12 +114966,101 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1907, + "id": 1886, + "name": "details", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 227, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1887, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1889, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 227, + "character": 28, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1888, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 227, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1889, 1888] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 227, + "character": 11, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" + } + ] + } + } + ] + }, + "defaultValue": "null" + }, + { + "id": 1902, "name": "name", "variant": "declaration", "kind": 1024, @@ -112754,7 +115072,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -112763,12 +115081,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1908, + "id": 1903, "name": "status", "variant": "declaration", "kind": 1024, @@ -112788,7 +115106,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -112797,54 +115115,50 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1912, + "id": 1890, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 35, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L234" } ], "signatures": [ { - "id": 1913, + "id": 1891, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 35, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L234" } ], "type": { "type": "reflection", "declaration": { - "id": 1914, + "id": 1892, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1918, + "id": 1896, "name": "code", "variant": "declaration", "kind": 1024, @@ -112852,9 +115166,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 39, + "line": 238, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L238" } ], "type": { @@ -112874,7 +115188,7 @@ { "type": "reflection", "declaration": { - "id": 1919, + "id": 1897, "name": "__type", "variant": "declaration", "kind": 65536, @@ -112896,7 +115210,95 @@ } }, { - "id": 1916, + "id": 1898, + "name": "details", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 239, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1899, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1901, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 239, + "character": 30, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1900, + "name": "error", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 239, + "character": 15, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1901, 1900] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 239, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" + } + ] + } + } + ] + } + }, + { + "id": 1894, "name": "message", "variant": "declaration", "kind": 1024, @@ -112904,9 +115306,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 37, + "line": 236, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L236" } ], "type": { @@ -112915,7 +115317,7 @@ } }, { - "id": 1915, + "id": 1893, "name": "name", "variant": "declaration", "kind": 1024, @@ -112923,9 +115325,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 36, + "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L235" } ], "type": { @@ -112934,7 +115336,7 @@ } }, { - "id": 1917, + "id": 1895, "name": "status", "variant": "declaration", "kind": 1024, @@ -112942,9 +115344,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 38, + "line": 237, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L237" } ], "type": { @@ -112965,29 +115367,29 @@ "groups": [ { "title": "Properties", - "children": [1918, 1916, 1915, 1917] + "children": [1896, 1898, 1894, 1893, 1895] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 35, + "line": 234, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L234" } ] } }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -112995,37 +115397,37 @@ "groups": [ { "title": "Constructors", - "children": [1905] + "children": [1879] }, { "title": "Properties", - "children": [1909, 1907, 1908] + "children": [1904, 1886, 1902, 1903] }, { "title": "Methods", - "children": [1912] + "children": [1890] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 260, + "line": 226, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L226" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1875, - "name": "AuthPKCEGrantCodeExchangeError", + "id": 1941, + "name": "AuthRefreshDiscardedError", "variant": "declaration", "kind": 128, "flags": {}, @@ -113033,7 +115435,23 @@ "summary": [ { "kind": "text", - "text": "Error thrown during PKCE code exchanges." + "text": "Returned when the server rotated a refresh token successfully but the\nclient chose not to persist the rotated tokens because the local session\nchanged mid-flight. Usually means a concurrent " + }, + { + "kind": "code", + "text": "`signOut`" + }, + { + "kind": "text", + "text": " cleared storage\nbetween when the refresh started and when it came back.\n\nSet on the " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " field of the refresh result so callers can tell \"we\ngot rotated tokens but threw them away\" apart from \"the refresh failed.\"\nThe rotated session on the server will be picked up on the next refresh\nvia GoTrue's parent-of-active path." } ], "blockTags": [ @@ -113042,7 +115460,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthPKCEGrantCodeExchangeError } from '@supabase/auth-js'\n\nthrow new AuthPKCEGrantCodeExchangeError('PKCE exchange failed')\n```" + "text": "```ts\nimport { isAuthRefreshDiscardedError } from '@supabase/auth-js'\n\nif (isAuthRefreshDiscardedError(error)) {\n // Concurrent signOut/sign-in raced our refresh. Treat as a no-op.\n}\n```" } ] } @@ -113050,7 +115468,7 @@ }, "children": [ { - "id": 1876, + "id": 1942, "name": "constructor", "variant": "declaration", "kind": 512, @@ -113058,29 +115476,29 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 229, + "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L321" } ], "signatures": [ { - "id": 1877, - "name": "AuthPKCEGrantCodeExchangeError", + "id": 1943, + "name": "AuthRefreshDiscardedError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 229, + "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L321" } ], "parameters": [ { - "id": 1878, + "id": 1944, "name": "message", "variant": "param", "kind": 32768, @@ -113088,111 +115506,31 @@ "type": { "type": "intrinsic", "name": "string" - } - }, - { - "id": 1879, - "name": "details", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reflection", - "declaration": { - "id": 1880, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1882, - "name": "code", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 229, - "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1881, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 229, - "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [1882, 1881] - } - ], - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 229, - "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" - } - ] - } - } - ] }, - "defaultValue": "null" + "defaultValue": "'Refresh result discarded: session state changed mid-flight (e.g., concurrent signOut)'" } ], "type": { "type": "reference", - "target": 1875, - "name": "AuthPKCEGrantCodeExchangeError", + "target": 1941, + "name": "AuthRefreshDiscardedError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1901, + "id": 1947, "name": "code", "variant": "declaration", "kind": 1024, @@ -113221,7 +115559,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -113241,7 +115579,7 @@ { "type": "reflection", "declaration": { - "id": 1902, + "id": 1948, "name": "__type", "variant": "declaration", "kind": 65536, @@ -113263,101 +115601,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1883, - "name": "details", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 227, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reflection", - "declaration": { - "id": 1884, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1886, - "name": "code", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 227, - "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1885, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 227, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [1886, 1885] - } - ], - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 227, - "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" - } - ] - } - } - ] - }, - "defaultValue": "null" - }, - { - "id": 1899, + "id": 1945, "name": "name", "variant": "declaration", "kind": 1024, @@ -113369,7 +115618,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -113378,12 +115627,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1900, + "id": 1946, "name": "status", "variant": "declaration", "kind": 1024, @@ -113403,7 +115652,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -113412,50 +115661,54 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1887, + "id": 1950, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 234, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1888, + "id": 1951, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 234, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1889, + "id": 1952, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1893, + "id": 1956, "name": "code", "variant": "declaration", "kind": 1024, @@ -113463,9 +115716,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 238, + "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -113485,7 +115738,7 @@ { "type": "reflection", "declaration": { - "id": 1894, + "id": 1957, "name": "__type", "variant": "declaration", "kind": 65536, @@ -113507,95 +115760,7 @@ } }, { - "id": 1895, - "name": "details", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 239, - "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reflection", - "declaration": { - "id": 1896, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 1898, - "name": "code", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 239, - "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1897, - "name": "error", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 239, - "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [1898, 1897] - } - ], - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 239, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" - } - ] - } - } - ] - } - }, - { - "id": 1891, + "id": 1954, "name": "message", "variant": "declaration", "kind": 1024, @@ -113603,9 +115768,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 236, + "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -113614,7 +115779,7 @@ } }, { - "id": 1890, + "id": 1953, "name": "name", "variant": "declaration", "kind": 1024, @@ -113622,9 +115787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 235, + "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -113633,7 +115798,7 @@ } }, { - "id": 1892, + "id": 1955, "name": "status", "variant": "declaration", "kind": 1024, @@ -113641,9 +115806,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 237, + "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -113664,29 +115829,29 @@ "groups": [ { "title": "Properties", - "children": [1893, 1895, 1891, 1890, 1892] + "children": [1956, 1954, 1953, 1955] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 234, + "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -113694,36 +115859,36 @@ "groups": [ { "title": "Constructors", - "children": [1876] + "children": [1942] }, { "title": "Properties", - "children": [1901, 1883, 1899, 1900] + "children": [1947, 1945, 1946] }, { "title": "Methods", - "children": [1887] + "children": [1950] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 226, + "line": 320, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L320" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1920, + "id": 1923, "name": "AuthRetryableFetchError", "variant": "declaration", "kind": 128, @@ -113749,7 +115914,7 @@ }, "children": [ { - "id": 1921, + "id": 1924, "name": "constructor", "variant": "declaration", "kind": 512, @@ -113759,12 +115924,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L291" } ], "signatures": [ { - "id": 1922, + "id": 1925, "name": "AuthRetryableFetchError", "variant": "signature", "kind": 16384, @@ -113774,12 +115939,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L291" } ], "parameters": [ { - "id": 1923, + "id": 1926, "name": "message", "variant": "param", "kind": 32768, @@ -113790,7 +115955,7 @@ } }, { - "id": 1924, + "id": 1927, "name": "status", "variant": "param", "kind": 32768, @@ -113803,25 +115968,25 @@ ], "type": { "type": "reference", - "target": 1920, + "target": 1923, "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1927, + "id": 1930, "name": "code", "variant": "declaration", "kind": 1024, @@ -113850,7 +116015,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -113870,7 +116035,7 @@ { "type": "reflection", "declaration": { - "id": 1928, + "id": 1931, "name": "__type", "variant": "declaration", "kind": 65536, @@ -113892,12 +116057,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1925, + "id": 1928, "name": "name", "variant": "declaration", "kind": 1024, @@ -113909,7 +116074,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -113918,12 +116083,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1926, + "id": 1929, "name": "status", "variant": "declaration", "kind": 1024, @@ -113943,7 +116108,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -113952,12 +116117,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1930, + "id": 1933, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -113969,12 +116134,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1931, + "id": 1934, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -113986,20 +116151,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1932, + "id": 1935, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1936, + "id": 1939, "name": "code", "variant": "declaration", "kind": 1024, @@ -114009,7 +116174,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -114029,7 +116194,7 @@ { "type": "reflection", "declaration": { - "id": 1937, + "id": 1940, "name": "__type", "variant": "declaration", "kind": 65536, @@ -114051,7 +116216,7 @@ } }, { - "id": 1934, + "id": 1937, "name": "message", "variant": "declaration", "kind": 1024, @@ -114061,7 +116226,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -114070,7 +116235,7 @@ } }, { - "id": 1933, + "id": 1936, "name": "name", "variant": "declaration", "kind": 1024, @@ -114080,7 +116245,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -114089,7 +116254,7 @@ } }, { - "id": 1935, + "id": 1938, "name": "status", "variant": "declaration", "kind": 1024, @@ -114099,7 +116264,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -114120,7 +116285,7 @@ "groups": [ { "title": "Properties", - "children": [1936, 1934, 1933, 1935] + "children": [1939, 1937, 1936, 1938] } ], "sources": [ @@ -114128,21 +116293,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -114150,15 +116315,15 @@ "groups": [ { "title": "Constructors", - "children": [1921] + "children": [1924] }, { "title": "Properties", - "children": [1927, 1925, 1926] + "children": [1930, 1928, 1929] }, { "title": "Methods", - "children": [1930] + "children": [1933] } ], "sources": [ @@ -114166,20 +116331,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 290, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L290" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1797, + "id": 1800, "name": "AuthSessionMissingError", "variant": "declaration", "kind": 128, @@ -114205,7 +116370,7 @@ }, "children": [ { - "id": 1798, + "id": 1801, "name": "constructor", "variant": "declaration", "kind": 512, @@ -114215,12 +116380,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L135" } ], "signatures": [ { - "id": 1799, + "id": 1802, "name": "AuthSessionMissingError", "variant": "signature", "kind": 16384, @@ -114230,30 +116395,30 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L135" } ], "type": { "type": "reference", - "target": 1797, + "target": 1800, "name": "AuthSessionMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1802, + "id": 1805, "name": "code", "variant": "declaration", "kind": 1024, @@ -114282,7 +116447,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -114302,7 +116467,7 @@ { "type": "reflection", "declaration": { - "id": 1803, + "id": 1806, "name": "__type", "variant": "declaration", "kind": 65536, @@ -114324,12 +116489,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1800, + "id": 1803, "name": "name", "variant": "declaration", "kind": 1024, @@ -114341,7 +116506,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -114350,12 +116515,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1801, + "id": 1804, "name": "status", "variant": "declaration", "kind": 1024, @@ -114375,7 +116540,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -114384,12 +116549,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1805, + "id": 1808, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -114401,12 +116566,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1806, + "id": 1809, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -114418,20 +116583,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1807, + "id": 1810, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1811, + "id": 1814, "name": "code", "variant": "declaration", "kind": 1024, @@ -114441,7 +116606,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -114461,7 +116626,7 @@ { "type": "reflection", "declaration": { - "id": 1812, + "id": 1815, "name": "__type", "variant": "declaration", "kind": 65536, @@ -114483,7 +116648,7 @@ } }, { - "id": 1809, + "id": 1812, "name": "message", "variant": "declaration", "kind": 1024, @@ -114493,7 +116658,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -114502,7 +116667,7 @@ } }, { - "id": 1808, + "id": 1811, "name": "name", "variant": "declaration", "kind": 1024, @@ -114512,7 +116677,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -114521,7 +116686,7 @@ } }, { - "id": 1810, + "id": 1813, "name": "status", "variant": "declaration", "kind": 1024, @@ -114531,7 +116696,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -114552,7 +116717,7 @@ "groups": [ { "title": "Properties", - "children": [1811, 1809, 1808, 1810] + "children": [1814, 1812, 1811, 1813] } ], "sources": [ @@ -114560,21 +116725,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -114582,15 +116747,15 @@ "groups": [ { "title": "Constructors", - "children": [1798] + "children": [1801] }, { "title": "Properties", - "children": [1802, 1800, 1801] + "children": [1805, 1803, 1804] }, { "title": "Methods", - "children": [1805] + "children": [1808] } ], "sources": [ @@ -114598,20 +116763,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 134, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L134" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1759, + "id": 1762, "name": "AuthUnknownError", "variant": "declaration", "kind": 128, @@ -114637,7 +116802,7 @@ }, "children": [ { - "id": 1760, + "id": 1763, "name": "constructor", "variant": "declaration", "kind": 512, @@ -114647,12 +116812,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L96" } ], "signatures": [ { - "id": 1761, + "id": 1764, "name": "AuthUnknownError", "variant": "signature", "kind": 16384, @@ -114662,12 +116827,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L96" } ], "parameters": [ { - "id": 1762, + "id": 1765, "name": "message", "variant": "param", "kind": 32768, @@ -114678,7 +116843,7 @@ } }, { - "id": 1763, + "id": 1766, "name": "originalError", "variant": "param", "kind": 32768, @@ -114691,25 +116856,25 @@ ], "type": { "type": "reference", - "target": 1759, + "target": 1762, "name": "AuthUnknownError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1725, + "target": 1728, "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1724, + "target": 1727, "name": "AuthError.constructor" } }, { - "id": 1765, + "id": 1768, "name": "code", "variant": "declaration", "kind": 1024, @@ -114738,7 +116903,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -114758,7 +116923,7 @@ { "type": "reflection", "declaration": { - "id": 1766, + "id": 1769, "name": "__type", "variant": "declaration", "kind": 65536, @@ -114780,12 +116945,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1729, + "target": 1732, "name": "AuthError.code" } }, { - "id": 1764, + "id": 1767, "name": "originalError", "variant": "declaration", "kind": 1024, @@ -114795,7 +116960,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L94" } ], "type": { @@ -114804,7 +116969,7 @@ } }, { - "id": 1767, + "id": 1770, "name": "status", "variant": "declaration", "kind": 1024, @@ -114824,7 +116989,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -114842,12 +117007,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1731, + "target": 1734, "name": "AuthError.status" } }, { - "id": 1769, + "id": 1772, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -114859,12 +117024,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1770, + "id": 1773, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -114876,20 +117041,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1771, + "id": 1774, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1775, + "id": 1778, "name": "code", "variant": "declaration", "kind": 1024, @@ -114899,7 +117064,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -114919,7 +117084,7 @@ { "type": "reflection", "declaration": { - "id": 1776, + "id": 1779, "name": "__type", "variant": "declaration", "kind": 65536, @@ -114941,7 +117106,7 @@ } }, { - "id": 1773, + "id": 1776, "name": "message", "variant": "declaration", "kind": 1024, @@ -114951,7 +117116,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -114960,7 +117125,7 @@ } }, { - "id": 1772, + "id": 1775, "name": "name", "variant": "declaration", "kind": 1024, @@ -114970,7 +117135,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -114979,7 +117144,7 @@ } }, { - "id": 1774, + "id": 1777, "name": "status", "variant": "declaration", "kind": 1024, @@ -114989,7 +117154,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -115010,7 +117175,7 @@ "groups": [ { "title": "Properties", - "children": [1775, 1773, 1772, 1774] + "children": [1778, 1776, 1775, 1777] } ], "sources": [ @@ -115018,21 +117183,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1734, + "target": 1737, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1733, + "target": 1736, "name": "AuthError.toJSON" } } @@ -115040,15 +117205,15 @@ "groups": [ { "title": "Constructors", - "children": [1760] + "children": [1763] }, { "title": "Properties", - "children": [1765, 1764, 1767] + "children": [1768, 1767, 1770] }, { "title": "Methods", - "children": [1769] + "children": [1772] } ], "sources": [ @@ -115056,20 +117221,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 93, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L93" } ], "extendedTypes": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1938, + "id": 1958, "name": "AuthWeakPasswordError", "variant": "declaration", "kind": 128, @@ -115095,7 +117260,7 @@ }, "children": [ { - "id": 1939, + "id": 1959, "name": "constructor", "variant": "declaration", "kind": 512, @@ -115103,14 +117268,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 321, + "line": 353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L353" } ], "signatures": [ { - "id": 1940, + "id": 1960, "name": "AuthWeakPasswordError", "variant": "signature", "kind": 16384, @@ -115118,14 +117283,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 321, + "line": 353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L353" } ], "parameters": [ { - "id": 1941, + "id": 1961, "name": "message", "variant": "param", "kind": 32768, @@ -115136,7 +117301,7 @@ } }, { - "id": 1942, + "id": 1962, "name": "status", "variant": "param", "kind": 32768, @@ -115147,7 +117312,7 @@ } }, { - "id": 1943, + "id": 1963, "name": "reasons", "variant": "param", "kind": 32768, @@ -115176,25 +117341,25 @@ ], "type": { "type": "reference", - "target": 1938, + "target": 1958, "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1956, + "id": 1976, "name": "code", "variant": "declaration", "kind": 1024, @@ -115223,7 +117388,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -115243,7 +117408,7 @@ { "type": "reflection", "declaration": { - "id": 1957, + "id": 1977, "name": "__type", "variant": "declaration", "kind": 65536, @@ -115265,12 +117430,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1954, + "id": 1974, "name": "name", "variant": "declaration", "kind": 1024, @@ -115282,7 +117447,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -115291,12 +117456,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1944, + "id": 1964, "name": "reasons", "variant": "declaration", "kind": 1024, @@ -115312,9 +117477,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 319, + "line": 351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L351" } ], "type": { @@ -115339,7 +117504,7 @@ } }, { - "id": 1955, + "id": 1975, "name": "status", "variant": "declaration", "kind": 1024, @@ -115359,7 +117524,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -115368,12 +117533,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1945, + "id": 1965, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -115381,14 +117546,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 327, + "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L359" } ], "signatures": [ { - "id": 1946, + "id": 1966, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -115396,22 +117561,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 327, + "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L359" } ], "type": { "type": "reflection", "declaration": { - "id": 1947, + "id": 1967, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1951, + "id": 1971, "name": "code", "variant": "declaration", "kind": 1024, @@ -115419,9 +117584,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 331, + "line": 363, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L363" } ], "type": { @@ -115441,7 +117606,7 @@ { "type": "reflection", "declaration": { - "id": 1952, + "id": 1972, "name": "__type", "variant": "declaration", "kind": 65536, @@ -115463,7 +117628,7 @@ } }, { - "id": 1949, + "id": 1969, "name": "message", "variant": "declaration", "kind": 1024, @@ -115471,9 +117636,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 329, + "line": 361, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L361" } ], "type": { @@ -115482,7 +117647,7 @@ } }, { - "id": 1948, + "id": 1968, "name": "name", "variant": "declaration", "kind": 1024, @@ -115490,9 +117655,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 328, + "line": 360, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L360" } ], "type": { @@ -115501,7 +117666,7 @@ } }, { - "id": 1953, + "id": 1973, "name": "reasons", "variant": "declaration", "kind": 1024, @@ -115509,9 +117674,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 332, + "line": 364, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L364" } ], "type": { @@ -115536,7 +117701,7 @@ } }, { - "id": 1950, + "id": 1970, "name": "status", "variant": "declaration", "kind": 1024, @@ -115544,9 +117709,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 330, + "line": 362, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L362" } ], "type": { @@ -115567,29 +117732,29 @@ "groups": [ { "title": "Properties", - "children": [1951, 1949, 1948, 1953, 1950] + "children": [1971, 1969, 1968, 1973, 1970] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 327, + "line": 359, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L359" } ] } }, "overwrites": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -115597,36 +117762,36 @@ "groups": [ { "title": "Constructors", - "children": [1939] + "children": [1959] }, { "title": "Properties", - "children": [1956, 1954, 1944, 1955] + "children": [1976, 1974, 1964, 1975] }, { "title": "Methods", - "children": [1945] + "children": [1965] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 315, + "line": 347, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L347" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1777, + "id": 1780, "name": "CustomAuthError", "variant": "declaration", "kind": 128, @@ -115652,7 +117817,7 @@ }, "children": [ { - "id": 1778, + "id": 1781, "name": "constructor", "variant": "declaration", "kind": 512, @@ -115662,12 +117827,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L117" } ], "signatures": [ { - "id": 1779, + "id": 1782, "name": "CustomAuthError", "variant": "signature", "kind": 16384, @@ -115677,12 +117842,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L117" } ], "parameters": [ { - "id": 1780, + "id": 1783, "name": "message", "variant": "param", "kind": 32768, @@ -115693,7 +117858,7 @@ } }, { - "id": 1781, + "id": 1784, "name": "name", "variant": "param", "kind": 32768, @@ -115704,7 +117869,7 @@ } }, { - "id": 1782, + "id": 1785, "name": "status", "variant": "param", "kind": 32768, @@ -115715,7 +117880,7 @@ } }, { - "id": 1783, + "id": 1786, "name": "code", "variant": "param", "kind": 32768, @@ -115737,25 +117902,25 @@ ], "type": { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1725, + "target": 1728, "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1724, + "target": 1727, "name": "AuthError.constructor" } }, { - "id": 1786, + "id": 1789, "name": "code", "variant": "declaration", "kind": 1024, @@ -115784,7 +117949,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -115804,7 +117969,7 @@ { "type": "reflection", "declaration": { - "id": 1787, + "id": 1790, "name": "__type", "variant": "declaration", "kind": 65536, @@ -115826,12 +117991,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1729, + "target": 1732, "name": "AuthError.code" } }, { - "id": 1784, + "id": 1787, "name": "name", "variant": "declaration", "kind": 1024, @@ -115841,7 +118006,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -115855,7 +118020,7 @@ } }, { - "id": 1785, + "id": 1788, "name": "status", "variant": "declaration", "kind": 1024, @@ -115873,7 +118038,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -115882,12 +118047,12 @@ }, "overwrites": { "type": "reference", - "target": 1731, + "target": 1734, "name": "AuthError.status" } }, { - "id": 1789, + "id": 1792, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -115899,12 +118064,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1790, + "id": 1793, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -115916,20 +118081,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1791, + "id": 1794, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1795, + "id": 1798, "name": "code", "variant": "declaration", "kind": 1024, @@ -115939,7 +118104,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -115959,7 +118124,7 @@ { "type": "reflection", "declaration": { - "id": 1796, + "id": 1799, "name": "__type", "variant": "declaration", "kind": 65536, @@ -115981,7 +118146,7 @@ } }, { - "id": 1793, + "id": 1796, "name": "message", "variant": "declaration", "kind": 1024, @@ -115991,7 +118156,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -116000,7 +118165,7 @@ } }, { - "id": 1792, + "id": 1795, "name": "name", "variant": "declaration", "kind": 1024, @@ -116010,7 +118175,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -116019,7 +118184,7 @@ } }, { - "id": 1794, + "id": 1797, "name": "status", "variant": "declaration", "kind": 1024, @@ -116029,7 +118194,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -116050,7 +118215,7 @@ "groups": [ { "title": "Properties", - "children": [1795, 1793, 1792, 1794] + "children": [1798, 1796, 1795, 1797] } ], "sources": [ @@ -116058,21 +118223,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1734, + "target": 1737, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1733, + "target": 1736, "name": "AuthError.toJSON" } } @@ -116080,15 +118245,15 @@ "groups": [ { "title": "Constructors", - "children": [1778] + "children": [1781] }, { "title": "Properties", - "children": [1786, 1784, 1785] + "children": [1789, 1787, 1788] }, { "title": "Methods", - "children": [1789] + "children": [1792] } ], "sources": [ @@ -116096,13 +118261,13 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 113, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L113" } ], "extendedTypes": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -116110,47 +118275,52 @@ "extendedBy": [ { "type": "reference", - "target": 1797, + "target": 1800, "name": "AuthSessionMissingError" }, { "type": "reference", - "target": 1813, + "target": 1816, "name": "AuthInvalidTokenResponseError" }, { "type": "reference", - "target": 1829, + "target": 1832, "name": "AuthInvalidCredentialsError" }, { "type": "reference", - "target": 1846, + "target": 1849, "name": "AuthImplicitGrantRedirectError" }, { "type": "reference", - "target": 1875, + "target": 1878, "name": "AuthPKCEGrantCodeExchangeError" }, { "type": "reference", - "target": 1904, + "target": 1907, "name": "AuthPKCECodeVerifierMissingError" }, { "type": "reference", - "target": 1920, + "target": 1923, "name": "AuthRetryableFetchError" }, { "type": "reference", - "target": 1938, + "target": 1941, + "name": "AuthRefreshDiscardedError" + }, + { + "type": "reference", + "target": 1958, "name": "AuthWeakPasswordError" }, { "type": "reference", - "target": 1959, + "target": 1979, "name": "AuthInvalidJwtError" } ] @@ -116171,9 +118341,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 100, + "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "signatures": [ @@ -116216,9 +118386,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 100, + "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "parameters": [ @@ -116248,9 +118418,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 111, + "line": 103, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L103" } ], "type": { @@ -116271,9 +118441,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 110, + "line": 102, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L102" } ], "type": { @@ -116500,9 +118670,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 107, + "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "type": { @@ -116516,9 +118686,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 107, + "line": 99, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "indexSignatures": [ @@ -116531,9 +118701,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 108, + "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" } ], "parameters": [ @@ -116568,9 +118738,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 106, + "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L98" } ], "type": { @@ -116589,9 +118759,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 105, + "line": 97, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ] } @@ -116627,7 +118797,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" } ], "type": { @@ -116656,7 +118826,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -116685,7 +118855,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" } ], "type": { @@ -116722,7 +118892,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" } ], "type": { @@ -116733,7 +118903,7 @@ } }, { - "id": 58, + "id": 55, "name": "createUser", "variant": "declaration", "kind": 2048, @@ -116741,14 +118911,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 493, + "line": 485, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L485" } ], "signatures": [ { - "id": 59, + "id": 56, "name": "createUser", "variant": "signature", "kind": 4096, @@ -116900,14 +119070,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 493, + "line": 485, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L485" } ], "parameters": [ { - "id": 60, + "id": 57, "name": "attributes", "variant": "param", "kind": 32768, @@ -116941,7 +119111,7 @@ ] }, { - "id": 82, + "id": 79, "name": "deleteUser", "variant": "declaration", "kind": 2048, @@ -116949,14 +119119,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 847, + "line": 839, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L839" } ], "signatures": [ { - "id": 83, + "id": 80, "name": "deleteUser", "variant": "signature", "kind": 4096, @@ -117048,14 +119218,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 847, + "line": 839, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L839" } ], "parameters": [ { - "id": 84, + "id": 81, "name": "id", "variant": "param", "kind": 32768, @@ -117074,7 +119244,7 @@ } }, { - "id": 85, + "id": 82, "name": "shouldSoftDelete", "variant": "param", "kind": 32768, @@ -117123,7 +119293,7 @@ ] }, { - "id": 55, + "id": 52, "name": "generateLink", "variant": "declaration", "kind": 2048, @@ -117131,14 +119301,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 383, + "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L375" } ], "signatures": [ { - "id": 56, + "id": 53, "name": "generateLink", "variant": "signature", "kind": 4096, @@ -117358,14 +119528,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 383, + "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L375" } ], "parameters": [ { - "id": 57, + "id": 54, "name": "params", "variant": "param", "kind": 32768, @@ -117399,7 +119569,7 @@ ] }, { - "id": 75, + "id": 72, "name": "getUserById", "variant": "declaration", "kind": 2048, @@ -117407,14 +119577,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 636, + "line": 628, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L628" } ], "signatures": [ { - "id": 76, + "id": 73, "name": "getUserById", "variant": "signature", "kind": 4096, @@ -117498,14 +119668,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 636, + "line": 628, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L628" } ], "parameters": [ { - "id": 77, + "id": 74, "name": "uid", "variant": "param", "kind": 32768, @@ -117553,7 +119723,7 @@ ] }, { - "id": 48, + "id": 45, "name": "inviteUserByEmail", "variant": "declaration", "kind": 2048, @@ -117561,14 +119731,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 240, + "line": 232, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" } ], "signatures": [ { - "id": 49, + "id": 46, "name": "inviteUserByEmail", "variant": "signature", "kind": 4096, @@ -117652,14 +119822,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 240, + "line": 232, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" } ], "parameters": [ { - "id": 50, + "id": 47, "name": "email", "variant": "param", "kind": 32768, @@ -117678,7 +119848,7 @@ } }, { - "id": 51, + "id": 48, "name": "options", "variant": "param", "kind": 32768, @@ -117694,14 +119864,14 @@ "type": { "type": "reflection", "declaration": { - "id": 52, + "id": 49, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 53, + "id": 50, "name": "data", "variant": "declaration", "kind": 1024, @@ -117727,9 +119897,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 244, + "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L236" } ], "type": { @@ -117738,7 +119908,7 @@ } }, { - "id": 54, + "id": 51, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -117756,9 +119926,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 247, + "line": 239, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L239" } ], "type": { @@ -117770,15 +119940,15 @@ "groups": [ { "title": "Properties", - "children": [53, 54] + "children": [50, 51] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 242, + "line": 234, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L234" } ] } @@ -117807,7 +119977,7 @@ ] }, { - "id": 61, + "id": 58, "name": "listUsers", "variant": "declaration", "kind": 2048, @@ -117815,14 +119985,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 534, + "line": 526, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L526" } ], "signatures": [ { - "id": 62, + "id": 59, "name": "listUsers", "variant": "signature", "kind": 4096, @@ -117895,14 +120065,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 534, + "line": 526, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L526" } ], "parameters": [ { - "id": 63, + "id": 60, "name": "params", "variant": "param", "kind": 32768, @@ -117954,14 +120124,14 @@ { "type": "reflection", "declaration": { - "id": 64, + "id": 61, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 65, + "id": 62, "name": "data", "variant": "declaration", "kind": 1024, @@ -117969,9 +120139,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -117980,14 +120150,14 @@ { "type": "reflection", "declaration": { - "id": 66, + "id": 63, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 68, + "id": 65, "name": "aud", "variant": "declaration", "kind": 1024, @@ -117995,9 +120165,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -118006,7 +120176,7 @@ } }, { - "id": 67, + "id": 64, "name": "users", "variant": "declaration", "kind": 1024, @@ -118014,9 +120184,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -118033,15 +120203,15 @@ "groups": [ { "title": "Properties", - "children": [68, 67] + "children": [65, 64] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ] } @@ -118056,7 +120226,7 @@ } }, { - "id": 69, + "id": 66, "name": "error", "variant": "declaration", "kind": 1024, @@ -118064,9 +120234,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -118078,15 +120248,15 @@ "groups": [ { "title": "Properties", - "children": [65, 69] + "children": [62, 66] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ] } @@ -118094,14 +120264,14 @@ { "type": "reflection", "declaration": { - "id": 70, + "id": 67, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 71, + "id": 68, "name": "data", "variant": "declaration", "kind": 1024, @@ -118109,22 +120279,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ], "type": { "type": "reflection", "declaration": { - "id": 72, + "id": 69, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 73, + "id": 70, "name": "users", "variant": "declaration", "kind": 1024, @@ -118132,9 +120302,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ], "type": { @@ -118145,22 +120315,22 @@ "groups": [ { "title": "Properties", - "children": [73] + "children": [70] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ] } } }, { - "id": 74, + "id": 71, "name": "error", "variant": "declaration", "kind": 1024, @@ -118168,14 +120338,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -118184,15 +120354,15 @@ "groups": [ { "title": "Properties", - "children": [71, 74] + "children": [68, 71] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ] } @@ -118207,7 +120377,7 @@ ] }, { - "id": 41, + "id": 38, "name": "signOut", "variant": "declaration", "kind": 2048, @@ -118215,14 +120385,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 150, + "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L142" } ], "signatures": [ { - "id": 42, + "id": 39, "name": "signOut", "variant": "signature", "kind": 4096, @@ -118258,14 +120428,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 150, + "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L142" } ], "parameters": [ { - "id": 43, + "id": 40, "name": "jwt", "variant": "param", "kind": 32768, @@ -118284,7 +120454,7 @@ } }, { - "id": 44, + "id": 41, "name": "scope", "variant": "param", "kind": 32768, @@ -118327,14 +120497,14 @@ { "type": "reflection", "declaration": { - "id": 45, + "id": 42, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 46, + "id": 43, "name": "data", "variant": "declaration", "kind": 1024, @@ -118342,9 +120512,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 153, + "line": 145, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L145" } ], "type": { @@ -118353,7 +120523,7 @@ } }, { - "id": 47, + "id": 44, "name": "error", "variant": "declaration", "kind": 1024, @@ -118361,9 +120531,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 153, + "line": 145, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L145" } ], "type": { @@ -118375,7 +120545,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -118386,15 +120556,15 @@ "groups": [ { "title": "Properties", - "children": [46, 47] + "children": [43, 44] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 153, + "line": 145, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L145" } ] } @@ -118407,7 +120577,7 @@ ] }, { - "id": 78, + "id": 75, "name": "updateUserById", "variant": "declaration", "kind": 2048, @@ -118415,14 +120585,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 797, + "line": 789, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L789" } ], "signatures": [ { - "id": 79, + "id": 76, "name": "updateUserById", "variant": "signature", "kind": 4096, @@ -118488,7 +120658,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient.refreshSession", - "target": 412 + "target": 410 }, { "kind": "text", @@ -118506,7 +120676,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient.updateUser", - "target": 388 + "target": 386 }, { "kind": "text", @@ -118624,14 +120794,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 797, + "line": 789, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L789" } ], "parameters": [ { - "id": 80, + "id": 77, "name": "uid", "variant": "param", "kind": 32768, @@ -118650,7 +120820,7 @@ } }, { - "id": 81, + "id": 78, "name": "attributes", "variant": "param", "kind": 32768, @@ -118711,13 +120881,13 @@ }, { "title": "Methods", - "children": [58, 82, 55, 75, 48, 61, 41, 78] + "children": [55, 79, 52, 72, 45, 58, 38, 75] } ], "categories": [ { "title": "Auth", - "children": [58, 82, 55, 75, 48, 61, 41, 78] + "children": [55, 79, 52, 72, 45, 58, 38, 75] }, { "title": "Other", @@ -118729,19 +120899,19 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 44, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" } ] }, { - "id": 139, + "id": 136, "name": "GoTrueClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 141, + "id": 138, "name": "constructor", "variant": "declaration", "kind": 512, @@ -118749,14 +120919,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 341, + "line": 366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L366" } ], "signatures": [ { - "id": 142, + "id": 139, "name": "GoTrueClient", "variant": "signature", "kind": 16384, @@ -118794,14 +120964,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 341, + "line": 366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L366" } ], "parameters": [ { - "id": 143, + "id": 140, "name": "options", "variant": "param", "kind": 32768, @@ -118816,7 +120986,7 @@ ], "type": { "type": "reference", - "target": 139, + "target": 136, "name": "GoTrueClient", "package": "@supabase/auth-js", "qualifiedName": "default" @@ -118825,7 +120995,7 @@ ] }, { - "id": 145, + "id": 142, "name": "admin", "variant": "declaration", "kind": 1024, @@ -118841,9 +121011,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 226, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L234" } ], "type": { @@ -118855,7 +121025,7 @@ } }, { - "id": 146, + "id": 143, "name": "mfa", "variant": "declaration", "kind": 1024, @@ -118871,9 +121041,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 230, + "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L238" } ], "type": { @@ -118884,7 +121054,7 @@ } }, { - "id": 147, + "id": 144, "name": "oauth", "variant": "declaration", "kind": 1024, @@ -118900,9 +121070,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 236, + "line": 244, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L244" } ], "type": { @@ -118913,7 +121083,7 @@ } }, { - "id": 148, + "id": 145, "name": "passkey", "variant": "declaration", "kind": 1024, @@ -118937,9 +121107,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 243, + "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L251" } ], "type": { @@ -118950,7 +121120,155 @@ } }, { - "id": 244, + "id": 579, + "name": "dispose", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/GoTrueClient.ts", + "line": 5189, + "character": 8, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5189" + } + ], + "signatures": [ + { + "id": 580, + "name": "dispose", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tears down the client's background work: stops the auto-refresh interval,\nremoves the " + }, + { + "kind": "code", + "text": "`visibilitychange`" + }, + { + "kind": "text", + "text": " listener, closes the cross-tab\n" + }, + { + "kind": "code", + "text": "`BroadcastChannel`" + }, + { + "kind": "text", + "text": ", and clears registered " + }, + { + "kind": "code", + "text": "`onAuthStateChange`" + }, + { + "kind": "text", + "text": " subscribers.\n\nCall this from cleanup hooks when the client is being replaced before\nits JS realm is destroyed. React Strict Mode and HMR are the common\ncases. Any in-flight " + }, + { + "kind": "code", + "text": "`fetch`" + }, + { + "kind": "text", + "text": " calls continue to completion and may still\nwrite to storage; dispose doesn't abort them or erase storage.\n\nLifecycle caveat: because in-flight refreshes are not aborted, a\ndisposed instance can still persist a rotated session to storage after\n" + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " returns. A subsequent " + }, + { + "kind": "code", + "text": "`createClient`" + }, + { + "kind": "text", + "text": " against the same\n" + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " will pick up that session on its next read. If you need\nstrict isolation between client lifecycles, await any pending auth\noperation before calling " + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " (or change the " + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " for\nthe replacement client).\n\nSafe to call repeatedly." + } + ], + "blockTags": [ + { + "tag": "@category", + "content": [ + { + "kind": "text", + "text": "Auth" + } + ] + }, + { + "tag": "@example", + "name": "Cleanup on React unmount", + "content": [ + { + "kind": "code", + "text": "```ts\nuseEffect(() => {\n const client = createClient(...)\n return () => { client.auth.dispose() }\n}, [])\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/GoTrueClient.ts", + "line": 5189, + "character": 8, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5189" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 242, "name": "exchangeCodeForSession", "variant": "declaration", "kind": 2048, @@ -118958,14 +121276,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1405, + "line": 1453, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1453" } ], "signatures": [ { - "id": 245, + "id": 243, "name": "exchangeCodeForSession", "variant": "signature", "kind": 4096, @@ -119040,14 +121358,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1405, + "line": 1453, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1453" } ], "parameters": [ { - "id": 246, + "id": 244, "name": "authCode", "variant": "param", "kind": 32768, @@ -119087,9 +121405,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5868, + "line": 6145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5868" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6145" } ], "signatures": [ @@ -119195,9 +121513,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5868, + "line": 6145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5868" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6145" } ], "parameters": [ @@ -119289,9 +121607,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 6154, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6154" } ], "type": { @@ -119318,9 +121636,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5880, + "line": 6157, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5880" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6157" } ], "type": { @@ -119341,9 +121659,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5880, + "line": 6157, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5880" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6157" } ], "type": { @@ -119366,9 +121684,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5880, + "line": 6157, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5880" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6157" } ] } @@ -119399,9 +121717,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5874, + "line": 6151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6151" } ], "type": { @@ -119424,9 +121742,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5870, + "line": 6147, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5870" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6147" } ] } @@ -119462,9 +121780,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -119485,9 +121803,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -119506,9 +121824,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -119527,9 +121845,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -119552,9 +121870,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ] } @@ -119569,9 +121887,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5885, + "line": 6162, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5885" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6162" } ], "type": { @@ -119589,9 +121907,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5883, + "line": 6160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5883" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6160" } ] } @@ -119614,9 +121932,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5887, + "line": 6164, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6164" } ], "type": { @@ -119633,14 +121951,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5887, + "line": 6164, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6164" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -119655,9 +121973,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5887, + "line": 6164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6164" } ] } @@ -119680,9 +121998,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5888, + "line": 6165, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5888" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6165" } ], "type": { @@ -119699,9 +122017,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5888, + "line": 6165, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5888" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6165" } ], "type": { @@ -119719,9 +122037,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5888, + "line": 6165, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5888" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6165" } ] } @@ -119736,7 +122054,7 @@ ] }, { - "id": 319, + "id": 317, "name": "getSession", "variant": "declaration", "kind": 2048, @@ -119744,14 +122062,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2661, + "line": 2719, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2719" } ], "signatures": [ { - "id": 320, + "id": 318, "name": "getSession", "variant": "signature", "kind": 4096, @@ -119827,15 +122145,7 @@ }, { "kind": "text", - "text": " to fetch the user object directly from the Auth server for this purpose.\n- When using in a browser, this function is synchronized across 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 " - }, - { - "kind": "code", - "text": "`lock`" - }, - { - "kind": "text", - "text": " property, if necessary, to make sure there are no race conditions while the session is being refreshed." + "text": " to fetch the user object directly from the Auth server for this purpose.\n- Cross-tab refresh races are handled by the GoTrue server (the rotated token from the first tab is returned to subsequent tabs via the parent-of-active mechanism), so no client-side serialization is needed." } ] }, @@ -119867,9 +122177,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2661, + "line": 2719, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2719" } ], "type": { @@ -119885,14 +122195,14 @@ { "type": "reflection", "declaration": { - "id": 321, + "id": 319, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 322, + "id": 320, "name": "data", "variant": "declaration", "kind": 1024, @@ -119900,22 +122210,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2754, + "line": 2820, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2820" } ], "type": { "type": "reflection", "declaration": { - "id": 323, + "id": 321, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 324, + "id": 322, "name": "session", "variant": "declaration", "kind": 1024, @@ -119923,9 +122233,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2755, + "line": 2821, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2821" } ], "type": { @@ -119939,22 +122249,22 @@ "groups": [ { "title": "Properties", - "children": [324] + "children": [322] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2754, + "line": 2820, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2820" } ] } } }, { - "id": 325, + "id": 323, "name": "error", "variant": "declaration", "kind": 1024, @@ -119962,9 +122272,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2757, + "line": 2823, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2757" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2823" } ], "type": { @@ -119976,15 +122286,15 @@ "groups": [ { "title": "Properties", - "children": [322, 325] + "children": [320, 323] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2753, + "line": 2819, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2753" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2819" } ] } @@ -119992,14 +122302,14 @@ { "type": "reflection", "declaration": { - "id": 326, + "id": 324, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 327, + "id": 325, "name": "data", "variant": "declaration", "kind": 1024, @@ -120007,22 +122317,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2760, + "line": 2826, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2826" } ], "type": { "type": "reflection", "declaration": { - "id": 328, + "id": 326, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 329, + "id": 327, "name": "session", "variant": "declaration", "kind": 1024, @@ -120030,9 +122340,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2761, + "line": 2827, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2761" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2827" } ], "type": { @@ -120044,22 +122354,22 @@ "groups": [ { "title": "Properties", - "children": [329] + "children": [327] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2760, + "line": 2826, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2826" } ] } } }, { - "id": 330, + "id": 328, "name": "error", "variant": "declaration", "kind": 1024, @@ -120067,14 +122377,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2763, + "line": 2829, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2829" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -120083,15 +122393,15 @@ "groups": [ { "title": "Properties", - "children": [327, 330] + "children": [325, 328] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2759, + "line": 2825, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2825" } ] } @@ -120099,14 +122409,14 @@ { "type": "reflection", "declaration": { - "id": 331, + "id": 329, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 332, + "id": 330, "name": "data", "variant": "declaration", "kind": 1024, @@ -120114,22 +122424,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2766, + "line": 2832, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2832" } ], "type": { "type": "reflection", "declaration": { - "id": 333, + "id": 331, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 334, + "id": 332, "name": "session", "variant": "declaration", "kind": 1024, @@ -120137,9 +122447,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2767, + "line": 2833, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2767" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2833" } ], "type": { @@ -120151,22 +122461,22 @@ "groups": [ { "title": "Properties", - "children": [334] + "children": [332] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2766, + "line": 2832, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2832" } ] } } }, { - "id": 335, + "id": 333, "name": "error", "variant": "declaration", "kind": 1024, @@ -120174,9 +122484,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2769, + "line": 2835, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2835" } ], "type": { @@ -120188,15 +122498,15 @@ "groups": [ { "title": "Properties", - "children": [332, 335] + "children": [330, 333] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2765, + "line": 2831, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2831" } ] } @@ -120211,7 +122521,7 @@ ] }, { - "id": 382, + "id": 380, "name": "getUser", "variant": "declaration", "kind": 2048, @@ -120219,14 +122529,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2972, + "line": 3042, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3042" } ], "signatures": [ { - "id": 383, + "id": 381, "name": "getUser", "variant": "signature", "kind": 4096, @@ -120311,14 +122621,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2972, + "line": 3042, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3042" } ], "parameters": [ { - "id": 384, + "id": 382, "name": "jwt", "variant": "param", "kind": 32768, @@ -120360,7 +122670,7 @@ ] }, { - "id": 501, + "id": 499, "name": "getUserIdentities", "variant": "declaration", "kind": 2048, @@ -120368,14 +122678,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4241, + "line": 4337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4337" } ], "signatures": [ { - "id": 502, + "id": 500, "name": "getUserIdentities", "variant": "signature", "kind": 4096, @@ -120442,9 +122752,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4241, + "line": 4337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4337" } ], "type": { @@ -120460,14 +122770,14 @@ { "type": "reflection", "declaration": { - "id": 503, + "id": 501, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 504, + "id": 502, "name": "data", "variant": "declaration", "kind": 1024, @@ -120475,22 +122785,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4243, + "line": 4339, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4339" } ], "type": { "type": "reflection", "declaration": { - "id": 505, + "id": 503, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 506, + "id": 504, "name": "identities", "variant": "declaration", "kind": 1024, @@ -120498,9 +122808,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4244, + "line": 4340, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4244" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4340" } ], "type": { @@ -120517,22 +122827,22 @@ "groups": [ { "title": "Properties", - "children": [506] + "children": [504] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4243, + "line": 4339, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4339" } ] } } }, { - "id": 507, + "id": 505, "name": "error", "variant": "declaration", "kind": 1024, @@ -120540,9 +122850,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4246, + "line": 4342, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4342" } ], "type": { @@ -120554,15 +122864,15 @@ "groups": [ { "title": "Properties", - "children": [504, 507] + "children": [502, 505] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4242, + "line": 4338, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4338" } ] } @@ -120570,14 +122880,14 @@ { "type": "reflection", "declaration": { - "id": 508, + "id": 506, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 509, + "id": 507, "name": "data", "variant": "declaration", "kind": 1024, @@ -120585,9 +122895,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4248, + "line": 4344, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4344" } ], "type": { @@ -120596,7 +122906,7 @@ } }, { - "id": 510, + "id": 508, "name": "error", "variant": "declaration", "kind": 1024, @@ -120604,14 +122914,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4248, + "line": 4344, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4344" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -120620,15 +122930,15 @@ "groups": [ { "title": "Properties", - "children": [509, 510] + "children": [507, 508] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4248, + "line": 4344, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4344" } ] } @@ -120643,7 +122953,7 @@ ] }, { - "id": 228, + "id": 226, "name": "initialize", "variant": "declaration", "kind": 2048, @@ -120651,14 +122961,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 515, + "line": 544, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L544" } ], "signatures": [ { - "id": 229, + "id": 227, "name": "initialize", "variant": "signature", "kind": 4096, @@ -120685,9 +122995,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 515, + "line": 544, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L544" } ], "type": { @@ -120711,7 +123021,7 @@ ] }, { - "id": 215, + "id": 213, "name": "isThrowOnErrorEnabled", "variant": "declaration", "kind": 2048, @@ -120721,14 +123031,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 477, + "line": 506, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L506" } ], "signatures": [ { - "id": 216, + "id": 214, "name": "isThrowOnErrorEnabled", "variant": "signature", "kind": 4096, @@ -120744,9 +123054,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 477, + "line": 506, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L506" } ], "type": { @@ -120757,7 +123067,7 @@ ] }, { - "id": 511, + "id": 509, "name": "linkIdentity", "variant": "declaration", "kind": 2048, @@ -120835,26 +123145,26 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4266, + "line": 4362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4266" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4362" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4271, + "line": 4367, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4367" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4300, + "line": 4396, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4396" } ], "signatures": [ { - "id": 512, + "id": 510, "name": "linkIdentity", "variant": "signature", "kind": 4096, @@ -120870,14 +123180,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4266, + "line": 4362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4266" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4362" } ], "parameters": [ { - "id": 513, + "id": 511, "name": "credentials", "variant": "param", "kind": 32768, @@ -120909,7 +123219,7 @@ } }, { - "id": 514, + "id": 512, "name": "linkIdentity", "variant": "signature", "kind": 4096, @@ -120925,14 +123235,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4271, + "line": 4367, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4367" } ], "parameters": [ { - "id": 515, + "id": 513, "name": "credentials", "variant": "param", "kind": 32768, @@ -120966,7 +123276,7 @@ ] }, { - "id": 463, + "id": 461, "name": "onAuthStateChange", "variant": "declaration", "kind": 2048, @@ -120988,23 +123298,7 @@ "content": [ { "kind": "text", - "text": "- Subscribes to important events occurring on the user's session.\n- Use on the frontend/client. It is less useful on the server.\n- Events are emitted across tabs to keep your application's UI up-to-date. Some events can fire very frequently, based on the number of tabs open. Use a quick and efficient callback function, and defer or debounce as many operations as you can to be performed outside of the callback.\n- **Important:** A callback can be an " - }, - { - "kind": "code", - "text": "`async`" - }, - { - "kind": "text", - "text": " function and it runs synchronously during the processing of the changes causing the event. You can easily create a dead-lock by using " - }, - { - "kind": "code", - "text": "`await`" - }, - { - "kind": "text", - "text": " on a call to another method of the Supabase library.\n - Avoid using " + "text": "- Subscribes to important events occurring on the user's session.\n- Use on the frontend/client. It is less useful on the server.\n- Events are emitted across tabs to keep your application's UI up-to-date. Some events can fire very frequently, based on the number of tabs open. Use a quick and efficient callback function, and defer or debounce as many operations as you can to be performed outside of the callback.\n- Callbacks can be " }, { "kind": "code", @@ -121012,31 +123306,23 @@ }, { "kind": "text", - "text": " functions as callbacks.\n - Limit the number of " - }, - { - "kind": "code", - "text": "`await`" - }, - { - "kind": "text", - "text": " calls in " + "text": " and can safely call other Supabase auth methods (" }, { "kind": "code", - "text": "`async`" + "text": "`getUser`" }, { "kind": "text", - "text": " callbacks.\n - Do not use other Supabase functions in the callback function. If you must, dispatch the functions once the callback has finished executing. Use this as a quick way to achieve this:\n " + "text": ", " }, { "kind": "code", - "text": "```js\n supabase.auth.onAuthStateChange((event, session) => {\n setTimeout(async () => {\n // await on other Supabase function here\n // this runs right after the callback has finished\n }, 0)\n })\n ```" + "text": "`setSession`" }, { "kind": "text", - "text": "\n- Emitted events:\n - " + "text": ", etc.) from inside the callback.\n- Keep callbacks quick. Events are awaited in order, so a slow callback delays subsequent events to subscribers in this tab.\n- Emitted events:\n - " }, { "kind": "code", @@ -121264,26 +123550,26 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4037, + "line": 4128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4037" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4128" } ], "signatures": [ { - "id": 464, + "id": 462, "name": "onAuthStateChange", "variant": "signature", "kind": 4096, @@ -121299,14 +123585,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ], "parameters": [ { - "id": 465, + "id": 463, "name": "callback", "variant": "param", "kind": 32768, @@ -121322,7 +123608,7 @@ "type": { "type": "reflection", "declaration": { - "id": 466, + "id": 464, "name": "__type", "variant": "declaration", "kind": 65536, @@ -121330,14 +123616,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ], "signatures": [ { - "id": 467, + "id": 465, "name": "__type", "variant": "signature", "kind": 4096, @@ -121345,14 +123631,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ], "parameters": [ { - "id": 468, + "id": 466, "name": "event", "variant": "param", "kind": 32768, @@ -121365,7 +123651,7 @@ } }, { - "id": 469, + "id": 467, "name": "session", "variant": "param", "kind": 32768, @@ -121400,14 +123686,14 @@ "type": { "type": "reflection", "declaration": { - "id": 470, + "id": 468, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 471, + "id": 469, "name": "data", "variant": "declaration", "kind": 1024, @@ -121415,22 +123701,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3831, + "line": 3929, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3929" } ], "type": { "type": "reflection", "declaration": { - "id": 472, + "id": 470, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 473, + "id": 471, "name": "subscription", "variant": "declaration", "kind": 1024, @@ -121438,9 +123724,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3831, + "line": 3929, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3929" } ], "type": { @@ -121454,15 +123740,15 @@ "groups": [ { "title": "Properties", - "children": [473] + "children": [471] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3831, + "line": 3929, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3929" } ] } @@ -121472,22 +123758,22 @@ "groups": [ { "title": "Properties", - "children": [471] + "children": [469] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 90, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ] } } }, { - "id": 474, + "id": 472, "name": "onAuthStateChange", "variant": "signature", "kind": 4096, @@ -121496,15 +123782,63 @@ "summary": [ { "kind": "text", - "text": "Avoid using an async function inside " + "text": "Receive a notification every time an auth event happens. Common reentry\npatterns (" }, { "kind": "code", - "text": "`onAuthStateChange`" + "text": "`getUser`" }, { "kind": "text", - "text": " as you might end\nup with a deadlock. The callback function runs inside an exclusive lock,\nso calling other Supabase Client APIs that also try to acquire the\nexclusive lock, might cause a deadlock. This behavior is observable across\ntabs. In the next major library version, this behavior will not be supported.\n\nReceive a notification every time an auth event happens." + "text": ", " + }, + { + "kind": "code", + "text": "`setSession`" + }, + { + "kind": "text", + "text": ", reading the session from inside a\nhandler) complete normally. One hazard remains: calling " + }, + { + "kind": "code", + "text": "`refreshSession`" + }, + { + "kind": "text", + "text": "\n(or anything that routes through " + }, + { + "kind": "code", + "text": "`_callRefreshToken`" + }, + { + "kind": "text", + "text": ") from inside a\n" + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " handler. " + }, + { + "kind": "code", + "text": "`refreshingDeferred`" + }, + { + "kind": "text", + "text": " resolves only after\n" + }, + { + "kind": "code", + "text": "`_notifyAllSubscribers`" + }, + { + "kind": "text", + "text": " returns, so the inner refresh dedupes onto the\nouter's unresolved promise and the two wait on each other." } ], "blockTags": [ @@ -121513,7 +123847,15 @@ "content": [ { "kind": "text", - "text": "Due to the possibility of deadlocks with async functions as callbacks, use the version without an async function." + "text": "Async callbacks can deadlock when they trigger a nested\nrefresh from a " + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " event. Prefer the sync overload, or move\nrefresh-triggering work outside the callback." } ] } @@ -121522,14 +123864,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ], "parameters": [ { - "id": 475, + "id": 473, "name": "callback", "variant": "param", "kind": 32768, @@ -121545,7 +123887,7 @@ "type": { "type": "reflection", "declaration": { - "id": 476, + "id": 474, "name": "__type", "variant": "declaration", "kind": 65536, @@ -121553,14 +123895,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ], "signatures": [ { - "id": 477, + "id": 475, "name": "__type", "variant": "signature", "kind": 4096, @@ -121568,14 +123910,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ], "parameters": [ { - "id": 478, + "id": 476, "name": "event", "variant": "param", "kind": 32768, @@ -121588,7 +123930,7 @@ } }, { - "id": 479, + "id": 477, "name": "session", "variant": "param", "kind": 32768, @@ -121634,14 +123976,14 @@ "type": { "type": "reflection", "declaration": { - "id": 480, + "id": 478, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 481, + "id": 479, "name": "data", "variant": "declaration", "kind": 1024, @@ -121649,22 +123991,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3847, + "line": 3948, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3948" } ], "type": { "type": "reflection", "declaration": { - "id": 482, + "id": 480, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 483, + "id": 481, "name": "subscription", "variant": "declaration", "kind": 1024, @@ -121672,9 +124014,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3847, + "line": 3948, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3948" } ], "type": { @@ -121688,15 +124030,15 @@ "groups": [ { "title": "Properties", - "children": [483] + "children": [481] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3847, + "line": 3948, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3948" } ] } @@ -121706,15 +124048,15 @@ "groups": [ { "title": "Properties", - "children": [481] + "children": [479] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ] } @@ -121723,7 +124065,7 @@ ] }, { - "id": 312, + "id": 310, "name": "reauthenticate", "variant": "declaration", "kind": 2048, @@ -121731,14 +124073,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2444, + "line": 2497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2497" } ], "signatures": [ { - "id": 313, + "id": 311, "name": "reauthenticate", "variant": "signature", "kind": 4096, @@ -121817,9 +124159,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2444, + "line": 2497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2497" } ], "type": { @@ -121843,7 +124185,7 @@ ] }, { - "id": 412, + "id": 410, "name": "refreshSession", "variant": "declaration", "kind": 2048, @@ -121851,14 +124193,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ], "signatures": [ { - "id": 413, + "id": 411, "name": "refreshSession", "variant": "signature", "kind": 4096, @@ -121927,14 +124269,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ], "parameters": [ { - "id": 414, + "id": 412, "name": "currentSession", "variant": "param", "kind": 32768, @@ -121952,14 +124294,14 @@ "type": { "type": "reflection", "declaration": { - "id": 415, + "id": 413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 416, + "id": 414, "name": "refresh_token", "variant": "declaration", "kind": 1024, @@ -121967,9 +124309,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ], "type": { @@ -121981,15 +124323,15 @@ "groups": [ { "title": "Properties", - "children": [416] + "children": [414] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ] } @@ -122025,9 +124367,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6043, + "line": 6325, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L6043" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6325" } ], "signatures": [ @@ -122067,9 +124409,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6043, + "line": 6325, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L6043" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6325" } ], "parameters": [ @@ -122110,7 +124452,7 @@ ] }, { - "id": 316, + "id": 314, "name": "resend", "variant": "declaration", "kind": 2048, @@ -122118,14 +124460,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2535, + "line": 2593, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2593" } ], "signatures": [ { - "id": 317, + "id": 315, "name": "resend", "variant": "signature", "kind": 4096, @@ -122269,14 +124611,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2535, + "line": 2593, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2593" } ], "parameters": [ { - "id": 318, + "id": 316, "name": "credentials", "variant": "param", "kind": 32768, @@ -122310,7 +124652,7 @@ ] }, { - "id": 487, + "id": 485, "name": "resetPasswordForEmail", "variant": "declaration", "kind": 2048, @@ -122318,14 +124660,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4253, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4253" } ], "signatures": [ { - "id": 488, + "id": 486, "name": "resetPasswordForEmail", "variant": "signature", "kind": 4096, @@ -122446,14 +124788,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4253, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4253" } ], "parameters": [ { - "id": 489, + "id": 487, "name": "email", "variant": "param", "kind": 32768, @@ -122472,7 +124814,7 @@ } }, { - "id": 490, + "id": 488, "name": "options", "variant": "param", "kind": 32768, @@ -122480,14 +124822,14 @@ "type": { "type": "reflection", "declaration": { - "id": 491, + "id": 489, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 493, + "id": 491, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -122505,9 +124847,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4161, + "line": 4257, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4257" } ], "type": { @@ -122516,7 +124858,7 @@ } }, { - "id": 492, + "id": 490, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -122534,9 +124876,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4160, + "line": 4256, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4160" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4256" } ], "type": { @@ -122548,15 +124890,15 @@ "groups": [ { "title": "Properties", - "children": [493, 492] + "children": [491, 490] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4159, + "line": 4255, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4159" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4255" } ] } @@ -122577,14 +124919,14 @@ { "type": "reflection", "declaration": { - "id": 494, + "id": 492, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 495, + "id": 493, "name": "data", "variant": "declaration", "kind": 1024, @@ -122592,15 +124934,15 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4165, + "line": 4261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4165" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4261" } ], "type": { "type": "reflection", "declaration": { - "id": 496, + "id": 494, "name": "__type", "variant": "declaration", "kind": 65536, @@ -122609,7 +124951,7 @@ } }, { - "id": 497, + "id": 495, "name": "error", "variant": "declaration", "kind": 1024, @@ -122617,9 +124959,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4166, + "line": 4262, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4262" } ], "type": { @@ -122631,15 +124973,15 @@ "groups": [ { "title": "Properties", - "children": [495, 497] + "children": [493, 495] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4164, + "line": 4260, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4260" } ] } @@ -122647,14 +124989,14 @@ { "type": "reflection", "declaration": { - "id": 498, + "id": 496, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 499, + "id": 497, "name": "data", "variant": "declaration", "kind": 1024, @@ -122662,9 +125004,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4168, + "line": 4264, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4264" } ], "type": { @@ -122673,7 +125015,7 @@ } }, { - "id": 500, + "id": 498, "name": "error", "variant": "declaration", "kind": 1024, @@ -122681,14 +125023,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4168, + "line": 4264, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4264" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -122697,15 +125039,15 @@ "groups": [ { "title": "Properties", - "children": [499, 500] + "children": [497, 498] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4168, + "line": 4264, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4264" } ] } @@ -122720,7 +125062,7 @@ ] }, { - "id": 400, + "id": 398, "name": "setSession", "variant": "declaration", "kind": 2048, @@ -122728,14 +125070,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3339, + "line": 3420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3420" } ], "signatures": [ { - "id": 401, + "id": 399, "name": "setSession", "variant": "signature", "kind": 4096, @@ -122827,14 +125169,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3339, + "line": 3420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3420" } ], "parameters": [ { - "id": 402, + "id": 400, "name": "currentSession", "variant": "param", "kind": 32768, @@ -122850,14 +125192,14 @@ "type": { "type": "reflection", "declaration": { - "id": 403, + "id": 401, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 404, + "id": 402, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -122865,9 +125207,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3340, + "line": 3421, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3340" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3421" } ], "type": { @@ -122876,7 +125218,7 @@ } }, { - "id": 405, + "id": 403, "name": "refresh_token", "variant": "declaration", "kind": 1024, @@ -122884,9 +125226,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3341, + "line": 3422, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3422" } ], "type": { @@ -122898,15 +125240,15 @@ "groups": [ { "title": "Properties", - "children": [404, 405] + "children": [402, 403] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3339, + "line": 3420, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3420" } ] } @@ -122934,7 +125276,7 @@ ] }, { - "id": 232, + "id": 230, "name": "signInAnonymously", "variant": "declaration", "kind": 2048, @@ -122942,14 +125284,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 689, + "line": 722, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L722" } ], "signatures": [ { - "id": 233, + "id": 231, "name": "signInAnonymously", "variant": "signature", "kind": 4096, @@ -123035,14 +125377,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 689, + "line": 722, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L722" } ], "parameters": [ { - "id": 234, + "id": 232, "name": "credentials", "variant": "param", "kind": 32768, @@ -123078,7 +125420,7 @@ ] }, { - "id": 300, + "id": 298, "name": "signInWithIdToken", "variant": "declaration", "kind": 2048, @@ -123086,14 +125428,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1977, + "line": 2030, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2030" } ], "signatures": [ { - "id": 301, + "id": 299, "name": "signInWithIdToken", "variant": "signature", "kind": 4096, @@ -123152,14 +125494,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1977, + "line": 2030, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2030" } ], "parameters": [ { - "id": 302, + "id": 300, "name": "credentials", "variant": "param", "kind": 32768, @@ -123193,7 +125535,7 @@ ] }, { - "id": 241, + "id": 239, "name": "signInWithOAuth", "variant": "declaration", "kind": 2048, @@ -123201,14 +125543,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1226, + "line": 1274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1274" } ], "signatures": [ { - "id": 242, + "id": 240, "name": "signInWithOAuth", "variant": "signature", "kind": 4096, @@ -123369,14 +125711,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1226, + "line": 1274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1274" } ], "parameters": [ { - "id": 243, + "id": 241, "name": "credentials", "variant": "param", "kind": 32768, @@ -123410,7 +125752,7 @@ ] }, { - "id": 303, + "id": 301, "name": "signInWithOtp", "variant": "declaration", "kind": 2048, @@ -123418,14 +125760,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2090, + "line": 2143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2143" } ], "signatures": [ { - "id": 304, + "id": 302, "name": "signInWithOtp", "variant": "signature", "kind": 4096, @@ -123603,14 +125945,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2090, + "line": 2143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2143" } ], "parameters": [ { - "id": 305, + "id": 303, "name": "credentials", "variant": "param", "kind": 32768, @@ -123652,9 +125994,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5985, + "line": 6267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5985" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6267" } ], "signatures": [ @@ -123694,9 +126036,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5985, + "line": 6267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5985" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6267" } ], "parameters": [ @@ -123737,7 +126079,7 @@ ] }, { - "id": 238, + "id": 236, "name": "signInWithPassword", "variant": "declaration", "kind": 2048, @@ -123745,14 +126087,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1087, + "line": 1135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1135" } ], "signatures": [ { - "id": 239, + "id": 237, "name": "signInWithPassword", "variant": "signature", "kind": 4096, @@ -123815,20 +126157,103 @@ "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n phone: '+13334445555',\n password: 'some-password',\n})\n```" } ] + }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nLog the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so fields like " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": ", and " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": " aren't hidden. The " + }, + { + "kind": "code", + "text": "`error.code`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`'invalid_credentials'`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`'email_not_confirmed'`" + }, + { + "kind": "text", + "text": ") is often more useful for branching than " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": ", and the full object surfaces both." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n email: 'example@email.com',\n password: 'example-password',\n})\nif (error) {\n console.error(error)\n return\n}\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1087, + "line": 1135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1135" } ], "parameters": [ { - "id": 240, + "id": 238, "name": "credentials", "variant": "param", "kind": 32768, @@ -123862,7 +126287,7 @@ ] }, { - "id": 309, + "id": 307, "name": "signInWithSSO", "variant": "declaration", "kind": 2048, @@ -123870,14 +126295,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2381, + "line": 2434, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2434" } ], "signatures": [ { - "id": 310, + "id": 308, "name": "signInWithSSO", "variant": "signature", "kind": 4096, @@ -123949,14 +126374,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2381, + "line": 2434, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2434" } ], "parameters": [ { - "id": 311, + "id": 309, "name": "params", "variant": "param", "kind": 32768, @@ -123990,7 +126415,7 @@ ] }, { - "id": 247, + "id": 245, "name": "signInWithWeb3", "variant": "declaration", "kind": 2048, @@ -123998,14 +126423,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1501, + "line": 1554, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1554" } ], "signatures": [ { - "id": 248, + "id": 246, "name": "signInWithWeb3", "variant": "signature", "kind": 4096, @@ -124090,14 +126515,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1501, + "line": 1554, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1554" } ], "parameters": [ { - "id": 249, + "id": 247, "name": "credentials", "variant": "param", "kind": 32768, @@ -124123,14 +126548,14 @@ { "type": "reflection", "declaration": { - "id": 250, + "id": 248, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 251, + "id": 249, "name": "data", "variant": "declaration", "kind": 1024, @@ -124138,22 +126563,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ], "type": { "type": "reflection", "declaration": { - "id": 252, + "id": 250, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 253, + "id": 251, "name": "session", "variant": "declaration", "kind": 1024, @@ -124161,9 +126586,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ], "type": { @@ -124174,7 +126599,7 @@ } }, { - "id": 254, + "id": 252, "name": "user", "variant": "declaration", "kind": 1024, @@ -124182,9 +126607,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ], "type": { @@ -124198,22 +126623,22 @@ "groups": [ { "title": "Properties", - "children": [253, 254] + "children": [251, 252] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ] } } }, { - "id": 255, + "id": 253, "name": "error", "variant": "declaration", "kind": 1024, @@ -124221,9 +126646,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1504, + "line": 1557, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1504" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1557" } ], "type": { @@ -124235,15 +126660,15 @@ "groups": [ { "title": "Properties", - "children": [251, 255] + "children": [249, 253] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1502, + "line": 1555, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1555" } ] } @@ -124251,14 +126676,14 @@ { "type": "reflection", "declaration": { - "id": 256, + "id": 254, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 257, + "id": 255, "name": "data", "variant": "declaration", "kind": 1024, @@ -124266,22 +126691,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { "type": "reflection", "declaration": { - "id": 258, + "id": 256, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 259, + "id": 257, "name": "session", "variant": "declaration", "kind": 1024, @@ -124289,9 +126714,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { @@ -124300,7 +126725,7 @@ } }, { - "id": 260, + "id": 258, "name": "user", "variant": "declaration", "kind": 1024, @@ -124308,9 +126733,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { @@ -124322,22 +126747,22 @@ "groups": [ { "title": "Properties", - "children": [259, 260] + "children": [257, 258] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ] } } }, { - "id": 261, + "id": 259, "name": "error", "variant": "declaration", "kind": 1024, @@ -124345,14 +126770,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -124361,15 +126786,15 @@ "groups": [ { "title": "Properties", - "children": [257, 261] + "children": [255, 259] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ] } @@ -124384,7 +126809,7 @@ ] }, { - "id": 453, + "id": 451, "name": "signOut", "variant": "declaration", "kind": 2048, @@ -124392,14 +126817,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ], "signatures": [ { - "id": 454, + "id": 452, "name": "signOut", "variant": "signature", "kind": 4096, @@ -124553,14 +126978,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ], "parameters": [ { - "id": 455, + "id": 453, "name": "options", "variant": "param", "kind": 32768, @@ -124584,14 +127009,14 @@ { "type": "reflection", "declaration": { - "id": 456, + "id": 454, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 457, + "id": 455, "name": "error", "variant": "declaration", "kind": 1024, @@ -124599,9 +127024,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ], "type": { @@ -124613,7 +127038,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -124624,15 +127049,15 @@ "groups": [ { "title": "Properties", - "children": [457] + "children": [455] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ] } @@ -124645,7 +127070,7 @@ ] }, { - "id": 235, + "id": 233, "name": "signUp", "variant": "declaration", "kind": 2048, @@ -124653,14 +127078,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 899, + "line": 932, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L932" } ], "signatures": [ { - "id": 236, + "id": 234, "name": "signUp", "variant": "signature", "kind": 4096, @@ -124859,14 +127284,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 899, + "line": 932, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L932" } ], "parameters": [ { - "id": 237, + "id": 235, "name": "credentials", "variant": "param", "kind": 32768, @@ -124900,7 +127325,7 @@ ] }, { - "id": 577, + "id": 575, "name": "startAutoRefresh", "variant": "declaration", "kind": 2048, @@ -124908,14 +127333,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4941, + "line": 5119, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5119" } ], "signatures": [ { - "id": 578, + "id": 576, "name": "startAutoRefresh", "variant": "signature", "kind": 4096, @@ -124984,9 +127409,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4941, + "line": 5119, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5119" } ], "type": { @@ -125008,7 +127433,7 @@ ] }, { - "id": 579, + "id": 577, "name": "stopAutoRefresh", "variant": "declaration", "kind": 2048, @@ -125016,14 +127441,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4976, + "line": 5154, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5154" } ], "signatures": [ { - "id": 580, + "id": 578, "name": "stopAutoRefresh", "variant": "signature", "kind": 4096, @@ -125078,9 +127503,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4976, + "line": 5154, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5154" } ], "type": { @@ -125102,7 +127527,7 @@ ] }, { - "id": 522, + "id": 520, "name": "unlinkIdentity", "variant": "declaration", "kind": 2048, @@ -125110,14 +127535,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4420, + "line": 4516, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4516" } ], "signatures": [ { - "id": 523, + "id": 521, "name": "unlinkIdentity", "variant": "signature", "kind": 4096, @@ -125171,14 +127596,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4420, + "line": 4516, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4516" } ], "parameters": [ { - "id": 524, + "id": 522, "name": "identity", "variant": "param", "kind": 32768, @@ -125204,14 +127629,14 @@ { "type": "reflection", "declaration": { - "id": 525, + "id": 523, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 526, + "id": 524, "name": "data", "variant": "declaration", "kind": 1024, @@ -125219,15 +127644,15 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4422, + "line": 4518, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4422" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4518" } ], "type": { "type": "reflection", "declaration": { - "id": 527, + "id": 525, "name": "__type", "variant": "declaration", "kind": 65536, @@ -125236,7 +127661,7 @@ } }, { - "id": 528, + "id": 526, "name": "error", "variant": "declaration", "kind": 1024, @@ -125244,9 +127669,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4423, + "line": 4519, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4519" } ], "type": { @@ -125258,15 +127683,15 @@ "groups": [ { "title": "Properties", - "children": [526, 528] + "children": [524, 526] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4421, + "line": 4517, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4421" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4517" } ] } @@ -125274,14 +127699,14 @@ { "type": "reflection", "declaration": { - "id": 529, + "id": 527, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 530, + "id": 528, "name": "data", "variant": "declaration", "kind": 1024, @@ -125289,9 +127714,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4425, + "line": 4521, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4521" } ], "type": { @@ -125300,7 +127725,7 @@ } }, { - "id": 531, + "id": 529, "name": "error", "variant": "declaration", "kind": 1024, @@ -125308,14 +127733,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4425, + "line": 4521, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4521" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -125324,15 +127749,15 @@ "groups": [ { "title": "Properties", - "children": [530, 531] + "children": [528, 529] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4425, + "line": 4521, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4521" } ] } @@ -125347,7 +127772,7 @@ ] }, { - "id": 388, + "id": 386, "name": "updateUser", "variant": "declaration", "kind": 2048, @@ -125355,14 +127780,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3148, + "line": 3224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3224" } ], "signatures": [ { - "id": 389, + "id": 387, "name": "updateUser", "variant": "signature", "kind": 4096, @@ -125537,14 +127962,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3148, + "line": 3224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3224" } ], "parameters": [ { - "id": 390, + "id": 388, "name": "attributes", "variant": "param", "kind": 32768, @@ -125557,7 +127982,7 @@ } }, { - "id": 391, + "id": 389, "name": "options", "variant": "param", "kind": 32768, @@ -125565,14 +127990,14 @@ "type": { "type": "reflection", "declaration": { - "id": 392, + "id": 390, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 393, + "id": 391, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -125582,9 +128007,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3151, + "line": 3227, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3227" } ], "type": { @@ -125596,15 +128021,15 @@ "groups": [ { "title": "Properties", - "children": [393] + "children": [391] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3150, + "line": 3226, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3226" } ] } @@ -125633,7 +128058,7 @@ ] }, { - "id": 306, + "id": 304, "name": "verifyOtp", "variant": "declaration", "kind": 2048, @@ -125641,14 +128066,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2281, + "line": 2334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2334" } ], "signatures": [ { - "id": 307, + "id": 305, "name": "verifyOtp", "variant": "signature", "kind": 4096, @@ -125815,14 +128240,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2281, + "line": 2334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2334" } ], "parameters": [ { - "id": 308, + "id": 306, "name": "params", "variant": "param", "kind": 32768, @@ -125859,17 +128284,17 @@ "groups": [ { "title": "Constructors", - "children": [141] + "children": [138] }, { "title": "Properties", - "children": [145, 146, 147, 148] + "children": [142, 143, 144, 145] }, { "title": "Methods", "children": [ - 244, 662, 319, 382, 501, 228, 215, 511, 463, 312, 412, 688, 316, 487, 400, 232, 300, - 241, 303, 685, 238, 309, 247, 453, 235, 577, 579, 522, 388, 306 + 579, 242, 662, 317, 380, 499, 226, 213, 509, 461, 310, 410, 688, 314, 485, 398, 230, + 298, 239, 301, 685, 236, 307, 245, 451, 233, 575, 577, 520, 386, 304 ] } ], @@ -125877,21 +128302,21 @@ { "title": "Auth", "children": [ - 244, 662, 319, 382, 501, 228, 511, 463, 312, 412, 688, 316, 487, 400, 232, 300, 241, - 303, 685, 238, 309, 247, 453, 235, 577, 579, 522, 388, 306 + 579, 242, 662, 317, 380, 499, 226, 509, 461, 310, 410, 688, 314, 485, 398, 230, 298, + 239, 301, 685, 236, 307, 245, 451, 233, 575, 577, 520, 386, 304 ] }, { "title": "Other", - "children": [141, 145, 146, 147, 148, 215] + "children": [138, 142, 143, 144, 145, 213] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 217, + "line": 225, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L225" } ] }, @@ -125902,19 +128327,38 @@ "kind": 128, "flags": {}, "comment": { - "summary": [ - { - "kind": "text", - "text": "Error thrown when the browser Navigator Lock API fails to acquire a lock." - } - ], + "summary": [], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "The auth client doesn't call " + }, + { + "kind": "code", + "text": "`navigator.locks`" + }, + { + "kind": "text", + "text": ", so this error\nnever originates from " + }, + { + "kind": "code", + "text": "`supabase.auth.*`" + }, + { + "kind": "text", + "text": " calls. Direct callers of\n" + }, { "kind": "code", - "text": "```ts\nimport { NavigatorLockAcquireTimeoutError } from '@supabase/auth-js'\n\nthrow new NavigatorLockAcquireTimeoutError('Lock timed out')\n```" + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " still receive it on acquire timeout." } ] } @@ -125930,9 +128374,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 37, + "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L39" } ], "signatures": [ @@ -125945,9 +128389,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 37, + "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L39" } ], "parameters": [ @@ -125995,9 +128439,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 35, + "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L37" } ], "type": { @@ -126025,9 +128469,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 52, + "line": 49, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L49" } ], "extendedTypes": [ @@ -126084,9 +128528,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 555, + "line": 544, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L544" } ], "type": { @@ -126113,9 +128557,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 581, + "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L570" } ], "type": { @@ -126143,9 +128587,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 501, + "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L490" } ], "type": { @@ -126178,9 +128622,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 506, + "line": 495, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L495" } ], "type": { @@ -126212,9 +128656,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 562, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L551" } ], "type": { @@ -126257,9 +128701,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 606, + "line": 595, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L595" } ], "type": { @@ -126287,9 +128731,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 523, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L512" } ], "type": { @@ -126322,9 +128766,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 516, + "line": 505, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L505" } ], "type": { @@ -126364,9 +128808,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 599, + "line": 588, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L599" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L588" } ], "type": { @@ -126394,9 +128838,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 511, + "line": 500, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L500" } ], "type": { @@ -126428,9 +128872,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 569, + "line": 558, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L558" } ], "type": { @@ -126489,9 +128933,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 590, + "line": 579, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L579" } ], "type": { @@ -126534,9 +128978,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 545, + "line": 534, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L534" } ], "type": { @@ -126554,9 +128998,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 534, + "line": 523, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L523" } ], "extendedTypes": [ @@ -126632,9 +129076,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 380, + "line": 369, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L369" } ], "type": { @@ -126661,9 +129105,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 386, + "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L375" } ], "type": { @@ -126681,9 +129125,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 378, + "line": 367, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L367" } ] }, @@ -126711,9 +129155,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2644, + "line": 2633, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2644" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2633" } ], "signatures": [ @@ -126763,9 +129207,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2644, + "line": 2633, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2644" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2633" } ], "parameters": [ @@ -126832,9 +129276,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2646, + "line": 2635, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2646" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2635" } ], "type": { @@ -126852,9 +129296,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2646, + "line": 2635, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2646" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2635" } ] } @@ -126890,9 +129334,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2664, + "line": 2653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2653" } ], "signatures": [ @@ -126942,9 +129386,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2664, + "line": 2653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2653" } ], "parameters": [ @@ -127011,9 +129455,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2666, + "line": 2655, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2655" } ], "type": { @@ -127031,9 +129475,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2666, + "line": 2655, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2655" } ] } @@ -127069,9 +129513,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2627, + "line": 2616, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2616" } ], "signatures": [ @@ -127141,9 +129585,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2627, + "line": 2616, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2616" } ], "parameters": [ @@ -127196,9 +129640,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2678, + "line": 2667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2667" } ], "signatures": [ @@ -127248,9 +129692,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2678, + "line": 2667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2667" } ], "type": { @@ -127282,9 +129726,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ], "signatures": [ @@ -127334,9 +129778,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ], "parameters": [ @@ -127380,9 +129824,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ], "type": { @@ -127400,9 +129844,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ] } @@ -127445,9 +129889,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2602, + "line": 2591, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2602" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2591" } ] }, @@ -127483,9 +129927,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2894, + "line": 2883, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2894" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2883" } ], "signatures": [ @@ -127526,9 +129970,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2894, + "line": 2883, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2894" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2883" } ], "parameters": [ @@ -127575,9 +130019,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2878, + "line": 2867, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2867" } ], "signatures": [ @@ -127618,9 +130062,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2878, + "line": 2867, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2867" } ], "type": { @@ -127652,9 +130096,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2856, + "line": 2845, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2856" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2845" } ], "signatures": [ @@ -127700,283 +130144,283 @@ } ] }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/types.ts", + "line": 2845, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2845" + } + ], + "parameters": [ + { + "id": 1683, + "name": "params", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 1642, + "name": "StartPasskeyAuthenticationParams", + "package": "@supabase/auth-js" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1660, + "name": "AuthPasskeyAuthenticationOptionsResponse", + "package": "@supabase/auth-js" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 1676, + "name": "startRegistration", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/types.ts", + "line": 2822, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2822" + } + ], + "signatures": [ + { + "id": 1677, + "name": "startRegistration", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Starts the passkey registration ceremony. Fetches a registration challenge\nand credential creation options from the server. Used as the first step of\na two-step registration flow when the caller wants to handle\n" + }, + { + "kind": "code", + "text": "`navigator.credentials.create()`" + }, + { + "kind": "text", + "text": " themselves." + } + ], + "blockTags": [ + { + "tag": "@category", + "content": [ + { + "kind": "text", + "text": "Auth" + } + ] + }, + { + "tag": "@subcategory", + "content": [ + { + "kind": "text", + "text": "Auth Passkey" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/types.ts", + "line": 2822, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2822" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1658, + "name": "AuthPasskeyRegistrationOptionsResponse", + "package": "@supabase/auth-js" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 1689, + "name": "update", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/types.ts", + "line": 2875, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2875" + } + ], + "signatures": [ + { + "id": 1690, + "name": "update", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Updates a passkey's friendly name." + } + ], + "blockTags": [ + { + "tag": "@category", + "content": [ + { + "kind": "text", + "text": "Auth" + } + ] + }, + { + "tag": "@subcategory", + "content": [ + { + "kind": "text", + "text": "Auth Passkey" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/types.ts", + "line": 2875, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2875" + } + ], + "parameters": [ + { + "id": 1691, + "name": "params", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 1651, + "name": "PasskeyUpdateParams", + "package": "@supabase/auth-js" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1666, + "name": "AuthPasskeyUpdateResponse", + "package": "@supabase/auth-js" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 1684, + "name": "verifyAuthentication", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/types.ts", + "line": 2856, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2856" + } + ], + "signatures": [ + { + "id": 1685, + "name": "verifyAuthentication", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Verifies a passkey authentication credential against a previously issued\nchallenge. Used as the second step of a two-step sign-in flow." + } + ], + "blockTags": [ + { + "tag": "@category", + "content": [ + { + "kind": "text", + "text": "Auth" + } + ] + }, + { + "tag": "@subcategory", + "content": [ + { + "kind": "text", + "text": "Auth Passkey" + } + ] + } + ] + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 2856, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2856" - } - ], - "parameters": [ - { - "id": 1683, - "name": "params", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 1642, - "name": "StartPasskeyAuthenticationParams", - "package": "@supabase/auth-js" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1660, - "name": "AuthPasskeyAuthenticationOptionsResponse", - "package": "@supabase/auth-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1676, - "name": "startRegistration", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2833, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2833" - } - ], - "signatures": [ - { - "id": 1677, - "name": "startRegistration", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Starts the passkey registration ceremony. Fetches a registration challenge\nand credential creation options from the server. Used as the first step of\na two-step registration flow when the caller wants to handle\n" - }, - { - "kind": "code", - "text": "`navigator.credentials.create()`" - }, - { - "kind": "text", - "text": " themselves." - } - ], - "blockTags": [ - { - "tag": "@category", - "content": [ - { - "kind": "text", - "text": "Auth" - } - ] - }, - { - "tag": "@subcategory", - "content": [ - { - "kind": "text", - "text": "Auth Passkey" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2833, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2833" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1658, - "name": "AuthPasskeyRegistrationOptionsResponse", - "package": "@supabase/auth-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1689, - "name": "update", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2886, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2886" - } - ], - "signatures": [ - { - "id": 1690, - "name": "update", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Updates a passkey's friendly name." - } - ], - "blockTags": [ - { - "tag": "@category", - "content": [ - { - "kind": "text", - "text": "Auth" - } - ] - }, - { - "tag": "@subcategory", - "content": [ - { - "kind": "text", - "text": "Auth Passkey" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2886, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2886" - } - ], - "parameters": [ - { - "id": 1691, - "name": "params", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reference", - "target": 1651, - "name": "PasskeyUpdateParams", - "package": "@supabase/auth-js" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1666, - "name": "AuthPasskeyUpdateResponse", - "package": "@supabase/auth-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1684, - "name": "verifyAuthentication", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2867, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2867" - } - ], - "signatures": [ - { - "id": 1685, - "name": "verifyAuthentication", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Verifies a passkey authentication credential against a previously issued\nchallenge. Used as the second step of a two-step sign-in flow." - } - ], - "blockTags": [ - { - "tag": "@category", - "content": [ - { - "kind": "text", - "text": "Auth" - } - ] - }, - { - "tag": "@subcategory", - "content": [ - { - "kind": "text", - "text": "Auth Passkey" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2867, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2867" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2856" } ], "parameters": [ @@ -128023,9 +130467,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2842, + "line": 2831, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2831" } ], "signatures": [ @@ -128066,9 +130510,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2842, + "line": 2831, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2831" } ], "parameters": [ @@ -128122,9 +130566,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2822, + "line": 2811, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2822" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2811" } ] }, @@ -128170,9 +130614,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 965, + "line": 954, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L965" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L954" } ], "type": { @@ -128199,9 +130643,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 967, + "line": 956, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L956" } ], "type": { @@ -128219,9 +130663,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 959, + "line": 948, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L948" } ] }, @@ -128249,9 +130693,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2436, + "line": 2425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2425" } ], "signatures": [ @@ -128316,9 +130760,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2436, + "line": 2425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2425" } ], "parameters": [ @@ -128365,9 +130809,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "signatures": [ @@ -128416,9 +130860,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "parameters": [ @@ -128459,9 +130903,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "type": { @@ -128478,9 +130922,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "type": { @@ -128492,7 +130936,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -128509,9 +130953,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ] } @@ -128532,9 +130976,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2446, + "line": 2435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2435" } ], "signatures": [ @@ -128583,9 +131027,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2446, + "line": 2435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2435" } ], "parameters": [ @@ -128630,9 +131074,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2420, + "line": 2409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2409" } ], "signatures": [ @@ -128681,9 +131125,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2420, + "line": 2409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2409" } ], "parameters": [ @@ -128732,9 +131176,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2461, + "line": 2450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2450" } ], "signatures": [ @@ -128807,9 +131251,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2461, + "line": 2450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2450" } ], "parameters": [ @@ -128874,9 +131318,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2411, + "line": 2400, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2400" } ] }, @@ -128910,9 +131354,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1806, + "line": 1795, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1795" } ], "signatures": [ @@ -128991,9 +131435,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1806, + "line": 1795, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1795" } ], "parameters": [ @@ -129040,9 +131484,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1775, + "line": 1764, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1764" } ], "signatures": [ @@ -129106,9 +131550,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1775, + "line": 1764, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1764" } ], "parameters": [ @@ -129162,9 +131606,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1743, + "line": 1732, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1743" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1732" } ] }, @@ -129192,9 +131636,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2166, + "line": 2155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2155" } ], "signatures": [ @@ -129243,9 +131687,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2166, + "line": 2155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2155" } ], "parameters": [ @@ -129292,9 +131736,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "signatures": [ @@ -129343,9 +131787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "parameters": [ @@ -129386,9 +131830,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "type": { @@ -129405,9 +131849,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "type": { @@ -129419,7 +131863,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -129436,9 +131880,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ] } @@ -129459,9 +131903,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2177, + "line": 2166, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2166" } ], "signatures": [ @@ -129510,9 +131954,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2177, + "line": 2166, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2166" } ], "parameters": [ @@ -129557,9 +132001,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2155, + "line": 2144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2144" } ], "signatures": [ @@ -129608,9 +132052,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2155, + "line": 2144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2144" } ], "parameters": [ @@ -129659,9 +132103,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2210, + "line": 2199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2199" } ], "signatures": [ @@ -129710,9 +132154,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2210, + "line": 2199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2199" } ], "parameters": [ @@ -129757,9 +132201,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2188, + "line": 2177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2177" } ], "signatures": [ @@ -129808,9 +132252,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2188, + "line": 2177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2177" } ], "parameters": [ @@ -129875,9 +132319,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2145, + "line": 2134, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2145" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2134" } ] }, @@ -129897,9 +132341,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2916, + "line": 2905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2916" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2905" } ], "signatures": [ @@ -129948,9 +132392,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2916, + "line": 2905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2916" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2905" } ], "parameters": [ @@ -129997,9 +132441,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2906, + "line": 2895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2906" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2895" } ], "signatures": [ @@ -130048,9 +132492,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2906, + "line": 2895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2906" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2895" } ], "parameters": [ @@ -130104,9 +132548,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2897, + "line": 2886, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2897" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2886" } ] }, @@ -130134,9 +132578,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1701, + "line": 1690, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1701" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1690" } ], "type": { @@ -130158,27 +132602,27 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1434, + "line": 1423, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1434" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1423" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1435, + "line": 1424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1424" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1436, + "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1425" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1437, + "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1437" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1426" } ], "signatures": [ @@ -130313,9 +132757,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1434, + "line": 1423, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1434" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1423" } ], "parameters": [ @@ -130364,9 +132808,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -130383,14 +132827,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -130405,9 +132849,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -130430,9 +132874,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -130454,9 +132898,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -130474,9 +132918,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -130497,9 +132941,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1435, + "line": 1424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1424" } ], "parameters": [ @@ -130545,9 +132989,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -130564,14 +133008,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -130586,9 +133030,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -130611,9 +133055,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -130635,9 +133079,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -130655,9 +133099,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -130678,9 +133122,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1436, + "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1425" } ], "parameters": [ @@ -130726,9 +133170,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -130745,14 +133189,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -130767,9 +133211,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -130792,9 +133236,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -130836,9 +133280,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -130856,9 +133300,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -130879,9 +133323,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1437, + "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1437" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1426" } ], "parameters": [ @@ -130928,9 +133372,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1629, + "line": 1618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1618" } ], "signatures": [ @@ -131027,9 +133471,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1629, + "line": 1618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1618" } ], "parameters": [ @@ -131079,27 +133523,27 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1360, + "line": 1349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1360" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1349" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1361, + "line": 1350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1350" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1362, + "line": 1351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1362" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1351" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1363, + "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1352" } ], "signatures": [ @@ -131299,9 +133743,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1360, + "line": 1349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1360" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1349" } ], "parameters": [ @@ -131346,9 +133790,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1361, + "line": 1350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1350" } ], "parameters": [ @@ -131393,9 +133837,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1362, + "line": 1351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1362" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1351" } ], "parameters": [ @@ -131443,9 +133887,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1363, + "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1352" } ], "parameters": [ @@ -131492,9 +133936,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1696, + "line": 1685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1685" } ], "signatures": [ @@ -131649,9 +134093,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1696, + "line": 1685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1685" } ], "parameters": [ @@ -131706,9 +134150,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1642, + "line": 1631, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1642" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1631" } ], "signatures": [ @@ -131765,7 +134209,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient#getUser", - "target": 382 + "target": 380 }, { "kind": "text", @@ -131796,9 +134240,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1642, + "line": 1631, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1642" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1631" } ], "type": { @@ -131853,9 +134297,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1547, + "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1536" } ], "signatures": [ @@ -131935,9 +134379,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1547, + "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1536" } ], "parameters": [ @@ -131984,27 +134428,27 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1518, + "line": 1507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1507" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1519, + "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1508" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1520, + "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1520" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1509" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1521, + "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1510" } ], "signatures": [ @@ -132077,9 +134521,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1518, + "line": 1507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1507" } ], "parameters": [ @@ -132124,9 +134568,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1519, + "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1508" } ], "parameters": [ @@ -132171,9 +134615,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1520, + "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1520" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1509" } ], "parameters": [ @@ -132218,9 +134662,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1521, + "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1510" } ], "parameters": [ @@ -132282,9 +134726,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1278, + "line": 1267, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1267" } ] }, @@ -132306,9 +134750,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2004, + "line": 1993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2004" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1993" } ], "type": { @@ -132325,9 +134769,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2003, + "line": 1992, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1992" } ], "type": { @@ -132349,9 +134793,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2005, + "line": 1994, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2005" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1994" } ], "type": { @@ -132368,9 +134812,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2002, + "line": 1991, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2002" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1991" } ], "type": { @@ -132420,9 +134864,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2001, + "line": 1990, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2001" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1990" } ], "indexSignatures": [ @@ -132435,9 +134879,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2006, + "line": 1995, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2006" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1995" } ], "parameters": [ @@ -132497,9 +134941,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1963, + "line": 1952, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1963" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1952" } ], "type": { @@ -132533,9 +134977,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1992, + "line": 1981, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1992" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1981" } ], "type": { @@ -132571,9 +135015,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1984, + "line": 1973, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1984" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1973" } ], "type": { @@ -132594,9 +135038,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1959, + "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1959" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -132632,9 +135076,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1977, + "line": 1966, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1966" } ], "type": { @@ -132653,9 +135097,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1960, + "line": 1949, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1960" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1949" } ], "type": { @@ -132679,9 +135123,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1961, + "line": 1950, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1961" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1950" } ], "type": { @@ -132705,9 +135149,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1979, + "line": 1968, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1968" } ], "type": { @@ -132726,9 +135170,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1957, + "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1957" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -132752,9 +135196,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1982, + "line": 1971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1982" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1971" } ], "type": { @@ -132773,9 +135217,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1983, + "line": 1972, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1983" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1972" } ], "type": { @@ -132794,9 +135238,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1978, + "line": 1967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1978" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1967" } ], "type": { @@ -132815,9 +135259,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1995, + "line": 1984, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1995" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1984" } ], "type": { @@ -132836,9 +135280,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1962, + "line": 1951, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1962" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1951" } ], "type": { @@ -132862,9 +135306,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1964, + "line": 1953, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1964" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1953" } ], "type": { @@ -132888,9 +135332,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1958, + "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1958" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -132914,9 +135358,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1985, + "line": 1974, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1985" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1974" } ], "type": { @@ -132939,9 +135383,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1975, + "line": 1964, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1975" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1964" } ], "indexSignatures": [ @@ -132954,9 +135398,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1998, + "line": 1987, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1998" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1987" } ], "parameters": [ @@ -133011,9 +135455,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 328, + "line": 317, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L317" } ], "type": { @@ -133040,9 +135484,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 340, + "line": 329, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L340" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L329" } ], "type": { @@ -133067,9 +135511,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 336, + "line": 325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L325" } ], "type": { @@ -133096,9 +135540,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 324, + "line": 313, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L313" } ], "type": { @@ -133134,9 +135578,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 319, + "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L308" } ], "type": { @@ -133170,9 +135614,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 332, + "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L321" } ], "type": { @@ -133189,9 +135633,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 341, + "line": 330, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L330" } ], "type": { @@ -133216,9 +135660,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 346, + "line": 335, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L335" } ], "type": { @@ -133238,9 +135682,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 315, + "line": 304, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L304" } ] }, @@ -133268,9 +135712,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 619, + "line": 608, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L608" } ], "type": { @@ -133284,9 +135728,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 619, + "line": 608, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L608" } ], "signatures": [ @@ -133299,9 +135743,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 619, + "line": 608, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L608" } ], "parameters": [ @@ -133367,9 +135811,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 615, + "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L604" } ], "type": { @@ -133403,9 +135847,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 623, + "line": 612, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L612" } ], "type": { @@ -133419,9 +135863,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 623, + "line": 612, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L612" } ], "signatures": [ @@ -133434,9 +135878,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 623, + "line": 612, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L612" } ], "type": { @@ -133458,9 +135902,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 609, + "line": 598, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L598" } ] }, @@ -133482,9 +135926,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 475, + "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L464" } ], "type": { @@ -133501,9 +135945,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 466, + "line": 455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L455" } ], "type": { @@ -133522,9 +135966,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 468, + "line": 457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L457" } ], "type": { @@ -133543,9 +135987,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 490, + "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L479" } ], "type": { @@ -133564,9 +136008,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 469, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L458" } ], "type": { @@ -133585,9 +136029,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 479, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L468" } ], "type": { @@ -133604,9 +136048,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 478, + "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L467" } ], "type": { @@ -133625,9 +136069,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 489, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L478" } ], "type": { @@ -133646,9 +136090,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 476, + "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L465" } ], "type": { @@ -133667,9 +136111,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 471, + "line": 460, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L460" } ], "type": { @@ -133688,9 +136132,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 480, + "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L469" } ], "type": { @@ -133709,9 +136153,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 488, + "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L477" } ], "type": { @@ -133790,9 +136234,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 465, + "line": 454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L454" } ], "type": { @@ -133811,9 +136255,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 485, + "line": 474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L474" } ], "type": { @@ -133837,9 +136281,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 474, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L463" } ], "type": { @@ -133858,9 +136302,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 486, + "line": 475, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L475" } ], "type": { @@ -133879,9 +136323,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 487, + "line": 476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L487" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L476" } ], "type": { @@ -133900,9 +136344,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 482, + "line": 471, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L471" } ], "type": { @@ -133921,9 +136365,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 472, + "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L461" } ], "type": { @@ -133942,9 +136386,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 473, + "line": 462, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L462" } ], "type": { @@ -133963,9 +136407,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 477, + "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L466" } ], "type": { @@ -133984,9 +136428,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 481, + "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L470" } ], "type": { @@ -134005,9 +136449,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 470, + "line": 459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L459" } ], "type": { @@ -134026,9 +136470,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 483, + "line": 472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L472" } ], "type": { @@ -134047,9 +136491,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 484, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L484" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L473" } ], "type": { @@ -134066,9 +136510,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 467, + "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L456" } ], "type": { @@ -134091,9 +136535,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 464, + "line": 453, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L453" } ] }, @@ -134123,9 +136567,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 452, + "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L441" } ], "type": { @@ -134152,9 +136596,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 456, + "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L445" } ], "type": { @@ -134175,9 +136619,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 448, + "line": 437, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L437" } ], "indexSignatures": [ @@ -134190,9 +136634,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 457, + "line": 446, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L446" } ], "parameters": [ @@ -134241,9 +136685,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 501, + "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L490" } ], "type": { @@ -134286,9 +136730,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 531, + "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L520" } ], "type": { @@ -134315,9 +136759,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 506, + "line": 495, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L495" } ], "type": { @@ -134344,9 +136788,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 523, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L512" } ], "type": { @@ -134373,9 +136817,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 516, + "line": 505, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L505" } ], "type": { @@ -134402,9 +136846,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 511, + "line": 500, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L500" } ], "type": { @@ -134422,9 +136866,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 493, + "line": 482, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L482" } ] }, @@ -134446,9 +136890,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 397, + "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L386" } ], "type": { @@ -134465,9 +136909,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 390, + "line": 379, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L379" } ], "type": { @@ -134486,9 +136930,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 392, + "line": 381, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L381" } ], "type": { @@ -134502,9 +136946,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 392, + "line": 381, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L381" } ], "indexSignatures": [ @@ -134517,9 +136961,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 393, + "line": 382, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L382" } ], "parameters": [ @@ -134553,9 +136997,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 395, + "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L395" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L384" } ], "type": { @@ -134574,9 +137018,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 398, + "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L387" } ], "type": { @@ -134593,9 +137037,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 396, + "line": 385, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L385" } ], "type": { @@ -134614,9 +137058,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 399, + "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L388" } ], "type": { @@ -134633,9 +137077,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 391, + "line": 380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L380" } ], "type": { @@ -134653,9 +137097,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 389, + "line": 378, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L378" } ] }, @@ -134668,9 +137112,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 460, + "line": 449, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L449" } ], "indexSignatures": [ @@ -134683,9 +137127,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 461, + "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L450" } ], "parameters": [ @@ -134732,9 +137176,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 836, + "line": 825, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L836" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L825" } ], "type": { @@ -134753,9 +137197,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 841, + "line": 830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L830" } ], "type": { @@ -134792,9 +137236,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 849, + "line": 838, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L838" } ], "type": { @@ -134821,9 +137265,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 843, + "line": 832, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L832" } ], "type": { @@ -134841,9 +137285,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 841, + "line": 830, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L830" } ] } @@ -134866,9 +137310,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 838, + "line": 827, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L827" } ], "type": { @@ -134893,9 +137337,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 840, + "line": 829, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L840" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L829" } ], "type": { @@ -134915,9 +137359,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 834, + "line": 823, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L834" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L823" } ] }, @@ -134939,9 +137383,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 822, + "line": 811, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L811" } ], "type": { @@ -134978,9 +137422,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 831, + "line": 820, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L820" } ], "type": { @@ -135007,9 +137451,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 824, + "line": 813, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L813" } ], "type": { @@ -135027,9 +137471,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 822, + "line": 811, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L811" } ] } @@ -135052,9 +137496,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 817, + "line": 806, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L806" } ], "type": { @@ -135079,9 +137523,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 819, + "line": 808, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L819" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L808" } ], "type": { @@ -135106,9 +137550,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 821, + "line": 810, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L821" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L810" } ], "type": { @@ -135128,9 +137572,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 815, + "line": 804, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L804" } ] }, @@ -135158,9 +137602,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 855, + "line": 844, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L844" } ], "type": { @@ -135185,9 +137629,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 858, + "line": 847, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L847" } ], "type": { @@ -135207,9 +137651,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 853, + "line": 842, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L842" } ] }, @@ -135222,9 +137666,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 364, + "line": 353, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L353" } ], "type": { @@ -135268,9 +137712,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 364, + "line": 353, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L353" } ] } @@ -135291,7 +137735,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L54" } ], "type": { @@ -135341,7 +137785,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 52, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L52" } ], "type": { @@ -135358,9 +137802,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1248, + "line": 1237, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1237" } ], "type": { @@ -135392,9 +137836,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1248, + "line": 1237, "character": 71, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1237" } ] } @@ -135413,9 +137857,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 696, + "line": 685, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L685" } ], "type": { @@ -135447,9 +137891,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 696, + "line": 685, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L685" } ] } @@ -135477,9 +137921,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1714, + "line": 1703, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1703" } ], "type": { @@ -135508,9 +137952,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1716, + "line": 1705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1716" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1705" } ], "type": { @@ -135535,9 +137979,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1719, + "line": 1708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1708" } ], "type": { @@ -135555,9 +137999,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1714, + "line": 1703, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1703" } ] } @@ -135581,9 +138025,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1707, + "line": 1696, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1696" } ], "type": { @@ -135616,9 +138060,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1709, + "line": 1698, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1698" } ], "type": { @@ -135636,9 +138080,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1707, + "line": 1696, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1696" } ] } @@ -135666,9 +138110,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1733, + "line": 1722, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1722" } ], "type": { @@ -135697,9 +138141,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1735, + "line": 1724, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1735" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1724" } ], "type": { @@ -135717,9 +138161,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1733, + "line": 1722, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1722" } ] } @@ -135743,9 +138187,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1725, + "line": 1714, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1725" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1714" } ], "type": { @@ -135778,9 +138222,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1727, + "line": 1716, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1716" } ], "type": { @@ -135803,9 +138247,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1725, + "line": 1714, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1725" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1714" } ] } @@ -135824,9 +138268,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1179, + "line": 1168, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1168" } ], "type": { @@ -135876,9 +138320,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1230, + "line": 1219, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1219" } ], "type": { @@ -135914,9 +138358,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1171, + "line": 1160, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1171" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1160" } ], "type": { @@ -135987,9 +138431,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1200, + "line": 1189, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1189" } ], "type": { @@ -136047,9 +138491,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1220, + "line": 1209, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1209" } ], "type": { @@ -136099,9 +138543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1227, + "line": 1216, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1216" } ], "type": { @@ -136128,9 +138572,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1933, + "line": 1922, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1933" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1922" } ], "type": { @@ -136180,9 +138624,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1146, + "line": 1135, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1135" } ], "type": { @@ -136218,9 +138662,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1924, + "line": 1913, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1924" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1913" } ], "type": { @@ -136291,9 +138735,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1946, + "line": 1935, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1946" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1935" } ], "type": { @@ -136343,9 +138787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1250, + "line": 1239, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1250" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1239" } ], "type": { @@ -136378,9 +138822,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1271, + "line": 1260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1260" } ], "type": { @@ -136422,9 +138866,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1252, + "line": 1241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1252" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1241" } ], "type": { @@ -136473,9 +138917,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1260, + "line": 1249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1260" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1249" } ], "type": { @@ -136504,9 +138948,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1250, + "line": 1239, "character": 74, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1250" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1239" } ] } @@ -136533,9 +138977,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1236, + "line": 1225, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1225" } ], "typeParameters": [ @@ -136606,9 +139050,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1240, + "line": 1229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1229" } ], "type": { @@ -136631,9 +139075,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1238, + "line": 1227, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1227" } ] } @@ -136697,9 +139141,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1151, + "line": 1140, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1140" } ], "type": { @@ -136732,9 +139176,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1153, + "line": 1142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1142" } ], "type": { @@ -136752,9 +139196,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1151, + "line": 1140, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1140" } ] } @@ -136781,9 +139225,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1144, + "line": 1133, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1133" } ], "type": { @@ -136818,9 +139262,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1123, + "line": 1112, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1112" } ], "type": { @@ -136849,9 +139293,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1125, + "line": 1114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1114" } ], "type": { @@ -136876,9 +139320,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1131, + "line": 1120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1120" } ], "type": { @@ -136903,9 +139347,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1134, + "line": 1123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1123" } ], "type": { @@ -136938,9 +139382,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1128, + "line": 1117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1117" } ], "type": { @@ -136965,9 +139409,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1137, + "line": 1126, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1126" } ], "type": { @@ -136987,9 +139431,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1123, + "line": 1112, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1112" } ] } @@ -137023,9 +139467,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2561, + "line": 2550, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2561" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2550" } ], "type": { @@ -137071,9 +139515,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2569, + "line": 2558, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2569" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2558" } ], "type": { @@ -137108,9 +139552,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2588, + "line": 2577, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2588" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2577" } ], "type": { @@ -137148,9 +139592,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2594, + "line": 2583, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2594" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2583" } ], "type": { @@ -137168,9 +139612,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2594, + "line": 2583, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2594" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2583" } ] } @@ -137202,9 +139646,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 267, + "line": 256, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L256" } ], "type": { @@ -137231,9 +139675,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 270, + "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L259" } ], "type": { @@ -137259,9 +139703,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 269, + "line": 258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L258" } ], "type": { @@ -137278,9 +139722,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 268, + "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L257" } ], "type": { @@ -137298,9 +139742,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 267, + "line": 256, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L256" } ] } @@ -137319,9 +139763,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2811, + "line": 2800, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2811" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2800" } ], "type": { @@ -137342,9 +139786,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2813, + "line": 2802, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2813" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2802" } ], "type": { @@ -137361,9 +139805,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2812, + "line": 2801, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2812" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2801" } ], "type": { @@ -137381,9 +139825,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2811, + "line": 2800, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2811" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2800" } ] } @@ -137398,9 +139842,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2807, + "line": 2796, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2807" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2796" } ], "type": { @@ -137421,9 +139865,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2808, + "line": 2797, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2808" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2797" } ], "type": { @@ -137441,9 +139885,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2807, + "line": 2796, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2807" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2796" } ] } @@ -137458,9 +139902,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2795, + "line": 2784, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2795" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2784" } ], "type": { @@ -137487,9 +139931,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2797, + "line": 2786, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2786" } ], "type": { @@ -137514,9 +139958,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2798, + "line": 2787, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2787" } ], "type": { @@ -137544,9 +139988,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2798, + "line": 2787, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2787" } ], "type": { @@ -137575,9 +140019,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2798, + "line": 2787, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2787" } ] } @@ -137596,7 +140040,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -137616,9 +140060,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2803, + "line": 2792, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2803" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2792" } ], "type": { @@ -137643,9 +140087,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2801, + "line": 2790, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2790" } ], "type": { @@ -137675,9 +140119,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2789, + "line": 2778, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2789" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2778" } ], "type": { @@ -137704,9 +140148,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2791, + "line": 2780, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2791" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2780" } ], "type": { @@ -137733,7 +140177,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -137753,9 +140197,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2802, + "line": 2791, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2802" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2791" } ], "type": { @@ -137782,9 +140226,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 251, + "line": 240, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L240" } ], "type": { @@ -137809,9 +140253,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 253, + "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L242" } ], "type": { @@ -137839,9 +140283,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 252, + "line": 241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L241" } ], "type": { @@ -137870,9 +140314,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 251, + "line": 240, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L240" } ] } @@ -137891,9 +140335,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 256, + "line": 245, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L245" } ], "type": { @@ -137918,9 +140362,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 258, + "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L258" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L247" } ], "type": { @@ -137948,9 +140392,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 257, + "line": 246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L246" } ], "type": { @@ -137980,9 +140424,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 259, + "line": 248, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L248" } ], "type": { @@ -138011,9 +140455,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 256, + "line": 245, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L245" } ] } @@ -138032,9 +140476,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 273, + "line": 262, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L262" } ], "type": { @@ -138059,9 +140503,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 275, + "line": 264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L264" } ], "type": { @@ -138080,9 +140524,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 274, + "line": 263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L263" } ], "type": { @@ -138102,9 +140546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 273, + "line": 262, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L262" } ] } @@ -138123,9 +140567,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 278, + "line": 267, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L267" } ], "type": { @@ -138150,9 +140594,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 280, + "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L269" } ], "type": { @@ -138171,9 +140615,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 279, + "line": 268, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L268" } ], "type": { @@ -138194,9 +140638,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 281, + "line": 270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L270" } ], "type": { @@ -138216,9 +140660,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 278, + "line": 267, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L267" } ] } @@ -138237,9 +140681,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1833, + "line": 1822, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1822" } ], "type": { @@ -138274,9 +140718,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2299, + "line": 2288, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2299" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2288" } ], "type": { @@ -138307,9 +140751,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2311, + "line": 2300, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2300" } ], "type": { @@ -138339,9 +140783,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2317, + "line": 2306, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2317" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2306" } ], "type": { @@ -138383,9 +140827,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2319, + "line": 2308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2308" } ], "type": { @@ -138427,9 +140871,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2331, + "line": 2320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2320" } ], "type": { @@ -138454,9 +140898,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2307, + "line": 2296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2296" } ], "type": { @@ -138481,9 +140925,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2309, + "line": 2298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2309" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2298" } ], "type": { @@ -138510,9 +140954,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2327, + "line": 2316, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2316" } ], "type": { @@ -138539,9 +140983,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2323, + "line": 2312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2323" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2312" } ], "type": { @@ -138568,9 +141012,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2321, + "line": 2310, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2321" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2310" } ], "type": { @@ -138603,9 +141047,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2303, + "line": 2292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2303" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2292" } ], "type": { @@ -138632,9 +141076,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2325, + "line": 2314, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2325" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2314" } ], "type": { @@ -138661,9 +141105,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2337, + "line": 2326, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2337" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2326" } ], "type": { @@ -138688,9 +141132,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2305, + "line": 2294, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2305" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2294" } ], "type": { @@ -138717,9 +141161,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2315, + "line": 2304, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2304" } ], "type": { @@ -138744,9 +141188,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2301, + "line": 2290, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2290" } ], "type": { @@ -138775,9 +141219,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2313, + "line": 2302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2313" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2302" } ], "type": { @@ -138807,9 +141251,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2329, + "line": 2318, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2329" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2318" } ], "type": { @@ -138836,9 +141280,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2333, + "line": 2322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2322" } ], "type": { @@ -138865,9 +141309,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2335, + "line": 2324, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2335" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2324" } ], "type": { @@ -138888,9 +141332,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2299, + "line": 2288, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2299" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2288" } ] } @@ -138913,9 +141357,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2084, + "line": 2073, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2084" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2073" } ], "type": { @@ -138944,9 +141388,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2086, + "line": 2075, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2086" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2075" } ], "type": { @@ -138973,9 +141417,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2088, + "line": 2077, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2088" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2077" } ], "type": { @@ -139002,9 +141446,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2092, + "line": 2081, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2092" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2081" } ], "type": { @@ -139034,9 +141478,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2090, + "line": 2079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2079" } ], "type": { @@ -139066,9 +141510,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2094, + "line": 2083, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2094" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2083" } ], "type": { @@ -139100,9 +141544,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2096, + "line": 2085, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2096" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2085" } ], "type": { @@ -139129,9 +141573,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2098, + "line": 2087, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2098" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2087" } ], "type": { @@ -139151,9 +141595,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2084, + "line": 2073, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2084" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2073" } ] } @@ -139176,9 +141620,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2249, + "line": 2238, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2249" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2238" } ], "type": { @@ -139209,9 +141653,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2261, + "line": 2250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2250" } ], "type": { @@ -139241,9 +141685,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2267, + "line": 2256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2256" } ], "type": { @@ -139285,9 +141729,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2269, + "line": 2258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2258" } ], "type": { @@ -139329,9 +141773,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2281, + "line": 2270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2270" } ], "type": { @@ -139356,9 +141800,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2259, + "line": 2248, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2248" } ], "type": { @@ -139383,9 +141827,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2291, + "line": 2280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2291" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2280" } ], "type": { @@ -139412,9 +141856,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2289, + "line": 2278, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2278" } ], "type": { @@ -139452,9 +141896,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2277, + "line": 2266, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2266" } ], "type": { @@ -139481,9 +141925,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2273, + "line": 2262, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2262" } ], "type": { @@ -139510,9 +141954,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2271, + "line": 2260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2260" } ], "type": { @@ -139537,9 +141981,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2251, + "line": 2240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2240" } ], "type": { @@ -139572,9 +142016,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2255, + "line": 2244, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2255" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2244" } ], "type": { @@ -139601,9 +142045,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2275, + "line": 2264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2264" } ], "type": { @@ -139630,9 +142074,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2287, + "line": 2276, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2287" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2276" } ], "type": { @@ -139657,9 +142101,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2257, + "line": 2246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2257" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2246" } ], "type": { @@ -139686,9 +142130,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2265, + "line": 2254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2265" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2254" } ], "type": { @@ -139713,9 +142157,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2253, + "line": 2242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2253" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2242" } ], "type": { @@ -139744,9 +142188,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2263, + "line": 2252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2252" } ], "type": { @@ -139776,9 +142220,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2279, + "line": 2268, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2268" } ], "type": { @@ -139805,9 +142249,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2283, + "line": 2272, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2283" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2272" } ], "type": { @@ -139832,9 +142276,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2293, + "line": 2282, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2282" } ], "type": { @@ -139861,9 +142305,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2285, + "line": 2274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2285" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2274" } ], "type": { @@ -139884,9 +142328,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2249, + "line": 2238, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2249" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2238" } ] } @@ -139909,9 +142353,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2398, + "line": 2387, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2398" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2387" } ], "type": { @@ -139935,9 +142379,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2400, + "line": 2389, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2389" } ], "type": { @@ -139958,9 +142402,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2400, + "line": 2389, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2389" } ], "type": { @@ -139983,9 +142427,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2400, + "line": 2389, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2389" } ] } @@ -140000,9 +142444,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2401, + "line": 2390, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2390" } ], "type": { @@ -140020,9 +142464,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2399, + "line": 2388, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2399" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2388" } ] } @@ -140045,9 +142489,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2404, + "line": 2393, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2404" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2393" } ], "type": { @@ -140068,9 +142512,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2404, + "line": 2393, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2404" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2393" } ], "type": { @@ -140087,9 +142531,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2404, + "line": 2393, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2404" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2393" } ] } @@ -140104,14 +142548,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2405, + "line": 2394, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2394" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -140126,9 +142570,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2403, + "line": 2392, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2403" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2392" } ] } @@ -140153,9 +142597,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2393, + "line": 2382, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2393" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2382" } ], "type": { @@ -140190,9 +142634,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2216, + "line": 2205, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2216" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2205" } ], "type": { @@ -140218,9 +142662,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 862, + "line": 851, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L851" } ], "type": { @@ -140268,9 +142712,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 869, + "line": 858, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L869" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L858" } ] } @@ -140289,9 +142733,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 773, + "line": 762, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L773" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L762" } ], "type": { @@ -140313,9 +142757,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 775, + "line": 764, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L764" } ], "type": { @@ -140339,9 +142783,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 777, + "line": 766, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L777" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L766" } ], "type": { @@ -140360,9 +142804,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 785, + "line": 774, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L774" } ], "type": { @@ -140393,9 +142837,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 790, + "line": 779, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L790" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L779" } ], "type": { @@ -140414,9 +142858,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 792, + "line": 781, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L792" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L781" } ], "type": { @@ -140491,9 +142935,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 787, + "line": 776, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L787" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L776" } ], "type": { @@ -140511,9 +142955,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 785, + "line": 774, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L774" } ] } @@ -140538,9 +142982,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 783, + "line": 772, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L772" } ], "type": { @@ -140575,9 +143019,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 780, + "line": 769, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L780" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L769" } ], "type": { @@ -140597,9 +143041,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 776, + "line": 765, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L776" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L765" } ] } @@ -140622,9 +143066,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 798, + "line": 787, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L787" } ], "type": { @@ -140673,9 +143117,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 801, + "line": 790, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L790" } ], "type": { @@ -140694,9 +143138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 806, + "line": 795, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L795" } ], "type": { @@ -140727,9 +143171,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 808, + "line": 797, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L808" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L797" } ], "type": { @@ -140747,9 +143191,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 806, + "line": 795, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L795" } ] } @@ -140772,9 +143216,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 804, + "line": 793, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L804" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L793" } ], "type": { @@ -140797,9 +143241,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 797, + "line": 786, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L786" } ] } @@ -140816,9 +143260,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 193, + "line": 182, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L182" } ], "type": { @@ -140889,9 +143333,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 203, + "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L192" } ], "type": { @@ -140909,9 +143353,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 193, + "line": 182, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L182" } ] } @@ -140982,9 +143426,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 423, + "line": 412, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L412" } ], "typeParameters": [ @@ -141062,9 +143506,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 443, + "line": 432, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L432" } ], "type": { @@ -141105,9 +143549,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 436, + "line": 425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L425" } ], "type": { @@ -141137,9 +143581,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 431, + "line": 420, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L420" } ], "type": { @@ -141164,9 +143608,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 428, + "line": 417, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L417" } ], "type": { @@ -141185,9 +143629,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 445, + "line": 434, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L434" } ], "type": { @@ -141240,9 +143684,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 441, + "line": 430, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L430" } ], "type": { @@ -141262,9 +143706,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 444, + "line": 433, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L433" } ], "type": { @@ -141282,9 +143726,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 426, + "line": 415, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L415" } ] } @@ -141323,9 +143767,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 407, + "line": 396, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L396" } ], "type": { @@ -141358,9 +143802,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 948, + "line": 937, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L948" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L937" } ], "type": { @@ -141389,9 +143833,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 951, + "line": 940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L951" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L940" } ], "type": { @@ -141416,9 +143860,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 955, + "line": 944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L955" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L944" } ], "type": { @@ -141437,9 +143881,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 956, + "line": 945, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L956" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L945" } ], "type": { @@ -141473,9 +143917,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 949, + "line": 938, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L938" } ], "type": { @@ -141502,9 +143946,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 948, + "line": 937, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L948" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L937" } ] } @@ -141519,9 +143963,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 934, + "line": 923, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L923" } ], "type": { @@ -141550,9 +143994,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 937, + "line": 926, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L937" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L926" } ], "type": { @@ -141571,9 +144015,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 938, + "line": 927, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L938" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L927" } ], "type": { @@ -141616,9 +144060,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 935, + "line": 924, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L935" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L924" } ], "type": { @@ -141645,9 +144089,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 934, + "line": 923, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L923" } ] } @@ -141662,9 +144106,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 970, + "line": 959, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L959" } ], "type": { @@ -141714,9 +144158,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 982, + "line": 971, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L971" } ], "type": { @@ -141745,9 +144189,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 987, + "line": 976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L987" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L976" } ], "type": { @@ -141772,9 +144216,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 992, + "line": 981, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L992" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L981" } ], "type": { @@ -141799,9 +144243,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 996, + "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L996" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L985" } ], "type": { @@ -141826,9 +144270,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 998, + "line": 987, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L998" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L987" } ], "type": { @@ -141853,9 +144297,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1000, + "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1000" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L989" } ], "type": { @@ -141875,9 +144319,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 982, + "line": 971, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L971" } ] } @@ -141892,9 +144336,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 976, + "line": 965, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L965" } ], "type": { @@ -141919,9 +144363,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 977, + "line": 966, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L966" } ], "type": { @@ -141940,9 +144384,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 978, + "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L978" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L967" } ], "type": { @@ -141962,9 +144406,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 976, + "line": 965, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L965" } ] } @@ -141983,9 +144427,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1003, + "line": 992, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L992" } ], "type": { @@ -142027,9 +144471,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 941, + "line": 930, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L930" } ], "type": { @@ -142058,9 +144502,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 944, + "line": 933, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L944" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L933" } ], "type": { @@ -142079,9 +144523,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 945, + "line": 934, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L945" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L934" } ], "type": { @@ -142115,9 +144559,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 942, + "line": 931, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L931" } ], "type": { @@ -142135,9 +144579,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 941, + "line": 930, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L930" } ] } @@ -142152,9 +144596,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 927, + "line": 916, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L916" } ], "type": { @@ -142175,9 +144619,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 929, + "line": 918, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L918" } ], "type": { @@ -142196,9 +144640,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 931, + "line": 920, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L931" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L920" } ], "type": { @@ -142241,9 +144685,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 930, + "line": 919, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L930" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L919" } ], "type": { @@ -142260,9 +144704,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 928, + "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -142280,9 +144724,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 927, + "line": 916, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L916" } ] } @@ -142299,7 +144743,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L80" } ], "type": { @@ -142324,7 +144768,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L109" } ], "type": { @@ -142345,7 +144789,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L127" } ], "type": { @@ -142368,7 +144812,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L127" } ], "signatures": [ @@ -142450,7 +144894,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "type": { @@ -142473,7 +144917,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "signatures": [ @@ -142519,7 +144963,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "indexSignatures": [ @@ -142534,7 +144978,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "parameters": [ @@ -142591,9 +145035,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 190, + "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L179" } ], "type": { @@ -142616,7 +145060,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L123" } ], "type": { @@ -142642,7 +145086,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L125" } ], "type": { @@ -142672,9 +145116,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 141, + "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L146" } ], "type": { @@ -142695,7 +145139,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L84" } ], "type": { @@ -142711,7 +145155,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L84" } ], "indexSignatures": [ @@ -142726,7 +145170,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L84" } ], "parameters": [ @@ -142763,33 +145207,43 @@ "summary": [ { "kind": "text", - "text": "Provide your own locking mechanism based on the environment. By default,\n" + "text": "Provide your own locking mechanism based on the environment. By default\nthe client coordinates refreshes itself (single-flight via\n" }, { "kind": "code", - "text": "`navigatorLock`" + "text": "`refreshingDeferred`" }, { "kind": "text", - "text": " (Web Locks API) is used in browser environments when\n" + "text": " + commit guard) and relies on the GoTrue server to\nresolve cross-tab refresh races. Passing a custom lock opts into a\nlegacy path that wraps every auth operation in your supplied lock — this\npath is preserved for backwards compatibility (typically React Native\n" }, { "kind": "code", - "text": "`persistSession`" + "text": "`processLock`" }, { "kind": "text", - "text": " is true. Falls back to an in-process lock for non-browser\nenvironments (e.g. React Native)." + "text": " or Node multi-process setups)." } ], - "modifierTags": ["@experimental"] + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Custom locks still work in v2.x for backwards compatibility.\nThe legacy lock path will be removed in v3 — drop this option from your\nconstructor options before upgrading." + } + ] + } + ] }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 136, + "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L141" } ], "type": { @@ -142811,23 +145265,23 @@ "summary": [ { "kind": "text", - "text": "The maximum time in milliseconds to wait for acquiring a cross-tab synchronization lock.\n\nWhen multiple browser tabs or windows use the auth client simultaneously, they coordinate\nvia the Web Locks API to prevent race conditions during session refresh and other operations.\nThis timeout controls how long to wait before attempting lock recovery.\n\n- **Positive value**: Wait up to this many milliseconds. If the lock is still held, attempt\n automatic recovery by stealing it (the previous holder is evicted, its callback continues\n to completion without exclusive access). This recovers from orphaned locks caused by\n React Strict Mode double-mount, storage API hangs, or aborted operations.\n- **Zero (0)**: Fail immediately if the lock is unavailable; throws " + "text": "The maximum time in milliseconds to wait for acquiring the custom lock\nsupplied via the " }, { "kind": "code", - "text": "`LockAcquireTimeoutError`" + "text": "`lock`" }, { "kind": "text", - "text": "\n (check " + "text": " option. Only consulted when a custom " }, { "kind": "code", - "text": "`error.isAcquireTimeout === true`" + "text": "`lock`" }, { "kind": "text", - "text": ").\n- **Negative value**: Wait indefinitely — can cause permanent deadlocks if the lock is orphaned." + "text": " is\npassed — the default lockless path doesn't use this timeout." } ], "blockTags": [ @@ -142841,11 +145295,19 @@ ] }, { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "Only used by the legacy lock path. Will be removed in v3\nalong with the " + }, { "kind": "code", - "text": "```ts\nconst client = createClient(url, key, {\n auth: {\n lockAcquireTimeout: 5000, // 5 seconds, then steal orphaned lock\n },\n})\n```" + "text": "`lock`" + }, + { + "kind": "text", + "text": " option." } ] } @@ -142854,9 +145316,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 173, + "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L162" } ], "type": { @@ -142877,7 +145339,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L111" } ], "type": { @@ -142915,9 +145377,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 182, + "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L171" } ], "type": { @@ -142938,7 +145400,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L113" } ], "type": { @@ -142961,7 +145423,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L86" } ], "type": { @@ -142988,9 +145450,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 146, + "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L151" } ], "type": { @@ -143011,7 +145473,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L82" } ], "type": { @@ -143081,7 +145543,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L121" } ], "type": { @@ -143106,7 +145568,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L80" } ] } @@ -143121,9 +145583,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1831, + "line": 1820, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1820" } ], "type": { @@ -143144,9 +145606,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1831, + "line": 1820, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1820" } ], "type": { @@ -143154,7 +145616,7 @@ "types": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -143175,9 +145637,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1831, + "line": 1820, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1820" } ] } @@ -143192,9 +145654,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1950, + "line": 1939, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1950" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1939" } ], "type": { @@ -143215,9 +145677,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1951, + "line": 1940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1951" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1940" } ], "type": { @@ -143253,9 +145715,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1951, + "line": 1940, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1951" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1940" } ] } @@ -143274,9 +145736,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1952, + "line": 1941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1952" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1941" } ], "type": { @@ -143293,9 +145755,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1953, + "line": 1942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1953" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1942" } ], "type": { @@ -143313,9 +145775,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1950, + "line": 1939, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1950" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1939" } ] } @@ -143338,9 +145800,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2385, + "line": 2374, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2374" } ], "type": { @@ -143371,9 +145833,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2387, + "line": 2376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2387" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2376" } ], "type": { @@ -143393,9 +145855,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2385, + "line": 2374, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2374" } ] } @@ -143429,7 +145891,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L78" } ], "type": { @@ -143445,7 +145907,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -143538,7 +146000,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -143604,9 +146066,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1117, + "line": 1106, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1106" } ], "type": { @@ -143628,9 +146090,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1105, + "line": 1094, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1105" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1094" } ], "type": { @@ -143666,9 +146128,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1086, + "line": 1075, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1075" } ], "type": { @@ -143704,9 +146166,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1079, + "line": 1068, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1079" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1068" } ], "type": { @@ -143749,9 +146211,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1103, + "line": 1092, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1103" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1092" } ], "type": { @@ -143787,9 +146249,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1011, + "line": 1000, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1011" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1000" } ], "type": { @@ -143825,9 +146287,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1881, + "line": 1870, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1881" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1870" } ], "type": { @@ -143869,9 +146331,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1875, + "line": 1864, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1875" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1864" } ], "type": { @@ -143934,9 +146396,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1892, + "line": 1881, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1892" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1881" } ], "type": { @@ -143978,9 +146440,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1077, + "line": 1066, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1077" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1066" } ], "type": { @@ -144013,9 +146475,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1013, + "line": 1002, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1013" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1002" } ], "type": { @@ -144044,9 +146506,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1015, + "line": 1004, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1015" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1004" } ], "type": { @@ -144064,9 +146526,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1013, + "line": 1002, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1013" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1002" } ] } @@ -144081,9 +146543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1069, + "line": 1058, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1069" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1058" } ], "type": { @@ -144119,9 +146581,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1034, + "line": 1023, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1034" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1023" } ], "type": { @@ -144157,9 +146619,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1030, + "line": 1019, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1030" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1019" } ], "type": { @@ -144203,9 +146665,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1056, + "line": 1045, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1045" } ], "typeParameters": [ @@ -144269,9 +146731,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1057, + "line": 1046, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1046" } ], "type": { @@ -144317,9 +146779,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1056, + "line": 1045, "character": 98, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1045" } ] } @@ -144355,9 +146817,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1066, + "line": 1055, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1066" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1055" } ], "typeParameters": [ @@ -144442,9 +146904,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 861, + "line": 850, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L850" } ], "type": { @@ -144476,9 +146938,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 861, + "line": 850, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L850" } ] } @@ -144505,9 +146967,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2481, + "line": 2470, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2470" } ], "type": { @@ -144536,9 +146998,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2483, + "line": 2472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2483" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2472" } ], "type": { @@ -144563,9 +147025,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2489, + "line": 2478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2478" } ], "type": { @@ -144590,9 +147052,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2485, + "line": 2474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2485" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2474" } ], "type": { @@ -144617,9 +147079,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2487, + "line": 2476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2487" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2476" } ], "type": { @@ -144637,9 +147099,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2481, + "line": 2470, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2470" } ] } @@ -144678,9 +147140,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2503, + "line": 2492, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2492" } ], "type": { @@ -144709,9 +147171,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2505, + "line": 2494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2494" } ], "type": { @@ -144736,9 +147198,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2509, + "line": 2498, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2509" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2498" } ], "type": { @@ -144765,9 +147227,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2507, + "line": 2496, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2507" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2496" } ], "type": { @@ -144792,9 +147254,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2518, + "line": 2507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2507" } ], "type": { @@ -144819,9 +147281,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2511, + "line": 2500, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2500" } ], "type": { @@ -144850,9 +147312,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2515, + "line": 2504, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2504" } ], "type": { @@ -144877,9 +147339,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2513, + "line": 2502, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2513" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2502" } ], "type": { @@ -144897,9 +147359,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2511, + "line": 2500, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2500" } ] } @@ -144915,9 +147377,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2503, + "line": 2492, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2492" } ] } @@ -144940,9 +147402,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2049, + "line": 2038, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2049" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2038" } ], "type": { @@ -144971,9 +147433,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2051, + "line": 2040, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2051" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2040" } ], "type": { @@ -144998,9 +147460,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2053, + "line": 2042, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2053" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2042" } ], "type": { @@ -145027,9 +147489,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2055, + "line": 2044, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2055" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2044" } ], "type": { @@ -145054,9 +147516,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2057, + "line": 2046, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2046" } ], "type": { @@ -145085,9 +147547,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2063, + "line": 2052, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2063" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2052" } ], "type": { @@ -145112,9 +147574,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2075, + "line": 2064, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2075" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2064" } ], "type": { @@ -145139,9 +147601,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2069, + "line": 2058, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2069" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2058" } ], "type": { @@ -145173,9 +147635,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2065, + "line": 2054, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2065" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2054" } ], "type": { @@ -145200,9 +147662,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2067, + "line": 2056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2067" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2056" } ], "type": { @@ -145230,9 +147692,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2061, + "line": 2050, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2061" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2050" } ], "type": { @@ -145259,9 +147721,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2071, + "line": 2060, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2060" } ], "type": { @@ -145293,9 +147755,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2073, + "line": 2062, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2073" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2062" } ], "type": { @@ -145320,9 +147782,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2059, + "line": 2048, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2059" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2048" } ], "type": { @@ -145349,9 +147811,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2077, + "line": 2066, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2077" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2066" } ], "type": { @@ -145372,9 +147834,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2049, + "line": 2038, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2049" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2038" } ] } @@ -145397,9 +147859,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2016, + "line": 2005, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2016" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2005" } ], "type": { @@ -145431,9 +147893,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2016, + "line": 2005, "character": 86, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2016" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2005" } ] } @@ -145460,9 +147922,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2131, + "line": 2120, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2120" } ], "type": { @@ -145486,9 +147948,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -145512,9 +147974,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -145531,9 +147993,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -145556,9 +148018,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ] } @@ -145581,9 +148043,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2134, + "line": 2123, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2123" } ], "type": { @@ -145601,9 +148063,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2132, + "line": 2121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2121" } ] } @@ -145626,9 +148088,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2137, + "line": 2126, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2126" } ], "type": { @@ -145649,9 +148111,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2137, + "line": 2126, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2126" } ], "type": { @@ -145668,9 +148130,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2137, + "line": 2126, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2126" } ] } @@ -145685,14 +148147,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2138, + "line": 2127, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2127" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -145707,9 +148169,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2136, + "line": 2125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2125" } ] } @@ -145734,9 +148196,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2034, + "line": 2023, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2034" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2023" } ], "type": { @@ -145770,9 +148232,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2125, + "line": 2114, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2114" } ], "type": { @@ -145807,9 +148269,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2022, + "line": 2011, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2022" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2011" } ], "type": { @@ -145834,9 +148296,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2040, + "line": 2029, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2040" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2029" } ], "type": { @@ -145874,9 +148336,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2028, + "line": 2017, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2028" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2017" } ], "type": { @@ -145910,9 +148372,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2575, + "line": 2564, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2575" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2564" } ], "type": { @@ -145941,9 +148403,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2577, + "line": 2566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2577" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2566" } ], "type": { @@ -145970,9 +148432,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2581, + "line": 2570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2570" } ], "type": { @@ -145997,9 +148459,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2579, + "line": 2568, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2568" } ], "type": { @@ -146020,9 +148482,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2575, + "line": 2564, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2575" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2564" } ] } @@ -146053,9 +148515,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2534, + "line": 2523, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2523" } ], "type": { @@ -146084,9 +148546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2536, + "line": 2525, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2525" } ], "type": { @@ -146104,9 +148566,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2534, + "line": 2523, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2523" } ] } @@ -146121,9 +148583,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 284, + "line": 273, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L284" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L273" } ], "type": { @@ -146147,9 +148609,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 286, + "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L275" } ], "type": { @@ -146170,9 +148632,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 287, + "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L276" } ], "type": { @@ -146191,9 +148653,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 288, + "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L277" } ], "type": { @@ -146211,9 +148673,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 286, + "line": 275, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L275" } ] } @@ -146228,9 +148690,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 290, + "line": 279, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L279" } ], "type": { @@ -146248,9 +148710,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 285, + "line": 274, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L274" } ] } @@ -146273,9 +148735,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 293, + "line": 282, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L282" } ], "type": { @@ -146296,9 +148758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 294, + "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L283" } ], "type": { @@ -146317,9 +148779,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 295, + "line": 284, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L284" } ], "type": { @@ -146337,9 +148799,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 293, + "line": 282, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L282" } ] } @@ -146354,14 +148816,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 297, + "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L286" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -146376,9 +148838,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 292, + "line": 281, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L281" } ] } @@ -146403,9 +148865,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2223, + "line": 2212, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2223" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2212" } ], "type": { @@ -146434,9 +148896,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2227, + "line": 2216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2216" } ], "type": { @@ -146461,9 +148923,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2225, + "line": 2214, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2214" } ], "type": { @@ -146488,9 +148950,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2231, + "line": 2220, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2231" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2220" } ], "type": { @@ -146517,9 +148979,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2235, + "line": 2224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2224" } ], "type": { @@ -146546,9 +149008,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2243, + "line": 2232, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2232" } ], "type": { @@ -146578,9 +149040,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2239, + "line": 2228, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2228" } ], "type": { @@ -146610,9 +149072,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2237, + "line": 2226, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2226" } ], "type": { @@ -146642,9 +149104,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2241, + "line": 2230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2230" } ], "type": { @@ -146672,9 +149134,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2229, + "line": 2218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2218" } ], "type": { @@ -146701,9 +149163,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2233, + "line": 2222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2222" } ], "type": { @@ -146721,9 +149183,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2223, + "line": 2212, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2223" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2212" } ] } @@ -146738,9 +149200,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1842, + "line": 1831, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1831" } ], "type": { @@ -146771,9 +149233,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1844, + "line": 1833, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1844" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1833" } ], "type": { @@ -146800,9 +149262,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1846, + "line": 1835, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1835" } ], "type": { @@ -146820,9 +149282,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1842, + "line": 1831, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1831" } ] } @@ -146837,9 +149299,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1835, + "line": 1824, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1835" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1824" } ], "type": { @@ -146860,9 +149322,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1838, + "line": 1827, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1838" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1827" } ], "type": { @@ -146879,9 +149341,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1837, + "line": 1826, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1837" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1826" } ], "type": { @@ -146907,9 +149369,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1839, + "line": 1828, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1839" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1828" } ], "type": { @@ -146927,9 +149389,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1835, + "line": 1824, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1835" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1824" } ], "indexSignatures": [ @@ -146942,9 +149404,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1836, + "line": 1825, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1836" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1825" } ], "parameters": [ @@ -146986,9 +149448,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2720, + "line": 2709, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2709" } ], "type": { @@ -147009,9 +149471,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2721, + "line": 2710, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2721" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2710" } ], "type": { @@ -147028,9 +149490,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2723, + "line": 2712, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2723" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2712" } ], "type": { @@ -147047,9 +149509,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2722, + "line": 2711, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2722" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2711" } ], "type": { @@ -147072,9 +149534,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2720, + "line": 2709, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2709" } ] } @@ -147097,9 +149559,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2727, + "line": 2716, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2716" } ], "type": { @@ -147120,9 +149582,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2728, + "line": 2717, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2728" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2717" } ], "type": { @@ -147139,9 +149601,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2729, + "line": 2718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2729" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2718" } ], "type": { @@ -147164,9 +149626,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2727, + "line": 2716, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2716" } ] } @@ -147181,9 +149643,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2782, + "line": 2771, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2771" } ], "type": { @@ -147212,9 +149674,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2784, + "line": 2773, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2784" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2773" } ], "type": { @@ -147232,9 +149694,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2782, + "line": 2771, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2771" } ] } @@ -147257,9 +149719,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2733, + "line": 2722, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2722" } ], "type": { @@ -147280,9 +149742,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2736, + "line": 2725, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2736" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2725" } ], "type": { @@ -147301,9 +149763,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2735, + "line": 2724, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2735" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2724" } ], "type": { @@ -147320,9 +149782,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2734, + "line": 2723, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2734" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2723" } ], "type": { @@ -147341,9 +149803,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2737, + "line": 2726, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2737" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2726" } ], "type": { @@ -147361,9 +149823,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2733, + "line": 2722, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2722" } ] } @@ -147386,9 +149848,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2713, + "line": 2702, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2702" } ], "type": { @@ -147409,9 +149871,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2716, + "line": 2705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2716" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2705" } ], "type": { @@ -147430,9 +149892,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2715, + "line": 2704, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2715" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2704" } ], "type": { @@ -147449,9 +149911,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2714, + "line": 2703, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2703" } ], "type": { @@ -147469,9 +149931,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2713, + "line": 2702, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2702" } ] } @@ -147494,9 +149956,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2700, + "line": 2689, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2689" } ], "type": { @@ -147517,9 +149979,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2701, + "line": 2690, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2701" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2690" } ], "type": { @@ -147536,9 +149998,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2703, + "line": 2692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2703" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2692" } ], "type": { @@ -147555,9 +150017,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2702, + "line": 2691, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2702" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2691" } ], "type": { @@ -147580,9 +150042,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2700, + "line": 2689, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2689" } ] } @@ -147605,9 +150067,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2707, + "line": 2696, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2696" } ], "type": { @@ -147628,9 +150090,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2708, + "line": 2697, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2697" } ], "type": { @@ -147647,9 +150109,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2709, + "line": 2698, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2698" } ], "type": { @@ -147672,9 +150134,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2707, + "line": 2696, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2696" } ] } @@ -147689,9 +150151,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2775, + "line": 2764, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2764" } ], "type": { @@ -147720,9 +150182,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2779, + "line": 2768, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2768" } ], "type": { @@ -147747,9 +150209,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2777, + "line": 2766, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2777" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2766" } ], "type": { @@ -147767,9 +150229,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2775, + "line": 2764, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2764" } ] } @@ -147792,9 +150254,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ], "typeParameters": [ @@ -147903,7 +150365,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L24" } ], "type": { @@ -148062,9 +150524,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2749, + "line": 2738, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2738" } ], "type": { @@ -148087,9 +150549,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2750, + "line": 2739, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2739" } ], "type": { @@ -148112,9 +150574,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2751, + "line": 2740, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2751" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2740" } ], "type": { @@ -148137,9 +150599,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2750, + "line": 2739, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2739" } ] } @@ -148155,9 +150617,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2749, + "line": 2738, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2738" } ] } @@ -148180,9 +150642,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 230, + "line": 219, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L219" } ], "typeParameters": [ @@ -148210,7 +150672,7 @@ }, "default": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -148237,9 +150699,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -148259,9 +150721,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -148279,9 +150741,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 231, + "line": 220, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L220" } ] } @@ -148304,9 +150766,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -148323,9 +150785,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { @@ -148341,13 +150803,13 @@ }, "extendsType": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, "trueType": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -148370,9 +150832,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 235, + "line": 224, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L224" } ] } @@ -148402,9 +150864,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 244, + "line": 233, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L233" } ], "typeParameters": [ @@ -148437,9 +150899,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 245, + "line": 234, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L234" } ], "type": { @@ -148459,9 +150921,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 245, + "line": 234, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L234" } ], "type": { @@ -148479,9 +150941,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 245, + "line": 234, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L234" } ] } @@ -148504,9 +150966,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 247, + "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -148556,14 +151018,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 248, + "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -148578,9 +151040,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 246, + "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L235" } ] } @@ -148597,9 +151059,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1956, + "line": 1945, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1956" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1945" } ], "type": { @@ -148620,9 +151082,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1963, + "line": 1952, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1963" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1952" } ], "type": { @@ -148641,9 +151103,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1959, + "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1959" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -148672,9 +151134,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1960, + "line": 1949, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1960" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1949" } ], "type": { @@ -148691,9 +151153,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1961, + "line": 1950, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1961" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1950" } ], "type": { @@ -148710,9 +151172,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1957, + "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1957" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -148729,9 +151191,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1962, + "line": 1951, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1962" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1951" } ], "type": { @@ -148748,9 +151210,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1964, + "line": 1953, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1964" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1953" } ], "type": { @@ -148767,9 +151229,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1958, + "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1958" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -148787,9 +151249,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1956, + "line": 1945, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1956" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1945" } ] } @@ -148811,9 +151273,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 871, + "line": 860, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L871" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L860" } ], "type": { @@ -148837,9 +151299,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 874, + "line": 863, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L863" } ], "type": { @@ -148858,9 +151320,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 875, + "line": 864, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L875" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L864" } ], "type": { @@ -148891,9 +151353,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 879, + "line": 868, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L879" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L868" } ], "type": { @@ -148920,9 +151382,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 877, + "line": 866, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L877" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L866" } ], "type": { @@ -148940,9 +151402,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 875, + "line": 864, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L875" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L864" } ] } @@ -148957,9 +151419,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 873, + "line": 862, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L873" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L862" } ], "type": { @@ -149003,9 +151465,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 872, + "line": 861, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L861" } ] } @@ -149030,9 +151492,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 885, + "line": 874, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L885" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L874" } ], "type": { @@ -149063,9 +151525,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 887, + "line": 876, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L876" } ], "type": { @@ -149083,9 +151545,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 885, + "line": 874, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L885" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L874" } ] } @@ -149100,9 +151562,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 884, + "line": 873, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L873" } ], "type": { @@ -149119,9 +151581,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 883, + "line": 872, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L883" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L872" } ], "type": { @@ -149165,9 +151627,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 882, + "line": 871, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L882" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L871" } ] } @@ -149184,9 +151646,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 626, + "line": 615, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L615" } ], "type": { @@ -149209,9 +151671,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 627, + "line": 616, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L616" } ], "type": { @@ -149242,9 +151704,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 635, + "line": 624, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L624" } ], "type": { @@ -149287,9 +151749,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 633, + "line": 622, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L622" } ], "type": { @@ -149307,9 +151769,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 627, + "line": 616, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L616" } ] } @@ -149325,9 +151787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 626, + "line": 615, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L615" } ] } @@ -149342,9 +151804,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 712, + "line": 701, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L701" } ], "type": { @@ -149383,9 +151845,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 718, + "line": 707, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L718" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L707" } ], "type": { @@ -149420,9 +151882,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 720, + "line": 709, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L720" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L709" } ], "type": { @@ -149441,9 +151903,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 721, + "line": 710, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L710" } ], "type": { @@ -149474,9 +151936,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 723, + "line": 712, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L723" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L712" } ], "type": { @@ -149494,9 +151956,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 721, + "line": 710, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L710" } ] } @@ -149583,9 +152045,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 714, + "line": 703, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L703" } ], "type": { @@ -149642,9 +152104,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 714, + "line": 703, "character": 97, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L703" } ] } @@ -149703,9 +152165,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 716, + "line": 705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L705" } ], "type": { @@ -149723,9 +152185,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 712, + "line": 701, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L701" } ] } @@ -149740,9 +152202,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 697, + "line": 686, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L686" } ], "type": { @@ -149765,9 +152227,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 700, + "line": 689, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L689" } ], "type": { @@ -149798,9 +152260,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 706, + "line": 695, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L695" } ], "type": { @@ -149814,9 +152276,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 706, + "line": 695, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L695" } ], "indexSignatures": [ @@ -149829,9 +152291,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 706, + "line": 695, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L695" } ], "parameters": [ @@ -149875,9 +152337,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 702, + "line": 691, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L702" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L691" } ], "type": { @@ -149904,9 +152366,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 704, + "line": 693, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L704" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L693" } ], "type": { @@ -149933,9 +152395,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 708, + "line": 697, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L697" } ], "type": { @@ -149953,9 +152415,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 700, + "line": 689, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L689" } ] } @@ -149978,9 +152440,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 699, + "line": 688, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L699" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L688" } ], "type": { @@ -150000,9 +152462,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 697, + "line": 686, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L686" } ] } @@ -150017,9 +152479,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2742, + "line": 2731, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2742" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2731" } ], "type": { @@ -150042,9 +152504,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2743, + "line": 2732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2743" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2732" } ], "type": { @@ -150067,9 +152529,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2744, + "line": 2733, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2744" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2733" } ], "type": { @@ -150088,9 +152550,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2745, + "line": 2734, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2745" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2734" } ], "type": { @@ -150113,9 +152575,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2743, + "line": 2732, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2743" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2732" } ] } @@ -150131,9 +152593,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2742, + "line": 2731, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2742" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2731" } ] } @@ -150148,9 +152610,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 652, + "line": 641, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L641" } ], "type": { @@ -150185,9 +152647,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 653, + "line": 642, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L642" } ], "type": { @@ -150210,9 +152672,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 654, + "line": 643, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L643" } ], "type": { @@ -150230,9 +152692,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 653, + "line": 642, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L642" } ] } @@ -150248,9 +152710,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 652, + "line": 641, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L641" } ] } @@ -150267,9 +152729,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 658, + "line": 647, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L647" } ], "type": { @@ -150301,9 +152763,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 661, + "line": 650, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L661" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L650" } ], "type": { @@ -150322,9 +152784,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 662, + "line": 651, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L651" } ], "type": { @@ -150355,9 +152817,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 674, + "line": 663, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L663" } ], "type": { @@ -150400,9 +152862,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 672, + "line": 661, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L672" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L661" } ], "type": { @@ -150429,9 +152891,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 664, + "line": 653, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L653" } ], "type": { @@ -150458,9 +152920,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 666, + "line": 655, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L655" } ], "type": { @@ -150478,9 +152940,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 662, + "line": 651, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L651" } ] } @@ -150496,9 +152958,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 659, + "line": 648, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L659" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L648" } ] } @@ -150523,9 +152985,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 680, + "line": 669, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L669" } ], "type": { @@ -150556,9 +153018,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 690, + "line": 679, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L690" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L679" } ], "type": { @@ -150585,9 +153047,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 692, + "line": 681, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L681" } ], "type": { @@ -150639,9 +153101,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 688, + "line": 677, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L688" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L677" } ], "type": { @@ -150668,9 +153130,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 682, + "line": 671, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L671" } ], "type": { @@ -150688,9 +153150,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 680, + "line": 669, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L669" } ] } @@ -150713,9 +153175,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 679, + "line": 668, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L668" } ], "type": { @@ -150733,9 +153195,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 677, + "line": 666, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L666" } ] } @@ -150752,9 +153214,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 891, + "line": 880, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L880" } ], "type": { @@ -150780,9 +153242,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 896, + "line": 885, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L896" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L885" } ], "type": { @@ -150813,9 +153275,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 900, + "line": 889, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L900" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L889" } ], "type": { @@ -150842,9 +153304,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 898, + "line": 887, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L898" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L887" } ], "type": { @@ -150871,9 +153333,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 906, + "line": 895, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L906" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L895" } ], "type": { @@ -150891,9 +153353,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 896, + "line": 885, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L896" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L885" } ] } @@ -150916,9 +153378,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 894, + "line": 883, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L894" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L883" } ], "type": { @@ -150936,9 +153398,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 892, + "line": 881, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L881" } ] } @@ -150969,9 +153431,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 911, + "line": 900, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L911" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L900" } ], "type": { @@ -150990,9 +153452,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 913, + "line": 902, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L913" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L902" } ], "type": { @@ -151023,9 +153485,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 917, + "line": 906, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L906" } ], "type": { @@ -151052,9 +153514,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 915, + "line": 904, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L915" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L904" } ], "type": { @@ -151081,9 +153543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 923, + "line": 912, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L923" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -151101,9 +153563,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 913, + "line": 902, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L913" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L902" } ] } @@ -151119,9 +153581,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 909, + "line": 898, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L909" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L898" } ] } @@ -151138,9 +153600,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1849, + "line": 1838, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1838" } ], "type": { @@ -151171,9 +153633,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1860, + "line": 1849, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1860" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1849" } ], "type": { @@ -151204,9 +153666,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1849, + "line": 1838, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1838" } ] } @@ -151221,9 +153683,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2010, + "line": 1999, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1999" } ], "type": { @@ -151252,9 +153714,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 639, + "line": 628, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L628" } ], "type": { @@ -151289,9 +153751,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 640, + "line": 629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L629" } ], "type": { @@ -151314,9 +153776,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 643, + "line": 632, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L632" } ], "type": { @@ -151335,9 +153797,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 644, + "line": 633, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L644" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L633" } ], "type": { @@ -151365,9 +153827,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 642, + "line": 631, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L642" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L631" } ], "type": { @@ -151386,9 +153848,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 641, + "line": 630, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L641" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L630" } ], "type": { @@ -151406,9 +153868,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 640, + "line": 629, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L629" } ] } @@ -151424,9 +153886,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 639, + "line": 628, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L628" } ] } @@ -151443,9 +153905,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 727, + "line": 716, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L716" } ], "type": { @@ -151468,9 +153930,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 729, + "line": 718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L718" } ], "type": { @@ -151494,9 +153956,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 730, + "line": 719, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L719" } ], "type": { @@ -151510,9 +153972,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 730, + "line": 719, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L719" } ], "signatures": [ @@ -151541,9 +154003,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 729, + "line": 718, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L718" } ] } @@ -151566,9 +154028,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 728, + "line": 717, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L717" } ], "type": { @@ -151582,9 +154044,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 728, + "line": 717, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L717" } ], "signatures": [ @@ -151670,9 +154132,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 733, + "line": 722, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L722" } ], "type": { @@ -151686,9 +154148,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 733, + "line": 722, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L722" } ], "signatures": [ @@ -151782,9 +154244,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 727, + "line": 716, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L716" } ] } @@ -151799,9 +154261,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 736, + "line": 725, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L736" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L725" } ], "type": { @@ -151825,9 +154287,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 738, + "line": 727, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L727" } ], "type": { @@ -151846,9 +154308,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 746, + "line": 735, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L735" } ], "type": { @@ -151879,9 +154341,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 751, + "line": 740, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L740" } ], "type": { @@ -151900,9 +154362,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 753, + "line": 742, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L753" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L742" } ], "type": { @@ -151981,9 +154443,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 748, + "line": 737, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L748" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L737" } ], "type": { @@ -152001,9 +154463,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 746, + "line": 735, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L735" } ] } @@ -152028,9 +154490,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 744, + "line": 733, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L744" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L733" } ], "type": { @@ -152065,9 +154527,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 741, + "line": 730, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L730" } ], "type": { @@ -152087,9 +154549,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 737, + "line": 726, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L737" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L726" } ] } @@ -152112,9 +154574,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 759, + "line": 748, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L748" } ], "type": { @@ -152163,9 +154625,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 762, + "line": 751, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L762" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L751" } ], "type": { @@ -152184,9 +154646,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 767, + "line": 756, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L756" } ], "type": { @@ -152217,9 +154679,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 769, + "line": 758, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L758" } ], "type": { @@ -152237,9 +154699,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 767, + "line": 756, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L756" } ] } @@ -152262,9 +154724,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 765, + "line": 754, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L754" } ], "type": { @@ -152287,9 +154749,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 758, + "line": 747, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L747" } ] } @@ -152306,9 +154768,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 300, + "line": 289, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L289" } ], "type": { @@ -152349,9 +154811,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 308, + "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L297" } ], "type": { @@ -152369,9 +154831,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 300, + "line": 289, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L289" } ] } @@ -152390,9 +154852,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2762, + "line": 2751, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2762" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2751" } ], "type": { @@ -152415,9 +154877,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2763, + "line": 2752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2752" } ], "type": { @@ -152440,9 +154902,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2764, + "line": 2753, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2764" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2753" } ], "type": { @@ -152460,9 +154922,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2763, + "line": 2752, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2752" } ] } @@ -152478,9 +154940,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2762, + "line": 2751, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2762" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2751" } ] } @@ -152503,9 +154965,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 225, + "line": 214, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L214" } ], "typeParameters": [ @@ -152570,9 +155032,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1818, + "line": 1807, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1818" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1807" } ], "type": { @@ -152662,9 +155124,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1828, + "line": 1817, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1828" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1817" } ], "type": { @@ -152682,9 +155144,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1820, + "line": 1809, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1820" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1809" } ] } @@ -152725,9 +155187,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2345, + "line": 2334, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2345" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2334" } ], "type": { @@ -152758,9 +155220,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2353, + "line": 2342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2353" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2342" } ], "type": { @@ -152790,9 +155252,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2359, + "line": 2348, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2359" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2348" } ], "type": { @@ -152834,9 +155296,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2361, + "line": 2350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2350" } ], "type": { @@ -152878,9 +155340,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2373, + "line": 2362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2373" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2362" } ], "type": { @@ -152907,9 +155369,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2349, + "line": 2338, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2349" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2338" } ], "type": { @@ -152936,9 +155398,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2351, + "line": 2340, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2351" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2340" } ], "type": { @@ -152965,9 +155427,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2369, + "line": 2358, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2369" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2358" } ], "type": { @@ -152994,9 +155456,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2365, + "line": 2354, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2365" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2354" } ], "type": { @@ -153023,9 +155485,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2363, + "line": 2352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2352" } ], "type": { @@ -153052,9 +155514,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2367, + "line": 2356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2367" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2356" } ], "type": { @@ -153081,9 +155543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2379, + "line": 2368, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2379" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2368" } ], "type": { @@ -153110,9 +155572,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2347, + "line": 2336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2347" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2336" } ], "type": { @@ -153139,9 +155601,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2357, + "line": 2346, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2357" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2346" } ], "type": { @@ -153168,9 +155630,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2355, + "line": 2344, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2344" } ], "type": { @@ -153200,9 +155662,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2371, + "line": 2360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2371" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2360" } ], "type": { @@ -153229,9 +155691,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2375, + "line": 2364, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2364" } ], "type": { @@ -153258,9 +155720,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2377, + "line": 2366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2377" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2366" } ], "type": { @@ -153281,9 +155743,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2345, + "line": 2334, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2345" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2334" } ] } @@ -153306,9 +155768,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2106, + "line": 2095, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2095" } ], "type": { @@ -153339,9 +155801,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2108, + "line": 2097, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2097" } ], "type": { @@ -153368,9 +155830,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2110, + "line": 2099, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2110" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2099" } ], "type": { @@ -153397,9 +155859,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2116, + "line": 2105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2105" } ], "type": { @@ -153431,9 +155893,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2112, + "line": 2101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2112" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2101" } ], "type": { @@ -153460,9 +155922,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2114, + "line": 2103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2103" } ], "type": { @@ -153492,9 +155954,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2118, + "line": 2107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2107" } ], "type": { @@ -153514,9 +155976,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2106, + "line": 2095, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2095" } ] } @@ -153531,9 +155993,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 311, + "line": 300, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L300" } ], "type": { @@ -153558,9 +156020,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 312, + "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L301" } ], "type": { @@ -153580,9 +156042,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 311, + "line": 300, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L300" } ] } @@ -153601,9 +156063,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 814, + "line": 803, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L814" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L803" } ], "type": { @@ -153639,9 +156101,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2768, + "line": 2757, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2768" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2757" } ], "type": { @@ -153670,9 +156132,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2770, + "line": 2759, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2770" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2759" } ], "type": { @@ -153697,9 +156159,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2772, + "line": 2761, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2761" } ], "type": { @@ -153722,9 +156184,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2768, + "line": 2757, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2768" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2757" } ] } @@ -153739,9 +156201,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2755, + "line": 2744, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2744" } ], "type": { @@ -153770,9 +156232,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2757, + "line": 2746, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2757" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2746" } ], "type": { @@ -153797,9 +156259,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2759, + "line": 2748, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2748" } ], "type": { @@ -153822,9 +156284,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2755, + "line": 2744, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2744" } ] } @@ -153839,9 +156301,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 209, + "line": 198, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L198" } ], "type": { @@ -153862,9 +156324,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 211, + "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L200" } ], "type": { @@ -153881,9 +156343,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 210, + "line": 199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L199" } ], "type": { @@ -153906,9 +156368,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 209, + "line": 198, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L198" } ] } @@ -153923,9 +156385,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 208, + "line": 197, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L197" } ], "type": { @@ -153958,9 +156420,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 812, + "line": 801, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L812" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L801" } ], "type": { @@ -153994,7 +156456,7 @@ "fileName": "packages/core/auth-js/src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/AuthAdminApi.ts#L3" } ], "type": { @@ -154021,14 +156483,14 @@ "fileName": "packages/core/auth-js/src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/AuthClient.ts#L3" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 139, + "target": 136, "name": "default", "package": "@supabase/auth-js" } @@ -154045,14 +156507,41 @@ }, "comment": { "summary": [], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Debug flag for " + }, + { + "kind": "code", + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " / " + }, + { + "kind": "code", + "text": "`processLock`" + }, + { + "kind": "text", + "text": ". The auth\nclient ignores both, so this has no client-side effect." + } + ] + } + ], "modifierTags": ["@experimental"] }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 6, + "line": 17, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L17" } ], "type": { @@ -154077,9 +156566,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 10, + "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L21" } ], "type": { @@ -154098,9 +156587,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 6, + "line": 17, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L17" } ] } @@ -154118,9 +156607,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2009, + "line": 1998, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2009" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1998" } ], "type": { @@ -154157,7 +156646,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L75" } ], "signatures": [ @@ -154172,7 +156661,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L75" } ], "parameters": [ @@ -154194,7 +156683,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1741, + "target": 1744, "name": "AuthApiError", "package": "@supabase/auth-js" } @@ -154213,7 +156702,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L50" } ], "signatures": [ @@ -154228,7 +156717,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L50" } ], "parameters": [ @@ -154250,7 +156739,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -154269,7 +156758,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L210" } ], "signatures": [ @@ -154284,7 +156773,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L210" } ], "parameters": [ @@ -154306,7 +156795,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1846, + "target": 1849, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" } @@ -154325,7 +156814,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L274" } ], "signatures": [ @@ -154340,7 +156829,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L274" } ], "parameters": [ @@ -154362,7 +156851,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1904, + "target": 1907, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" } @@ -154370,6 +156859,62 @@ } ] }, + { + "id": 1720, + "name": "isAuthRefreshDiscardedError", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 328, + "character": 16, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L328" + } + ], + "signatures": [ + { + "id": 1721, + "name": "isAuthRefreshDiscardedError", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 328, + "character": 16, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L328" + } + ], + "parameters": [ + { + "id": 1722, + "name": "error", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "unknown" + } + } + ], + "type": { + "type": "predicate", + "name": "error", + "asserts": false, + "targetType": { + "type": "reference", + "target": 1941, + "name": "AuthRefreshDiscardedError", + "package": "@supabase/auth-js" + } + } + } + ] + }, { "id": 1717, "name": "isAuthRetryableFetchError", @@ -154381,7 +156926,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L296" } ], "signatures": [ @@ -154396,7 +156941,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L296" } ], "parameters": [ @@ -154418,7 +156963,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1920, + "target": 1923, "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" } @@ -154437,7 +156982,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L140" } ], "signatures": [ @@ -154452,7 +156997,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L140" } ], "parameters": [ @@ -154474,7 +157019,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1797, + "target": 1800, "name": "AuthSessionMissingError", "package": "@supabase/auth-js" } @@ -154483,7 +157028,7 @@ ] }, { - "id": 1720, + "id": 1723, "name": "isAuthWeakPasswordError", "variant": "declaration", "kind": 64, @@ -154491,14 +157036,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 341, + "line": 373, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L373" } ], "signatures": [ { - "id": 1721, + "id": 1724, "name": "isAuthWeakPasswordError", "variant": "signature", "kind": 4096, @@ -154506,14 +157051,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 341, + "line": 373, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L373" } ], "parameters": [ { - "id": 1722, + "id": 1725, "name": "error", "variant": "param", "kind": 32768, @@ -154530,7 +157075,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1938, + "target": 1958, "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" } @@ -154547,9 +157092,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 96, + "line": 86, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L86" } ], "signatures": [ @@ -154569,7 +157114,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient", - "target": 139 + "target": 136 }, { "kind": "text", @@ -154610,11 +157155,19 @@ ], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " + }, { "kind": "code", - "text": "```ts\nawait navigatorLock('sync-user', 1000, async () => {\n await refreshSession()\n})\n```" + "text": "`{ lock: navigatorLock }`" + }, + { + "kind": "text", + "text": "\nto it has no effect. You can safely drop the import from your client setup." } ] } @@ -154623,9 +157176,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 96, + "line": 86, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L86" } ], "typeParameters": [ @@ -154709,9 +157262,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 99, + "line": 89, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L89" } ], "signatures": [ @@ -154724,9 +157277,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 99, + "line": 89, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L89" } ], "type": { @@ -154783,9 +157336,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 330, + "line": 325, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L325" } ], "signatures": [ @@ -154812,6 +157365,23 @@ } ], "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " + }, + { + "kind": "code", + "text": "`{ lock: processLock }`" + }, + { + "kind": "text", + "text": "\nto it has no effect. You can safely drop the import from your client setup." + } + ] + }, { "tag": "@example", "content": [ @@ -154826,9 +157396,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 330, + "line": 325, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L325" } ], "typeParameters": [ @@ -154912,9 +157482,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 333, + "line": 328, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L328" } ], "signatures": [ @@ -154927,9 +157497,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 333, + "line": 328, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L328" } ], "type": { @@ -154982,8 +157552,8 @@ { "title": "Classes", "children": [ - 1741, 1723, 1846, 1829, 1959, 1813, 1904, 1875, 1920, 1797, 1759, 1938, 1777, 1, 139, - 720 + 1744, 1726, 1849, 1832, 1979, 1816, 1907, 1878, 1941, 1923, 1800, 1762, 1958, 1780, 1, + 136, 720 ] }, { @@ -155014,7 +157584,7 @@ }, { "title": "Functions", - "children": [1705, 1702, 1711, 1714, 1717, 1708, 1720, 712, 728] + "children": [1705, 1702, 1711, 1714, 1720, 1717, 1708, 1723, 712, 728] } ], "packageName": "@supabase/auth-js", @@ -155334,846 +157904,854 @@ "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.passkey" }, - "41": { + "38": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.signOut" }, - "42": { + "39": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.signOut" }, - "43": { + "40": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "jwt" }, - "44": { + "41": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "scope" }, - "45": { + "42": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "46": { + "43": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "47": { + "44": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.error" }, - "48": { + "45": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.inviteUserByEmail" }, - "49": { + "46": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.inviteUserByEmail" }, - "50": { + "47": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "email" }, - "51": { + "48": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "options" }, - "52": { + "49": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "53": { + "50": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "54": { + "51": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.redirectTo" }, - "55": { + "52": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.generateLink" }, - "56": { + "53": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.generateLink" }, - "57": { + "54": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "params" }, - "58": { + "55": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.createUser" }, - "59": { + "56": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.createUser" }, - "60": { + "57": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "attributes" }, - "61": { + "58": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.listUsers" }, - "62": { + "59": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.listUsers" }, - "63": { + "60": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "params" }, - "64": { + "61": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "65": { + "62": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "66": { + "63": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "67": { + "64": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.users" }, - "68": { + "65": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.aud" }, - "69": { + "66": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.error" }, - "70": { + "67": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "71": { + "68": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "72": { + "69": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "73": { + "70": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.users" }, - "74": { + "71": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.error" }, - "75": { + "72": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.getUserById" }, - "76": { + "73": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.getUserById" }, - "77": { + "74": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "uid" }, - "78": { + "75": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.updateUserById" }, - "79": { + "76": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.updateUserById" }, - "80": { + "77": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "uid" }, - "81": { + "78": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "attributes" }, - "82": { + "79": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.deleteUser" }, - "83": { + "80": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.deleteUser" }, - "84": { + "81": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "id" }, - "85": { + "82": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "shouldSoftDelete" }, - "139": { + "136": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default" }, - "141": { + "138": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.__constructor" }, - "142": { + "139": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default" }, - "143": { + "140": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "145": { + "142": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.admin" }, - "146": { + "143": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.mfa" }, - "147": { + "144": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.oauth" }, - "148": { + "145": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.passkey" }, - "215": { + "213": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.isThrowOnErrorEnabled" }, - "216": { + "214": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.isThrowOnErrorEnabled" }, - "228": { + "226": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.initialize" }, - "229": { + "227": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.initialize" }, - "232": { + "230": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInAnonymously" }, - "233": { + "231": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInAnonymously" }, - "234": { + "232": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "235": { + "233": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signUp" }, - "236": { + "234": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signUp" }, - "237": { + "235": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "238": { + "236": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithPassword" }, - "239": { + "237": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithPassword" }, - "240": { + "238": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "241": { + "239": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOAuth" }, - "242": { + "240": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOAuth" }, - "243": { + "241": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "244": { + "242": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.exchangeCodeForSession" }, - "245": { + "243": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.exchangeCodeForSession" }, - "246": { + "244": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "authCode" }, - "247": { + "245": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithWeb3" }, - "248": { + "246": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithWeb3" }, - "249": { + "247": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "250": { + "248": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "251": { + "249": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "252": { + "250": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "253": { + "251": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "254": { + "252": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.user" }, - "255": { + "253": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "256": { + "254": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "257": { + "255": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "258": { + "256": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "259": { + "257": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "260": { + "258": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.user" }, - "261": { + "259": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "300": { + "298": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithIdToken" }, - "301": { + "299": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithIdToken" }, - "302": { + "300": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "303": { + "301": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOtp" }, - "304": { + "302": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOtp" }, - "305": { + "303": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "306": { + "304": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.verifyOtp" }, - "307": { + "305": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.verifyOtp" }, - "308": { + "306": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "params" }, - "309": { + "307": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithSSO" }, - "310": { + "308": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithSSO" }, - "311": { + "309": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "params" }, - "312": { + "310": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.reauthenticate" }, - "313": { + "311": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.reauthenticate" }, - "316": { + "314": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resend" }, - "317": { + "315": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resend" }, - "318": { + "316": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "319": { + "317": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getSession" }, - "320": { + "318": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getSession" }, - "321": { + "319": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "322": { + "320": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "323": { + "321": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "324": { + "322": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "325": { + "323": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "326": { + "324": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "327": { + "325": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "328": { + "326": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "329": { + "327": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "330": { + "328": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "331": { + "329": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "332": { + "330": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "333": { + "331": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "334": { + "332": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "335": { + "333": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "382": { + "380": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUser" }, - "383": { + "381": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUser" }, - "384": { + "382": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "jwt" }, - "388": { + "386": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.updateUser" }, - "389": { + "387": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.updateUser" }, - "390": { + "388": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "attributes" }, - "391": { + "389": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "392": { + "390": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "393": { + "391": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.emailRedirectTo" }, - "400": { + "398": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.setSession" }, - "401": { + "399": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.setSession" }, - "402": { + "400": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "currentSession" }, - "403": { + "401": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "404": { + "402": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.access_token" }, - "405": { + "403": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.refresh_token" }, - "412": { + "410": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.refreshSession" }, - "413": { + "411": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.refreshSession" }, - "414": { + "412": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "currentSession" }, - "415": { + "413": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "416": { + "414": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.refresh_token" }, - "453": { + "451": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signOut" }, - "454": { + "452": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signOut" }, - "455": { + "453": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "456": { + "454": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "457": { + "455": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "463": { + "461": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.onAuthStateChange" }, - "464": { + "462": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.onAuthStateChange" }, - "465": { + "463": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "callback" }, - "466": { + "464": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "467": { + "465": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "468": { + "466": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "event" }, - "469": { + "467": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "session" }, - "470": { + "468": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "471": { + "469": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "472": { + "470": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "473": { + "471": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.subscription" }, - "474": { + "472": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.onAuthStateChange" }, - "475": { + "473": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "callback" }, - "476": { + "474": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "477": { + "475": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "478": { + "476": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "event" }, - "479": { + "477": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "session" }, - "480": { + "478": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "481": { + "479": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "482": { + "480": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "483": { + "481": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.subscription" }, - "487": { + "485": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resetPasswordForEmail" }, - "488": { + "486": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resetPasswordForEmail" }, - "489": { + "487": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "email" }, - "490": { + "488": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "491": { + "489": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "492": { + "490": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.redirectTo" }, - "493": { + "491": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.captchaToken" }, - "494": { + "492": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "495": { + "493": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "496": { + "494": { "sourceFileName": "", "qualifiedName": "__type" }, - "497": { + "495": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "498": { + "496": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "499": { + "497": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "500": { + "498": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "501": { + "499": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUserIdentities" }, - "502": { + "500": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUserIdentities" }, - "503": { + "501": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "504": { + "502": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "505": { + "503": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "506": { + "504": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.identities" }, - "507": { + "505": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "508": { + "506": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "509": { + "507": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "510": { + "508": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "511": { + "509": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.linkIdentity" }, - "512": { + "510": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.linkIdentity" }, - "513": { + "511": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "514": { + "512": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.linkIdentity" }, - "515": { + "513": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "522": { + "520": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.unlinkIdentity" }, - "523": { + "521": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.unlinkIdentity" }, - "524": { + "522": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "identity" }, - "525": { + "523": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "526": { + "524": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "527": { + "525": { "sourceFileName": "", "qualifiedName": "__type" }, - "528": { + "526": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "529": { + "527": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "530": { + "528": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "531": { + "529": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "577": { + "575": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.startAutoRefresh" }, - "578": { + "576": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.startAutoRefresh" }, - "579": { + "577": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.stopAutoRefresh" }, - "580": { + "578": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.stopAutoRefresh" }, + "579": { + "sourceFileName": "src/GoTrueClient.ts", + "qualifiedName": "default.dispose" + }, + "580": { + "sourceFileName": "src/GoTrueClient.ts", + "qualifiedName": "default.dispose" + }, "662": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getClaims" @@ -160296,11 +162874,11 @@ }, "1720": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "isAuthRefreshDiscardedError" }, "1721": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "isAuthRefreshDiscardedError" }, "1722": { "sourceFileName": "src/lib/errors.ts", @@ -160308,961 +162886,1037 @@ }, "1723": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "isAuthWeakPasswordError" }, "1724": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError.__constructor" + "qualifiedName": "isAuthWeakPasswordError" }, "1725": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "error" }, "1726": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "message" + "qualifiedName": "AuthError" }, "1727": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "status" + "qualifiedName": "AuthError.__constructor" }, "1728": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "code" + "qualifiedName": "AuthError" }, "1729": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError.code" + "qualifiedName": "message" }, "1730": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "status" + }, + "1731": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "code" + }, + "1732": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.code" + }, + "1733": { "sourceFileName": "", "qualifiedName": "__type" }, - "1731": { + "1734": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "1733": { + "1736": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1734": { + "1737": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1735": { + "1738": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1736": { + "1739": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1737": { + "1740": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1738": { + "1741": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1739": { + "1742": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1740": { + "1743": { "sourceFileName": "", "qualifiedName": "__type" }, - "1741": { + "1744": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError" }, - "1742": { + "1745": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError.__constructor" }, - "1743": { + "1746": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError" }, - "1744": { + "1747": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1745": { + "1748": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1746": { + "1749": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "code" }, - "1747": { + "1750": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError.status" }, - "1748": { + "1751": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1749": { + "1752": { "sourceFileName": "", "qualifiedName": "__type" }, - "1751": { + "1754": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1752": { + "1755": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1753": { + "1756": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1754": { + "1757": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1755": { + "1758": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1756": { + "1759": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1757": { + "1760": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1758": { + "1761": { "sourceFileName": "", "qualifiedName": "__type" }, - "1759": { + "1762": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "1760": { + "1763": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError.__constructor" }, - "1761": { + "1764": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "1762": { + "1765": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1763": { + "1766": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "originalError" }, - "1764": { + "1767": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError.originalError" }, - "1765": { + "1768": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1766": { + "1769": { "sourceFileName": "", "qualifiedName": "__type" }, - "1767": { + "1770": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "1769": { + "1772": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1770": { + "1773": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1771": { + "1774": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1772": { + "1775": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1773": { + "1776": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1774": { + "1777": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1775": { + "1778": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1776": { + "1779": { "sourceFileName": "", "qualifiedName": "__type" }, - "1777": { + "1780": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "1778": { + "1781": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.__constructor" }, - "1779": { + "1782": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "1780": { + "1783": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1781": { + "1784": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "name" }, - "1782": { + "1785": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1783": { + "1786": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "code" }, - "1784": { + "1787": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1785": { + "1788": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1786": { + "1789": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1787": { + "1790": { "sourceFileName": "", "qualifiedName": "__type" }, - "1789": { + "1792": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1790": { + "1793": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1791": { + "1794": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1792": { + "1795": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1793": { + "1796": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1794": { + "1797": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1795": { + "1798": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1796": { + "1799": { "sourceFileName": "", "qualifiedName": "__type" }, - "1797": { + "1800": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "1798": { + "1801": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError.__constructor" }, - "1799": { + "1802": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "1800": { + "1803": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1801": { + "1804": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1802": { + "1805": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1803": { + "1806": { "sourceFileName": "", "qualifiedName": "__type" }, - "1805": { + "1808": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1806": { + "1809": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1807": { + "1810": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1808": { + "1811": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1809": { + "1812": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1810": { + "1813": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1811": { + "1814": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1812": { + "1815": { "sourceFileName": "", "qualifiedName": "__type" }, - "1813": { + "1816": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "1814": { + "1817": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError.__constructor" }, - "1815": { + "1818": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "1816": { + "1819": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1817": { + "1820": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1818": { + "1821": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1819": { + "1822": { "sourceFileName": "", "qualifiedName": "__type" }, - "1821": { + "1824": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1822": { + "1825": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1823": { + "1826": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1824": { + "1827": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1825": { + "1828": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1826": { + "1829": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1827": { + "1830": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1828": { + "1831": { "sourceFileName": "", "qualifiedName": "__type" }, - "1829": { + "1832": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "1830": { + "1833": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError.__constructor" }, - "1831": { + "1834": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "1832": { + "1835": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1833": { + "1836": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1834": { + "1837": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1835": { + "1838": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1836": { + "1839": { "sourceFileName": "", "qualifiedName": "__type" }, - "1838": { + "1841": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1839": { + "1842": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1840": { + "1843": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1841": { + "1844": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1842": { + "1845": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1843": { + "1846": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1844": { + "1847": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1845": { + "1848": { "sourceFileName": "", "qualifiedName": "__type" }, - "1846": { + "1849": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "1847": { + "1850": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.__constructor" }, - "1848": { + "1851": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "1849": { + "1852": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1850": { + "1853": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "details" }, - "1851": { + "1854": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1852": { + "1855": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1853": { + "1856": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1854": { + "1857": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.details" }, - "1855": { + "1858": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1856": { + "1859": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1857": { + "1860": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1858": { + "1861": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "1859": { + "1862": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "1860": { + "1863": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1861": { + "1864": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1862": { + "1865": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1863": { + "1866": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1864": { + "1867": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1865": { + "1868": { "sourceFileName": "", "qualifiedName": "__type" }, - "1866": { + "1869": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.details" }, - "1867": { + "1870": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1868": { + "1871": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1869": { + "1872": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1870": { + "1873": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1871": { + "1874": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1872": { + "1875": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1873": { + "1876": { "sourceFileName": "", "qualifiedName": "__type" }, - "1875": { + "1878": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "1876": { + "1879": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor" }, - "1877": { + "1880": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "1878": { + "1881": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1879": { + "1882": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "details" }, - "1880": { + "1883": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1881": { + "1884": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1882": { + "1885": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1883": { + "1886": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.details" }, - "1884": { + "1887": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1885": { + "1888": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1886": { + "1889": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1887": { + "1890": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "1888": { + "1891": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "1889": { + "1892": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1890": { + "1893": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1891": { + "1894": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1892": { + "1895": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1893": { + "1896": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1894": { + "1897": { "sourceFileName": "", "qualifiedName": "__type" }, - "1895": { + "1898": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.details" }, - "1896": { + "1899": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1897": { + "1900": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1898": { + "1901": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1899": { + "1902": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1900": { + "1903": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1901": { + "1904": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1902": { + "1905": { "sourceFileName": "", "qualifiedName": "__type" }, - "1904": { + "1907": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "1905": { + "1908": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor" }, - "1906": { + "1909": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "1907": { + "1910": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1908": { + "1911": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1909": { + "1912": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1910": { + "1913": { "sourceFileName": "", "qualifiedName": "__type" }, - "1912": { + "1915": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1913": { + "1916": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1914": { + "1917": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1915": { + "1918": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1916": { + "1919": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1917": { + "1920": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1918": { + "1921": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1919": { + "1922": { "sourceFileName": "", "qualifiedName": "__type" }, - "1920": { + "1923": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "1921": { + "1924": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError.__constructor" }, - "1922": { + "1925": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "1923": { + "1926": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1924": { + "1927": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1925": { + "1928": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1926": { + "1929": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1927": { + "1930": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1928": { + "1931": { "sourceFileName": "", "qualifiedName": "__type" }, - "1930": { + "1933": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1931": { + "1934": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1932": { + "1935": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1933": { + "1936": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1934": { + "1937": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1935": { + "1938": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1936": { + "1939": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1937": { + "1940": { "sourceFileName": "", "qualifiedName": "__type" }, - "1938": { + "1941": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "1942": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError.__constructor" + }, + "1943": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "1944": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "message" + }, + "1945": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "CustomAuthError.name" + }, + "1946": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "CustomAuthError.status" + }, + "1947": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.code" + }, + "1948": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "1950": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "1951": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "1952": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type" + }, + "1953": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.name" + }, + "1954": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.message" + }, + "1955": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.status" + }, + "1956": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.code" + }, + "1957": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "1958": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "1939": { + "1959": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.__constructor" }, - "1940": { + "1960": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "1941": { + "1961": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1942": { + "1962": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1943": { + "1963": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "reasons" }, - "1944": { + "1964": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.reasons" }, - "1945": { + "1965": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "1946": { + "1966": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "1947": { + "1967": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1948": { + "1968": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1949": { + "1969": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1950": { + "1970": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1951": { + "1971": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1952": { + "1972": { "sourceFileName": "", "qualifiedName": "__type" }, - "1953": { + "1973": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.reasons" }, - "1954": { + "1974": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1955": { + "1975": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1956": { + "1976": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1957": { + "1977": { "sourceFileName": "", "qualifiedName": "__type" }, - "1959": { + "1979": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "1960": { + "1980": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError.__constructor" }, - "1961": { + "1981": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "1962": { + "1982": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1963": { + "1983": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1964": { + "1984": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1965": { + "1985": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1966": { + "1986": { "sourceFileName": "", "qualifiedName": "__type" }, - "1968": { + "1988": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1969": { + "1989": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1970": { + "1990": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1971": { + "1991": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1972": { + "1992": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1973": { + "1993": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1974": { + "1994": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1975": { + "1995": { "sourceFileName": "", "qualifiedName": "__type" } @@ -161302,9 +163956,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "signatures": [ @@ -161356,9 +164010,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "typeParameters": [ @@ -161425,9 +164079,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 120, + "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -161446,9 +164100,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 123, + "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -161673,9 +164327,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 118, + "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -161699,9 +164353,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 124, + "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -161718,9 +164372,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 116, + "line": 114, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L114" } ], "type": { @@ -161760,9 +164414,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 128, + "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -161781,9 +164435,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 119, + "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -161802,9 +164456,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 125, + "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -161823,9 +164477,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 121, + "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -161844,9 +164498,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 122, + "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -161868,9 +164522,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 117, + "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "type": { @@ -161894,9 +164548,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 126, + "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -161916,9 +164570,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ] } @@ -161973,9 +164627,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 81, + "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -161994,9 +164648,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 84, + "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -162223,9 +164877,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 79, + "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -162249,9 +164903,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 85, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -162270,9 +164924,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 77, + "line": 75, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L75" } ], "type": { @@ -162312,9 +164966,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 90, + "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88" } ], "type": { @@ -162335,9 +164989,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 80, + "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -162356,9 +165010,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 86, + "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -162377,9 +165031,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 82, + "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -162400,9 +165054,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 83, + "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -162426,9 +165080,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 78, + "line": 76, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L76" } ], "type": { @@ -162452,9 +165106,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 87, + "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -162471,9 +165125,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "signatures": [ @@ -162642,9 +165296,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "typeParameters": [ @@ -162697,9 +165351,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -162717,9 +165371,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -162742,9 +165396,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -162762,9 +165416,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -162987,9 +165641,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "signatures": [ @@ -163025,9 +165679,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "parameters": [ @@ -163067,9 +165721,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 557, + "line": 565, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L557" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L565" } ], "signatures": [ @@ -163118,9 +165772,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 557, + "line": 565, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L557" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L565" } ], "typeParameters": [ @@ -163203,9 +165857,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "signatures": [ @@ -163237,9 +165891,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "parameters": [ @@ -163282,9 +165936,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "signatures": [ @@ -163391,9 +166045,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "type": { @@ -163412,9 +166066,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "signatures": [ @@ -163446,9 +166100,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "typeParameters": [ @@ -163553,9 +166207,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "signatures": [ @@ -163568,9 +166222,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "parameters": [ @@ -163700,9 +166354,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "signatures": [ @@ -163715,9 +166369,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "parameters": [ @@ -163823,9 +166477,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "signatures": [ @@ -163863,9 +166517,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "type": { @@ -163972,7 +166626,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 68, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" } ], "typeParameters": [ @@ -164106,7 +166760,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "signatures": [ @@ -164185,7 +166839,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "typeParameters": [ @@ -164242,7 +166896,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -164268,7 +166922,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -164522,7 +167176,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L98" } ], "type": { @@ -164759,7 +167413,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 96, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L96" } ], "type": { @@ -164802,7 +167456,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 101, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L101" } ], "type": { @@ -164831,7 +167485,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L97" } ], "type": { @@ -164864,7 +167518,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L99" } ], "type": { @@ -164893,7 +167547,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L100" } ], "type": { @@ -164914,7 +167568,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 95, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L95" } ] } @@ -164979,7 +167633,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L40" } ], "type": { @@ -165206,7 +167860,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L38" } ], "type": { @@ -165232,7 +167886,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L44" } ], "type": { @@ -165253,7 +167907,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L39" } ], "type": { @@ -165276,7 +167930,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L37" } ], "type": { @@ -165295,7 +167949,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 41, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L41" } ], "type": { @@ -165343,19 +167997,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L152" }, { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L156" }, { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 166, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L166" } ], "signatures": [ @@ -165370,7 +168024,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L152" } ], "typeParameters": [ @@ -165469,7 +168123,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L156" } ], "typeParameters": [ @@ -165570,7 +168224,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "signatures": [ @@ -165811,7 +168465,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "typeParameters": [ @@ -166037,7 +168691,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 392, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L392" } ], "type": { @@ -166106,7 +168760,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 391, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L391" } ], "type": { @@ -166152,7 +168806,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 390, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L390" } ], "type": { @@ -166173,7 +168827,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 389, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L389" } ] } @@ -166280,7 +168934,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "signatures": [ @@ -166314,7 +168968,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "typeParameters": [ @@ -166464,7 +169118,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 16, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L16" } ], "typeParameters": [ @@ -166529,7 +169183,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -166555,7 +169209,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -166583,7 +169237,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 22, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L22" } ] } @@ -166835,7 +169489,127 @@ "summary": [ { "kind": "text", - "text": "Error format\n\n" + "text": "Error format\n\nReturned by every PostgREST request that fails. When something fails, the\nsingle most useful field is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — Postgres often returns the\nactionable fix there, not in " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": ". Always log the full object (e.g.\n" + }, + { + "kind": "code", + "text": "`console.error(error)`" + }, + { + "kind": "text", + "text": "); logging only " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": " hides the hint.\n\nRead the fields in roughly this order of usefulness:\n\n- " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — actionable guidance from the database when available. For\n permission-denied errors (" + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "), this is the literal SQL to fix the\n problem, e.g.\n " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.users TO anon;\"`" + }, + { + "kind": "text", + "text": ".\n Missing column? " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " suggests the column you probably meant. Whenever\n Postgres knows the fix, it puts it in " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": ".\n- " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": " — stable error code from PostgREST (e.g. " + }, + { + "kind": "code", + "text": "`PGRST301`" + }, + { + "kind": "text", + "text": ") or Postgres\n (e.g. " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "). Branch on this rather than on " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " text.\n- " + }, + { + "kind": "code", + "text": "`details`" + }, + { + "kind": "text", + "text": " — extra context, often the offending value, key, or row.\n- " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " — human-readable summary. Useful in UI strings; less useful\n for debugging.\n\n" }, { "kind": "inline-tag", @@ -166855,9 +169629,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "signatures": [ @@ -166884,9 +169658,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "parameters": [ @@ -166914,9 +169688,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 73, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -166933,9 +169707,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -166952,9 +169726,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -166971,9 +169745,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -166991,9 +169765,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ] } @@ -167029,9 +169803,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 9, + "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L28" } ], "type": { @@ -167048,9 +169822,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 7, + "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L26" } ], "type": { @@ -167067,9 +169841,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 8, + "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L27" } ], "type": { @@ -167086,9 +169860,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "signatures": [ @@ -167101,9 +169875,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -167124,9 +169898,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -167143,9 +169917,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -167162,9 +169936,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 62, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -167181,9 +169955,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -167200,9 +169974,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -167220,9 +169994,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ] } @@ -167248,9 +170022,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 6, + "line": 25, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L25" } ], "extendedTypes": [ @@ -167281,9 +170055,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "signatures": [ @@ -167335,9 +170109,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "typeParameters": [ @@ -167464,9 +170238,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 120, + "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -167485,9 +170259,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 123, + "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -167712,9 +170486,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 118, + "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -167738,9 +170512,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 124, + "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -167757,9 +170531,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 116, + "line": 114, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L114" } ], "type": { @@ -167799,9 +170573,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 128, + "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -167820,9 +170594,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 119, + "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -167841,9 +170615,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 125, + "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -167862,9 +170636,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 121, + "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -167883,9 +170657,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 122, + "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -167907,9 +170681,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 117, + "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "type": { @@ -167933,9 +170707,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 126, + "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -167955,9 +170729,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ] } @@ -168055,9 +170829,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 81, + "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -168082,9 +170856,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 84, + "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -168317,9 +171091,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 79, + "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -168349,9 +171123,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 85, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -168376,9 +171150,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 77, + "line": 75, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L75" } ], "type": { @@ -168424,9 +171198,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 90, + "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88" } ], "type": { @@ -168453,9 +171227,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 80, + "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -168480,9 +171254,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 86, + "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -168507,9 +171281,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 82, + "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -168536,9 +171310,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 83, + "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -168568,9 +171342,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 78, + "line": 76, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L76" } ], "type": { @@ -168600,9 +171374,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 87, + "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -168628,7 +171402,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "signatures": [ @@ -168761,7 +171535,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "parameters": [ @@ -169015,19 +171789,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1003, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1007, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1138" } ], "signatures": [ @@ -169042,7 +171816,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1003, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" } ], "typeParameters": [ @@ -169150,7 +171924,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1007, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" } ], "parameters": [ @@ -169427,19 +172201,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 854, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 858, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L988" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L988" } ], "signatures": [ @@ -169454,7 +172228,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 854, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" } ], "typeParameters": [ @@ -169562,7 +172336,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 858, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" } ], "parameters": [ @@ -169644,7 +172418,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "signatures": [ @@ -169742,7 +172516,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "type": { @@ -169790,7 +172564,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" } ], "signatures": [ @@ -169917,7 +172691,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" } ], "typeParameters": [ @@ -170250,7 +173024,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "signatures": [ @@ -170409,7 +173183,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "parameters": [ @@ -170465,7 +173239,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 859, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" } ], "type": { @@ -170503,7 +173277,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 862, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" } ], "type": { @@ -170545,7 +173319,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 864, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" } ], "type": { @@ -170592,7 +173366,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 861, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" } ], "type": { @@ -170638,7 +173412,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 860, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" } ], "type": { @@ -170676,7 +173450,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 863, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" } ], "type": { @@ -170697,7 +173471,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 858, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" } ] } @@ -170977,19 +173751,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2017, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2022, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2136" } ], "signatures": [ @@ -171004,7 +173778,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2017, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" } ], "typeParameters": [ @@ -171184,7 +173958,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2022, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" } ], "parameters": [ @@ -171242,7 +174016,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "signatures": [ @@ -171286,7 +174060,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "type": { @@ -171486,19 +174260,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" } ], "signatures": [ @@ -171513,7 +174287,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" } ], "typeParameters": [ @@ -171586,7 +174360,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" } ], "parameters": [ @@ -171747,19 +174521,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L350" } ], "signatures": [ @@ -171774,7 +174548,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" } ], "typeParameters": [ @@ -171847,7 +174621,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" } ], "parameters": [ @@ -172008,19 +174782,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 596, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L596" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L596" } ], "signatures": [ @@ -172035,7 +174809,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" } ], "typeParameters": [ @@ -172094,7 +174868,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" } ], "parameters": [ @@ -172203,19 +174977,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 601, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 615, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L615" } ], "signatures": [ @@ -172230,7 +175004,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 601, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" } ], "typeParameters": [ @@ -172296,7 +175070,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" } ], "parameters": [ @@ -172412,19 +175186,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 620, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 634, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L634" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L634" } ], "signatures": [ @@ -172439,7 +175213,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 620, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" } ], "typeParameters": [ @@ -172505,7 +175279,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "parameters": [ @@ -172557,7 +175331,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 801, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" } ], "signatures": [ @@ -172668,7 +175442,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 801, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" } ], "typeParameters": [ @@ -173043,19 +175817,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 671, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L726" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L726" } ], "signatures": [ @@ -173070,7 +175844,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" } ], "typeParameters": [ @@ -173161,7 +175935,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 671, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" } ], "parameters": [ @@ -173215,7 +175989,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" } ], "signatures": [ @@ -173286,7 +176060,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" } ], "typeParameters": [ @@ -173581,19 +176355,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 462, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507" } ], "signatures": [ @@ -173608,7 +176382,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" } ], "typeParameters": [ @@ -173667,7 +176441,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 462, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" } ], "parameters": [ @@ -173776,19 +176550,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 526, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L526" } ], "signatures": [ @@ -173803,7 +176577,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" } ], "typeParameters": [ @@ -173869,7 +176643,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" } ], "parameters": [ @@ -173985,19 +176759,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 535, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 545, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L545" } ], "signatures": [ @@ -174012,7 +176786,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" } ], "typeParameters": [ @@ -174078,7 +176852,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 535, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" } ], "parameters": [ @@ -174132,7 +176906,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "signatures": [ @@ -174273,7 +177047,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "parameters": [ @@ -174348,7 +177122,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -174377,7 +177151,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -174398,7 +177172,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ] } @@ -174550,19 +177324,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 401, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L401" } ], "signatures": [ @@ -174577,7 +177351,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" } ], "typeParameters": [ @@ -174650,7 +177424,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" } ], "parameters": [ @@ -174811,19 +177585,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 407, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L456" } ], "signatures": [ @@ -174838,7 +177612,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" } ], "typeParameters": [ @@ -174911,7 +177685,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 407, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" } ], "parameters": [ @@ -175062,19 +177836,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1709, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1754, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1754" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1754" } ], "signatures": [ @@ -175089,7 +177863,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" } ], "typeParameters": [ @@ -175166,7 +177940,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1709, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" } ], "parameters": [ @@ -175217,7 +177991,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "signatures": [ @@ -175253,7 +178027,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "parameters": [ @@ -175459,7 +178233,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "signatures": [ @@ -175572,7 +178346,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "typeParameters": [ @@ -175679,7 +178453,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" } ], "signatures": [ @@ -175814,7 +178588,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" } ], "typeParameters": [ @@ -176267,25 +179041,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1765, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1779, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1844, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1844" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1844" } ], "signatures": [ @@ -176300,7 +179074,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1765, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" } ], "typeParameters": [ @@ -176537,7 +179311,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1779, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" } ], "typeParameters": [ @@ -176626,7 +179400,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" } ], "parameters": [ @@ -176682,7 +179456,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 832, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" } ], "signatures": [ @@ -176721,7 +179495,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 832, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" } ], "typeParameters": [ @@ -176907,7 +179681,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2005, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" } ], "signatures": [ @@ -177151,7 +179925,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2005, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" } ], "parameters": [ @@ -177226,7 +180000,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2010, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" } ], "type": { @@ -177255,7 +180029,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2010, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" } ], "type": { @@ -177276,7 +180050,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2010, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" } ] } @@ -177614,31 +180388,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ @@ -177655,7 +180429,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" } ], "typeParameters": [ @@ -177716,7 +180490,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -177737,7 +180511,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -177758,7 +180532,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -177778,7 +180552,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ] } @@ -177808,7 +180582,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "parameters": [ @@ -177853,7 +180627,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -177874,7 +180648,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -177895,7 +180669,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -177915,7 +180689,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ] } @@ -177971,7 +180745,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" } ], "typeParameters": [ @@ -178032,7 +180806,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -178053,7 +180827,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -178074,7 +180848,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -178094,7 +180868,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ] } @@ -178150,7 +180924,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" } ], "parameters": [ @@ -178195,7 +180969,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -178216,7 +180990,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -178237,7 +181011,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -178257,7 +181031,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ] } @@ -178437,19 +181211,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1565, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1565" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1565" } ], "signatures": [ @@ -178464,7 +181238,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" } ], "typeParameters": [ @@ -178553,7 +181327,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" } ], "parameters": [ @@ -178614,9 +181388,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "signatures": [ @@ -178787,9 +181561,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "typeParameters": [ @@ -178842,9 +181616,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -178862,9 +181636,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -178887,9 +181661,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -178907,9 +181681,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -179142,7 +181916,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "signatures": [ @@ -179279,7 +182053,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "parameters": [ @@ -179373,7 +182147,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -179402,7 +182176,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -179423,7 +182197,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ] } @@ -179592,19 +182366,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1463" } ], "signatures": [ @@ -179619,7 +182393,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" } ], "typeParameters": [ @@ -179678,7 +182452,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" } ], "parameters": [ @@ -179856,19 +182630,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1210" } ], "signatures": [ @@ -179883,7 +182657,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" } ], "typeParameters": [ @@ -179942,7 +182716,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" } ], "parameters": [ @@ -180128,19 +182902,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1274" } ], "signatures": [ @@ -180155,7 +182929,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" } ], "typeParameters": [ @@ -180214,7 +182988,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" } ], "parameters": [ @@ -180392,19 +183166,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1336" } ], "signatures": [ @@ -180419,7 +183193,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" } ], "typeParameters": [ @@ -180478,7 +183252,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" } ], "parameters": [ @@ -180664,19 +183438,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1400, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1400" } ], "signatures": [ @@ -180691,7 +183465,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" } ], "typeParameters": [ @@ -180750,7 +183524,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" } ], "parameters": [ @@ -180849,19 +183623,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 654, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 662, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L662" } ], "signatures": [ @@ -180876,7 +183650,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" } ], "typeParameters": [ @@ -180935,7 +183709,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 654, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" } ], "parameters": [ @@ -181034,19 +183808,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 640, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 648, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L648" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L648" } ], "signatures": [ @@ -181061,7 +183835,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" } ], "typeParameters": [ @@ -181120,7 +183894,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 640, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" } ], "parameters": [ @@ -181165,9 +183939,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "signatures": [ @@ -181205,9 +183979,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "parameters": [ @@ -181261,7 +184035,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "signatures": [ @@ -181378,7 +184152,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "typeParameters": [ @@ -181507,7 +184281,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "signatures": [ @@ -181551,7 +184325,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "type": { @@ -181584,7 +184358,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "signatures": [ @@ -181721,7 +184495,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "typeParameters": [ @@ -181970,9 +184744,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "signatures": [ @@ -182006,9 +184780,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "parameters": [ @@ -182065,7 +184839,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "signatures": [ @@ -182178,7 +184952,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "typeParameters": [ @@ -182276,9 +185050,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "signatures": [ @@ -182387,9 +185161,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "type": { @@ -182688,19 +185462,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1576, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1581, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1690, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1690" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1690" } ], "signatures": [ @@ -182715,7 +185489,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1576, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" } ], "typeParameters": [ @@ -182787,7 +185561,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1579, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" } ], "type": { @@ -182808,7 +185582,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1579, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" } ], "type": { @@ -182841,7 +185615,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1579, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" } ] } @@ -182864,7 +185638,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1581, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" } ], "parameters": [ @@ -182920,7 +185694,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1584, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" } ], "type": { @@ -182941,7 +185715,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1584, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" } ], "type": { @@ -182974,7 +185748,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1584, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" } ] } @@ -182999,9 +185773,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "signatures": [ @@ -183035,9 +185809,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "typeParameters": [ @@ -183111,9 +185885,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "signatures": [ @@ -183126,9 +185900,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "parameters": [ @@ -183227,9 +186001,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "signatures": [ @@ -183242,9 +186016,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "parameters": [ @@ -183352,9 +186126,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "signatures": [ @@ -183394,9 +186168,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "type": { @@ -183555,7 +186329,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 95, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" } ], "typeParameters": [ @@ -183740,7 +186514,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "signatures": [ @@ -183794,7 +186568,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "typeParameters": [ @@ -183904,7 +186678,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -183930,7 +186704,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -184021,7 +186795,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "type": { @@ -184258,7 +187032,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 74, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" } ], "type": { @@ -184293,7 +187067,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 78, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" } ], "type": { @@ -184322,7 +187096,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" } ], "type": { @@ -184351,7 +187125,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 77, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" } ], "type": { @@ -184372,7 +187146,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 73, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" } ] } @@ -184444,7 +187218,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" } ], "type": { @@ -184671,7 +187445,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" } ], "type": { @@ -184713,7 +187487,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" } ], "type": { @@ -184734,7 +187508,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" } ], "type": { @@ -184755,7 +187529,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" } ], "type": { @@ -184779,7 +187553,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" } ], "type": { @@ -184803,7 +187577,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" } ], "type": { @@ -184820,9 +187594,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1673, + "line": 1736, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1673" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1736" } ], "signatures": [ @@ -184950,6 +187724,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT DELETE ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').delete().eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Delete a record and return it", @@ -185027,9 +187860,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1673, + "line": 1736, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1673" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1736" } ], "parameters": [ @@ -185107,9 +187940,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1676, + "line": 1739, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1676" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1739" } ], "type": { @@ -185159,9 +187992,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1675, + "line": 1738, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1675" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1738" } ] } @@ -185245,9 +188078,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1050, + "line": 1086, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1050" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" } ], "signatures": [ @@ -185318,6 +188151,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').insert({ id: 1, name: 'Mordor' })\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Create a record and return it", @@ -185404,9 +188296,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1050, + "line": 1086, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1050" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" } ], "typeParameters": [ @@ -185490,9 +188382,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1053, + "line": 1089, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1089" } ], "type": { @@ -185510,9 +188402,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1053, + "line": 1089, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1089" } ] } @@ -185595,9 +188487,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1057, + "line": 1093, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1093" } ], "type": { @@ -185615,9 +188507,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1057, + "line": 1093, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1093" } ] } @@ -185741,9 +188633,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1064, + "line": 1100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1064" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1100" } ], "type": { @@ -185810,9 +188702,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1065, + "line": 1101, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1065" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1101" } ], "type": { @@ -185831,9 +188723,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1063, + "line": 1099, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1063" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1099" } ] } @@ -185917,9 +188809,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 878, + "line": 905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L905" } ], "signatures": [ @@ -186055,6 +188947,86 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nThe most useful field on a Postgres error is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — when the database knows the fix, it puts the literal SQL there. For example, a permission-denied error (" + }, + { + "kind": "code", + "text": "`code: '42501'`" + }, + { + "kind": "text", + "text": ") arrives with a " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " like " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\"`" + }, + { + "kind": "text", + "text": ". Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so the hint isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('characters').select()\nif (error) {\n // Logs the full error: message, code, details, and hint.\n console.error(error)\n return\n}\n```" + } + ] + }, + { + "tag": "@exampleResponse", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "```json\n{\n \"error\": {\n \"code\": \"42501\",\n \"details\": null,\n \"hint\": \"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\",\n \"message\": \"permission denied for table characters\"\n },\n \"status\": 401,\n \"statusText\": \"Unauthorized\"\n}\n```" + } + ] + }, { "tag": "@example", "name": "Selecting specific columns", @@ -186634,9 +189606,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 878, + "line": 905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L905" } ], "typeParameters": [ @@ -186830,9 +189802,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 892, + "line": 919, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L919" } ], "type": { @@ -186907,9 +189879,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 891, + "line": 918, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L918" } ], "type": { @@ -186927,9 +189899,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 890, + "line": 917, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L890" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L917" } ] } @@ -187018,9 +189990,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1517, + "line": 1571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1571" } ], "signatures": [ @@ -187108,6 +190080,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('instruments').update({ name: 'piano' }).eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Update a record and return it", @@ -187194,9 +190225,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1517, + "line": 1571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1571" } ], "typeParameters": [ @@ -187277,9 +190308,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1519, + "line": 1573, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1573" } ], "type": { @@ -187297,9 +190328,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1519, + "line": 1573, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1573" } ] } @@ -187420,9 +190451,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1525, + "line": 1579, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1525" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1579" } ], "type": { @@ -187472,9 +190503,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1524, + "line": 1578, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1578" } ] } @@ -187558,9 +190589,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1315, + "line": 1360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1360" } ], "signatures": [ @@ -187708,6 +190739,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT, UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('instruments').upsert({ id: 1, name: 'piano' }).select()\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Bulk Upsert your data", @@ -187858,9 +190948,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1315, + "line": 1360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1360" } ], "typeParameters": [ @@ -187944,9 +191034,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1318, + "line": 1363, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1318" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1363" } ], "type": { @@ -187964,9 +191054,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1318, + "line": 1363, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1318" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1363" } ] } @@ -188049,9 +191139,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1322, + "line": 1367, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1367" } ], "type": { @@ -188069,9 +191159,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1322, + "line": 1367, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1367" } ] } @@ -188195,9 +191285,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1333, + "line": 1378, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1378" } ], "type": { @@ -188272,9 +191362,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1334, + "line": 1379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1334" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1379" } ], "type": { @@ -188318,9 +191408,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1332, + "line": 1377, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1377" } ], "type": { @@ -188356,9 +191446,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1331, + "line": 1376, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1376" } ], "type": { @@ -188376,9 +191466,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1330, + "line": 1375, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1375" } ] } @@ -188483,7 +191573,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 12, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" } ], "typeParameters": [ @@ -188593,7 +191683,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -188613,7 +191703,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -188652,9 +191742,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "signatures": [ @@ -188706,9 +191796,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "typeParameters": [ @@ -188835,9 +191925,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 120, + "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -188856,9 +191946,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 123, + "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -189083,9 +192173,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 118, + "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -189109,9 +192199,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 124, + "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -189128,9 +192218,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 116, + "line": 114, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L114" } ], "type": { @@ -189170,9 +192260,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 128, + "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -189191,9 +192281,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 119, + "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -189212,9 +192302,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 125, + "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -189233,9 +192323,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 121, + "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -189254,9 +192344,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 122, + "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -189278,9 +192368,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 117, + "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "type": { @@ -189304,9 +192394,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 126, + "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -189326,9 +192416,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ] } @@ -189426,9 +192516,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 81, + "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -189453,9 +192543,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 84, + "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -189688,9 +192778,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 79, + "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -189720,9 +192810,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 85, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -189747,9 +192837,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 77, + "line": 75, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L75" } ], "type": { @@ -189795,9 +192885,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 90, + "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88" } ], "type": { @@ -189824,9 +192914,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 80, + "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -189851,9 +192941,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 86, + "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -189878,9 +192968,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 82, + "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -189907,9 +192997,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 83, + "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -189939,9 +193029,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 78, + "line": 76, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L76" } ], "type": { @@ -189971,9 +193061,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 87, + "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -189997,7 +193087,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "signatures": [ @@ -190128,7 +193218,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "parameters": [ @@ -190175,7 +193265,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "signatures": [ @@ -190271,7 +193361,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "type": { @@ -190309,7 +193399,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "signatures": [ @@ -190466,7 +193556,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "parameters": [ @@ -190522,7 +193612,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 859, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" } ], "type": { @@ -190560,7 +193650,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 862, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" } ], "type": { @@ -190602,7 +193692,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 864, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" } ], "type": { @@ -190649,7 +193739,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 861, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" } ], "type": { @@ -190695,7 +193785,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 860, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" } ], "type": { @@ -190733,7 +193823,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 863, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" } ], "type": { @@ -190754,7 +193844,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 858, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" } ] } @@ -190849,7 +193939,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "signatures": [ @@ -190891,7 +193981,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "type": { @@ -190944,7 +194034,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "signatures": [ @@ -191083,7 +194173,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "parameters": [ @@ -191158,7 +194248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -191187,7 +194277,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -191208,7 +194298,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ] } @@ -191234,7 +194324,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "signatures": [ @@ -191268,7 +194358,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "parameters": [ @@ -191462,7 +194552,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "signatures": [ @@ -191573,7 +194663,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "typeParameters": [ @@ -191980,31 +195070,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ @@ -192019,7 +195109,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" } ], "typeParameters": [ @@ -192080,7 +195170,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -192101,7 +195191,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -192122,7 +195212,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -192142,7 +195232,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ] } @@ -192165,7 +195255,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "parameters": [ @@ -192210,7 +195300,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -192231,7 +195321,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -192252,7 +195342,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -192272,7 +195362,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ] } @@ -192321,7 +195411,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" } ], "typeParameters": [ @@ -192382,7 +195472,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -192403,7 +195493,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -192424,7 +195514,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -192444,7 +195534,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ] } @@ -192493,7 +195583,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" } ], "parameters": [ @@ -192538,7 +195628,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -192559,7 +195649,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -192580,7 +195670,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -192600,7 +195690,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ] } @@ -192625,9 +195715,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "signatures": [ @@ -192798,9 +195888,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "typeParameters": [ @@ -192853,9 +195943,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -192873,9 +195963,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -192898,9 +195988,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -192918,9 +196008,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -193151,7 +196241,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "signatures": [ @@ -193286,7 +196376,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "parameters": [ @@ -193380,7 +196470,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -193409,7 +196499,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -193430,7 +196520,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ] } @@ -193456,9 +196546,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "signatures": [ @@ -193496,9 +196586,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "parameters": [ @@ -193550,7 +196640,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "signatures": [ @@ -193665,7 +196755,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "typeParameters": [ @@ -193792,7 +196882,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "signatures": [ @@ -193834,7 +196924,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "type": { @@ -193855,7 +196945,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "signatures": [ @@ -193990,7 +197080,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "typeParameters": [ @@ -194229,9 +197319,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "signatures": [ @@ -194265,9 +197355,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "parameters": [ @@ -194322,7 +197412,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "signatures": [ @@ -194433,7 +197523,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "typeParameters": [ @@ -194521,9 +197611,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "signatures": [ @@ -194632,9 +197722,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "type": { @@ -194665,9 +197755,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "signatures": [ @@ -194701,9 +197791,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "typeParameters": [ @@ -194777,9 +197867,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "signatures": [ @@ -194792,9 +197882,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "parameters": [ @@ -194893,9 +197983,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "signatures": [ @@ -194908,9 +197998,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "parameters": [ @@ -195018,9 +198108,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "signatures": [ @@ -195060,9 +198150,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "type": { @@ -195217,7 +198307,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" } ], "typeParameters": [ @@ -195369,7 +198459,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L25" } ], "type": { @@ -195388,7 +198478,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L24" } ], "type": { @@ -195407,7 +198497,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L23" } ], "type": { @@ -195431,7 +198521,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -195457,7 +198547,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -195481,7 +198571,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L22" } ], "type": { @@ -195501,7 +198591,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 21, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L21" } ], "extendedTypes": [ @@ -195534,7 +198624,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L19" } ], "type": { @@ -195562,7 +198652,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L18" } ], "type": { @@ -195585,7 +198675,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L17" } ], "type": { @@ -195606,7 +198696,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -195632,7 +198722,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -195656,7 +198746,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L16" } ], "type": { @@ -195676,7 +198766,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 15, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L15" } ], "typeParameters": [ @@ -195711,7 +198801,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/common/common.ts#L81" } ], "type": { @@ -195736,7 +198826,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/common/common.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/common/common.ts#L82" } ], "type": { @@ -195756,7 +198846,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/common/common.ts#L81" } ] } @@ -195773,7 +198863,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L32" } ], "typeParameters": [ @@ -195821,7 +198911,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 33, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L33" } ], "typeParameters": [ @@ -195863,7 +198953,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L31" } ], "typeParameters": [ @@ -195921,7 +199011,7 @@ "fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" } ], "typeParameters": [ @@ -196506,7 +199596,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L16" } ], "type": { @@ -196529,7 +199619,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L21" } ], "type": { @@ -196553,7 +199643,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L17" } ], "type": { @@ -196577,7 +199667,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L22" } ], "type": { @@ -196601,7 +199691,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L19" } ], "type": { @@ -196625,7 +199715,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L18" } ], "type": { @@ -196649,7 +199739,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L20" } ], "type": { @@ -196674,7 +199764,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L16" } ] } @@ -200548,7 +203638,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L138" } ], "type": { @@ -200567,7 +203657,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L140" } ], "type": { @@ -200586,7 +203676,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L139" } ], "type": { @@ -200605,7 +203695,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L141" } ], "type": { @@ -200625,7 +203715,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 137, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L137" } ] }, @@ -200647,7 +203737,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L131" } ], "type": { @@ -200666,7 +203756,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L134" } ], "type": { @@ -200685,7 +203775,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L132" } ], "type": { @@ -200704,7 +203794,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L133" } ], "type": { @@ -200724,7 +203814,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 130, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L130" } ] }, @@ -200746,7 +203836,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L33" } ], "type": { @@ -200765,7 +203855,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L34" } ], "type": { @@ -200784,7 +203874,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L32" } ], "type": { @@ -200804,7 +203894,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L31" } ] }, @@ -200826,7 +203916,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L148" } ], "type": { @@ -200845,7 +203935,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 147, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L147" } ], "type": { @@ -200864,7 +203954,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L145" } ], "type": { @@ -200883,7 +203973,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L146" } ], "type": { @@ -200903,7 +203993,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L144" } ] }, @@ -200933,7 +204023,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "signatures": [ @@ -200987,7 +204077,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "parameters": [ @@ -201060,7 +204150,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L177" } ], "type": { @@ -201103,7 +204193,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L179" } ], "type": { @@ -201124,7 +204214,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 241, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L241" } ], "type": { @@ -201146,7 +204236,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L181" } ], "type": { @@ -201168,7 +204258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L180" } ], "type": { @@ -201189,7 +204279,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 242, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L242" } ], "type": { @@ -201211,7 +204301,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L178" } ], "type": { @@ -201240,7 +204330,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 240, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L240" } ], "type": { @@ -201259,7 +204349,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "getSignature": { @@ -201273,7 +204363,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "type": { @@ -201293,7 +204383,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "getSignature": { @@ -201307,7 +204397,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "type": { @@ -201333,7 +204423,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "getSignature": { @@ -201347,7 +204437,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "type": { @@ -201373,13 +204463,13 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L185" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "getSignature": { @@ -201393,7 +204483,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L185" } ], "type": { @@ -201417,7 +204507,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "parameters": [ @@ -201455,7 +204545,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "getSignature": { @@ -201469,7 +204559,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "type": { @@ -201487,9 +204577,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1082, + "line": 1099, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L1099" } ], "signatures": [ @@ -201502,9 +204592,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1082, + "line": 1099, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L1099" } ], "parameters": [ @@ -201539,9 +204629,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 746, + "line": 764, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L764" } ], "signatures": [ @@ -201555,7 +204645,39 @@ "summary": [ { "kind": "text", - "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback." + "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback.\n\nPayloads that are " + }, + { + "kind": "code", + "text": "`ArrayBuffer`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`ArrayBufferView`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`Uint8Array`" + }, + { + "kind": "text", + "text": ") are sent as\n" + }, + { + "kind": "code", + "text": "`application/octet-stream`" + }, + { + "kind": "text", + "text": "; all other payloads are JSON-encoded." } ], "blockTags": [ @@ -201582,9 +204704,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 746, + "line": 764, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L764" } ], "parameters": [ @@ -201660,9 +204782,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 749, + "line": 767, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L767" } ], "type": { @@ -201680,9 +204802,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 749, + "line": 767, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L767" } ] } @@ -201718,9 +204840,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -201738,9 +204860,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ] } @@ -201763,9 +204885,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -201782,9 +204904,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -201801,9 +204923,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -201821,9 +204943,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ] } @@ -202074,107 +205196,107 @@ ] }, "sources": [ - { - "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 438, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L438" - }, - { - "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" - }, - { - "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" - }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L453" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 489, + "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 515, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 504, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L504" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L530" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 539, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" + }, + { + "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", + "line": 548, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" + }, + { + "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", + "line": 557, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" + }, + { + "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", + "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 715, + "line": 730, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L715" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L730" } ], "signatures": [ @@ -202195,9 +205317,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 438, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "parameters": [ @@ -202236,9 +205358,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 440, + "line": 455, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ], "type": { @@ -202256,9 +205378,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 440, + "line": 455, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ] } @@ -202281,9 +205403,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "signatures": [ @@ -202296,9 +205418,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "type": { @@ -202336,9 +205458,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "typeParameters": [ @@ -202359,9 +205481,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "indexSignatures": [ @@ -202374,9 +205496,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "parameters": [ @@ -202438,9 +205560,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 445, + "line": 460, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L460" } ], "type": { @@ -202458,9 +205580,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 445, + "line": 460, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L460" } ] } @@ -202483,9 +205605,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "signatures": [ @@ -202498,9 +205620,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "parameters": [ @@ -202562,9 +205684,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "typeParameters": [ @@ -202585,9 +205707,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "indexSignatures": [ @@ -202600,9 +205722,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "parameters": [ @@ -202664,9 +205786,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 450, + "line": 465, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L465" } ], "type": { @@ -202684,9 +205806,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 450, + "line": 465, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L465" } ] } @@ -202709,9 +205831,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "signatures": [ @@ -202724,9 +205846,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "parameters": [ @@ -202788,9 +205910,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "typeParameters": [ @@ -202811,9 +205933,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "indexSignatures": [ @@ -202826,9 +205948,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "parameters": [ @@ -202890,9 +206012,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 455, + "line": 470, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L470" } ], "type": { @@ -202910,9 +206032,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 455, + "line": 470, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L470" } ] } @@ -202935,9 +206057,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "signatures": [ @@ -202950,9 +206072,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "parameters": [ @@ -203036,9 +206158,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "typeParameters": [ @@ -203059,9 +206181,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "indexSignatures": [ @@ -203074,9 +206196,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "parameters": [ @@ -203150,9 +206272,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 461, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "signatures": [ @@ -203165,9 +206287,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 461, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "parameters": [ @@ -203229,9 +206351,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "typeParameters": [ @@ -203252,9 +206374,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "indexSignatures": [ @@ -203267,9 +206389,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "parameters": [ @@ -203343,9 +206465,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 466, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "signatures": [ @@ -203358,9 +206480,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 466, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "parameters": [ @@ -203422,9 +206544,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "typeParameters": [ @@ -203445,9 +206567,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "indexSignatures": [ @@ -203460,9 +206582,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "parameters": [ @@ -203536,9 +206658,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 471, + "line": 486, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L486" } ], "signatures": [ @@ -203551,9 +206673,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 471, + "line": 486, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L486" } ], "parameters": [ @@ -203615,9 +206737,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "typeParameters": [ @@ -203638,9 +206760,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "indexSignatures": [ @@ -203653,9 +206775,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "parameters": [ @@ -203729,9 +206851,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 476, + "line": 491, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ], "signatures": [ @@ -203744,9 +206866,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 476, + "line": 491, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ], "parameters": [ @@ -203808,9 +206930,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "typeParameters": [ @@ -203831,9 +206953,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "indexSignatures": [ @@ -203846,9 +206968,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "parameters": [ @@ -203939,9 +207061,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 481, + "line": 496, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "signatures": [ @@ -203954,9 +207076,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 481, + "line": 496, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "parameters": [ @@ -204018,9 +207140,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 489, + "line": 504, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ], "parameters": [ @@ -204075,9 +207197,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 491, + "line": 506, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ], "type": { @@ -204095,9 +207217,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 491, + "line": 506, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ] } @@ -204128,9 +207250,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 507, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "signatures": [ @@ -204143,9 +207265,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 507, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "parameters": [ @@ -204173,9 +207295,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 494, + "line": 509, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L509" } ], "type": { @@ -204194,9 +207316,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 495, + "line": 510, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ], "type": { @@ -204217,9 +207339,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 497, + "line": 512, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L512" } ], "type": { @@ -204238,9 +207360,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 496, + "line": 511, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L511" } ], "type": { @@ -204258,9 +207380,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 495, + "line": 510, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ] } @@ -204275,9 +207397,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 508, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L508" } ], "type": { @@ -204295,9 +207417,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 507, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "indexSignatures": [ @@ -204310,9 +207432,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 499, + "line": 514, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L499" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L514" } ], "parameters": [ @@ -204373,9 +207495,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "typeParameters": [ @@ -204396,9 +207518,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "indexSignatures": [ @@ -204411,9 +207533,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "parameters": [ @@ -204475,9 +207597,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 504, + "line": 519, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ], "type": { @@ -204495,9 +207617,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 504, + "line": 519, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ] } @@ -204520,9 +207642,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 520, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ], "signatures": [ @@ -204535,9 +207657,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 520, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ], "parameters": [ @@ -204565,9 +207687,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 507, + "line": 522, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L522" } ], "type": { @@ -204586,9 +207708,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 508, + "line": 523, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L523" } ], "type": { @@ -204609,9 +207731,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 510, + "line": 525, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L525" } ], "type": { @@ -204630,9 +207752,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 509, + "line": 524, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L509" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "type": { @@ -204650,9 +207772,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 508, + "line": 523, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L523" } ] } @@ -204667,9 +207789,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 512, + "line": 527, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ], "type": { @@ -204689,9 +207811,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 521, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L521" } ], "type": { @@ -204709,9 +207831,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 520, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ] } @@ -204753,9 +207875,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 515, + "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L530" } ], "typeParameters": [ @@ -204822,9 +207944,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 517, + "line": 532, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L532" } ], "type": { @@ -204845,9 +207967,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 517, + "line": 532, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L532" } ] } @@ -204870,9 +207992,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 533, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "signatures": [ @@ -204885,9 +208007,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 533, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "parameters": [ @@ -204915,9 +208037,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 520, + "line": 535, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L535" } ], "type": { @@ -204937,9 +208059,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 521, + "line": 536, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ], "type": { @@ -204970,9 +208092,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 534, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L534" } ], "type": { @@ -204990,9 +208112,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 533, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ] } @@ -205034,9 +208156,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "typeParameters": [ @@ -205057,9 +208179,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "indexSignatures": [ @@ -205072,9 +208194,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "parameters": [ @@ -205136,9 +208258,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 526, + "line": 541, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L541" } ], "type": { @@ -205159,9 +208281,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 526, + "line": 541, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L541" } ] } @@ -205184,9 +208306,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 542, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "signatures": [ @@ -205199,9 +208321,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 542, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "parameters": [ @@ -205229,9 +208351,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 529, + "line": 544, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L544" } ], "type": { @@ -205251,9 +208373,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 530, + "line": 545, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ], "type": { @@ -205284,9 +208406,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 543, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L543" } ], "type": { @@ -205304,9 +208426,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 542, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ] } @@ -205348,9 +208470,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "typeParameters": [ @@ -205371,9 +208493,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "indexSignatures": [ @@ -205386,9 +208508,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "parameters": [ @@ -205450,9 +208572,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 535, + "line": 550, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L550" } ], "type": { @@ -205473,9 +208595,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 535, + "line": 550, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L550" } ] } @@ -205498,9 +208620,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 551, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "signatures": [ @@ -205513,9 +208635,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 551, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "parameters": [ @@ -205543,9 +208665,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 538, + "line": 553, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L553" } ], "type": { @@ -205565,9 +208687,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 539, + "line": 554, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L554" } ], "type": { @@ -205598,9 +208720,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 552, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L552" } ], "type": { @@ -205618,9 +208740,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 551, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ] } @@ -205662,9 +208784,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" } ], "typeParameters": [ @@ -205685,9 +208807,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" } ], "indexSignatures": [ @@ -205700,9 +208822,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" } ], "parameters": [ @@ -205764,9 +208886,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 544, + "line": 559, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L544" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L559" } ], "type": { @@ -205787,9 +208909,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 544, + "line": 559, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L544" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L559" } ] } @@ -205812,9 +208934,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 560, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L560" } ], "signatures": [ @@ -205827,9 +208949,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 560, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L560" } ], "parameters": [ @@ -205857,9 +208979,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 547, + "line": 562, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L562" } ], "type": { @@ -205879,9 +209001,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 548, + "line": 563, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L563" } ], "type": { @@ -205912,9 +209034,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 561, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L561" } ], "type": { @@ -205932,9 +209054,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 560, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L560" } ] } @@ -205976,9 +209098,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" } ], "typeParameters": [ @@ -205999,9 +209121,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" } ], "indexSignatures": [ @@ -206014,9 +209136,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" } ], "parameters": [ @@ -206088,9 +209210,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 554, + "line": 569, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L554" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L569" } ], "signatures": [ @@ -206103,9 +209225,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 554, + "line": 569, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L554" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L569" } ], "parameters": [ @@ -206150,9 +209272,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "signatures": [ @@ -206184,9 +209306,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "typeParameters": [ @@ -206207,9 +209329,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "indexSignatures": [ @@ -206222,9 +209344,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "parameters": [ @@ -206287,9 +209409,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 846, + "line": 863, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L863" } ], "signatures": [ @@ -206363,9 +209485,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 846, + "line": 863, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L863" } ], "parameters": [ @@ -206409,9 +209531,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 849, + "line": 866, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L866" } ], "type": { @@ -206438,9 +209560,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 850, + "line": 867, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L850" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L867" } ], "type": { @@ -206465,9 +209587,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 848, + "line": 865, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L865" } ], "type": { @@ -206498,9 +209620,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 847, + "line": 864, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L864" } ], "indexSignatures": [ @@ -206513,9 +209635,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 851, + "line": 868, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L868" } ], "parameters": [ @@ -206565,9 +209687,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 853, + "line": 870, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L870" } ], "indexSignatures": [ @@ -206580,9 +209702,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 853, + "line": 870, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L870" } ], "parameters": [ @@ -206638,9 +209760,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L292" } ], "signatures": [ @@ -206654,7 +209776,63 @@ "summary": [ { "kind": "text", - "text": "Subscribe registers your client with the server" + "text": "Subscribe registers your client with the server.\n\nThe optional " + }, + { + "kind": "code", + "text": "`callback`" + }, + { + "kind": "text", + "text": " receives a " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": " and, on failure, an " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " argument.\nLog the full " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " so its " + }, + { + "kind": "code", + "text": "`cause`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": ", and any structured fields aren't hidden\nbehind " + }, + { + "kind": "code", + "text": "`err.message`" + }, + { + "kind": "text", + "text": "." } ], "blockTags": [ @@ -206666,15 +209844,25 @@ "text": "Realtime" } ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nsupabase.channel('room1').subscribe((status, err) => {\n if (status === 'CHANNEL_ERROR' || status === 'TIMED_OUT') {\n // Log the full error: its `cause` often holds the underlying reason.\n console.error(status, err)\n }\n})\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L292" } ], "parameters": [ @@ -206697,9 +209885,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 278, + "line": 293, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L293" } ], "signatures": [ @@ -206712,9 +209900,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 278, + "line": 293, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L293" } ], "parameters": [ @@ -206791,9 +209979,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 954, + "line": 971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L954" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L971" } ], "signatures": [ @@ -206825,9 +210013,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 954, + "line": 971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L954" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L971" } ], "type": { @@ -206846,9 +210034,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 406, + "line": 421, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L421" } ], "signatures": [ @@ -206888,9 +210076,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 406, + "line": 421, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L421" } ], "parameters": [ @@ -206911,9 +210099,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 422, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L422" } ], "indexSignatures": [ @@ -206926,9 +210114,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 422, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L422" } ], "parameters": [ @@ -206970,9 +210158,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 423, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L423" } ], "indexSignatures": [ @@ -206985,9 +210173,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 423, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L423" } ], "parameters": [ @@ -207043,9 +210231,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 939, + "line": 956, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L956" } ], "signatures": [ @@ -207085,9 +210273,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 939, + "line": 956, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L956" } ], "parameters": [ @@ -207133,9 +210321,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "signatures": [ @@ -207167,9 +210355,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "parameters": [ @@ -207190,9 +210378,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "indexSignatures": [ @@ -207205,9 +210393,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "parameters": [ @@ -207263,9 +210451,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 924, + "line": 941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L941" } ], "signatures": [ @@ -207297,9 +210485,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 924, + "line": 941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L941" } ], "parameters": [ @@ -207371,7 +210559,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 176, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L176" } ] }, @@ -207393,7 +210581,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L277" } ], "signatures": [ @@ -207447,7 +210635,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L277" } ], "parameters": [ @@ -207601,7 +210789,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "type": { @@ -207624,7 +210812,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "signatures": [ @@ -207639,7 +210827,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "type": { @@ -207685,7 +210873,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L140" } ], "type": { @@ -207714,7 +210902,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L142" } ], "type": { @@ -207743,7 +210931,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L138" } ], "type": { @@ -207769,7 +210957,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L153" } ], "type": { @@ -208012,7 +211200,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L146" } ], "type": { @@ -208028,7 +211216,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 146, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L146" } ], "indexSignatures": [ @@ -208043,7 +211231,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 146, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L146" } ], "parameters": [ @@ -208080,7 +211268,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L144" } ], "type": { @@ -208102,7 +211290,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L151" } ], "type": { @@ -208128,7 +211316,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 147, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L147" } ], "type": { @@ -208144,7 +211332,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 147, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L147" } ], "indexSignatures": [ @@ -208159,7 +211347,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 147, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L147" } ], "parameters": [ @@ -208196,7 +211384,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L149" } ], "type": { @@ -208216,7 +211404,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L158" } ], "type": { @@ -208244,7 +211432,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 154, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L154" } ], "type": { @@ -208265,7 +211453,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L156" } ], "type": { @@ -208291,7 +211479,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L155" } ], "type": { @@ -208310,7 +211498,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L206" } ], "getSignature": { @@ -208324,7 +211512,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L206" } ], "type": { @@ -208355,7 +211543,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 202, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L202" } ], "getSignature": { @@ -208369,7 +211557,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 202, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L202" } ], "type": { @@ -208400,7 +211588,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "getSignature": { @@ -208414,7 +211602,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "type": { @@ -208434,7 +211622,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "getSignature": { @@ -208448,7 +211636,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "type": { @@ -208473,7 +211661,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "getSignature": { @@ -208487,7 +211675,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "type": { @@ -208507,7 +211695,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 180, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L180" } ], "getSignature": { @@ -208521,7 +211709,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 180, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L180" } ], "type": { @@ -208546,7 +211734,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L187" } ], "getSignature": { @@ -208560,7 +211748,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L187" } ], "type": { @@ -208589,7 +211777,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 210, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L210" } ], "getSignature": { @@ -208603,7 +211791,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 210, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L210" } ], "type": { @@ -208619,7 +211807,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "signatures": [ @@ -208634,7 +211822,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "parameters": [ @@ -208671,7 +211859,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L194" } ], "getSignature": { @@ -208685,7 +211873,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L194" } ], "type": { @@ -208711,7 +211899,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 214, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L214" } ], "getSignature": { @@ -208725,7 +211913,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 214, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L214" } ], "type": { @@ -208743,7 +211931,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "signatures": [ @@ -208758,7 +211946,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "type": { @@ -208783,7 +211971,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L218" } ], "getSignature": { @@ -208797,7 +211985,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L218" } ], "type": { @@ -208820,7 +212008,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 220, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L220" } ], "type": { @@ -208856,7 +212044,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 221, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L221" } ], "type": { @@ -208892,7 +212080,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 222, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L222" } ], "type": { @@ -208928,7 +212116,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 219, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L219" } ], "type": { @@ -208965,7 +212153,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 218, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L218" } ] } @@ -208983,7 +212171,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "getSignature": { @@ -208997,7 +212185,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "type": { @@ -209017,7 +212205,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "getSignature": { @@ -209031,7 +212219,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "type": { @@ -209053,7 +212241,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 198, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L198" } ], "getSignature": { @@ -209067,7 +212255,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 198, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L198" } ], "type": { @@ -209092,7 +212280,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L469" } ], "signatures": [ @@ -209144,7 +212332,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L469" } ], "parameters": [ @@ -209195,7 +212383,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L297" } ], "signatures": [ @@ -209229,7 +212417,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L297" } ], "type": { @@ -209250,7 +212438,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 429, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L429" } ], "signatures": [ @@ -209284,7 +212472,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 429, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L429" } ], "type": { @@ -209310,7 +212498,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L356" } ], "signatures": [ @@ -209344,7 +212532,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L356" } ], "parameters": [ @@ -209429,7 +212617,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "signatures": [ @@ -209472,7 +212660,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "type": { @@ -209493,7 +212681,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L376" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L376" } ], "signatures": [ @@ -209527,7 +212715,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L376" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L376" } ], "type": { @@ -209554,7 +212742,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L438" } ], "signatures": [ @@ -209596,7 +212784,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L438" } ], "type": { @@ -209617,7 +212805,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L447" } ], "signatures": [ @@ -209659,7 +212847,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L447" } ], "type": { @@ -209680,7 +212868,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L456" } ], "signatures": [ @@ -209722,7 +212910,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L456" } ], "type": { @@ -209743,7 +212931,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 420, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L420" } ], "signatures": [ @@ -209785,7 +212973,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 420, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L420" } ], "parameters": [ @@ -209843,7 +213031,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L550" } ], "signatures": [ @@ -209877,7 +213065,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L550" } ], "parameters": [ @@ -209916,7 +213104,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L491" } ], "signatures": [ @@ -209950,7 +213138,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L491" } ], "parameters": [ @@ -209986,7 +213174,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 401, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L401" } ], "signatures": [ @@ -210020,7 +213208,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 401, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L401" } ], "type": { @@ -210057,7 +213245,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L386" } ], "signatures": [ @@ -210091,7 +213279,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L386" } ], "parameters": [ @@ -210149,7 +213337,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 540, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L540" } ], "signatures": [ @@ -210183,7 +213371,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 540, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L540" } ], "type": { @@ -210215,7 +213403,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L517" } ], "signatures": [ @@ -210282,7 +213470,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L517" } ], "parameters": [ @@ -210375,7 +213563,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 135, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L135" } ] }, @@ -210397,7 +213585,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "signatures": [ @@ -210441,7 +213629,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "parameters": [ @@ -210533,7 +213721,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 66, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L66" } ], "type": { @@ -210555,7 +213743,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "getSignature": { @@ -210569,7 +213757,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "type": { @@ -210610,7 +213798,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 41, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L41" } ] }, @@ -210643,7 +213831,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 169, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" } ], "signatures": [ @@ -210687,7 +213875,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 169, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" } ], "type": { @@ -210801,7 +213989,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 194, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" } ], "signatures": [ @@ -210845,7 +214033,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 194, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" } ], "type": { @@ -210873,7 +214061,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 61, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L61" } ] }, @@ -210897,7 +214085,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" } ], "type": { @@ -210918,7 +214106,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" } ], "type": { @@ -210939,7 +214127,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" } ], "type": { @@ -210960,7 +214148,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 4, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" } ], "type": { @@ -210981,7 +214169,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 2, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" } ], "type": { @@ -211002,7 +214190,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "type": { @@ -211018,7 +214206,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "signatures": [ @@ -211033,7 +214221,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "parameters": [ @@ -211076,7 +214264,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" } ], "type": { @@ -211095,7 +214283,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "type": { @@ -211118,7 +214306,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "signatures": [ @@ -211133,7 +214321,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "parameters": [ @@ -211187,7 +214375,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "type": { @@ -211210,7 +214398,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "signatures": [ @@ -211225,7 +214413,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "parameters": [ @@ -211279,7 +214467,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "type": { @@ -211302,7 +214490,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "signatures": [ @@ -211317,7 +214505,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "parameters": [ @@ -211371,7 +214559,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "type": { @@ -211394,7 +214582,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "signatures": [ @@ -211409,7 +214597,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "parameters": [ @@ -211465,7 +214653,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 3, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" } ], "type": { @@ -211486,7 +214674,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 8, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" } ], "type": { @@ -211507,7 +214695,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" } ], "type": { @@ -211528,7 +214716,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 7, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" } ], "type": { @@ -211547,7 +214735,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "signatures": [ @@ -211570,7 +214758,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "parameters": [ @@ -211620,7 +214808,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "signatures": [ @@ -211643,7 +214831,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "parameters": [ @@ -211692,7 +214880,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "signatures": [ @@ -211715,7 +214903,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "parameters": [ @@ -211765,7 +214953,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "signatures": [ @@ -211788,7 +214976,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "parameters": [ @@ -211872,7 +215060,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 1, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" } ] }, @@ -211910,7 +215098,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "signatures": [ @@ -211925,7 +215113,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L59" } ], "parameters": [ @@ -212001,7 +215189,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "indexSignatures": [ @@ -212016,7 +215204,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L61" } ], "parameters": [ @@ -212050,7 +215238,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ], "type": { @@ -212073,7 +215261,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ], "type": { @@ -212106,7 +215294,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -212131,7 +215319,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -212152,7 +215340,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -212178,7 +215366,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -212198,7 +215386,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ] } @@ -212225,7 +215413,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -212250,7 +215438,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -212271,7 +215459,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -212291,7 +215479,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ] } @@ -212318,7 +215506,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L37" } ], "type": { @@ -212338,7 +215526,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 23, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ] } @@ -212356,7 +215544,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 22, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ] } @@ -212373,7 +215561,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 128, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ], "type": { @@ -212411,7 +215599,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 128, "character": 83, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ] } @@ -212432,7 +215620,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ], "type": { @@ -212457,7 +215645,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "type": { @@ -212473,7 +215661,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "signatures": [ @@ -212525,7 +215713,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L72" } ], "type": { @@ -212557,7 +215745,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L83" } ], "type": { @@ -212578,7 +215766,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L71" } ], "type": { @@ -212610,7 +215798,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L79" } ], "type": { @@ -212636,7 +215824,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "type": { @@ -212652,7 +215840,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "indexSignatures": [ @@ -212667,7 +215855,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "parameters": [ @@ -212705,7 +215893,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "type": { @@ -212721,7 +215909,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "signatures": [ @@ -212784,7 +215972,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L67" } ], "type": { @@ -212805,7 +215993,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L77" } ], "type": { @@ -212831,7 +216019,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "type": { @@ -212847,7 +216035,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "signatures": [ @@ -212916,7 +216104,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L78" } ], "type": { @@ -212942,7 +216130,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "type": { @@ -212958,7 +216146,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "indexSignatures": [ @@ -212973,7 +216161,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "parameters": [ @@ -213011,7 +216199,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "type": { @@ -213027,7 +216215,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "signatures": [ @@ -213096,7 +216284,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L90" } ], "type": { @@ -213122,7 +216310,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L66" } ], "type": { @@ -213143,7 +216331,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L65" } ], "type": { @@ -213166,7 +216354,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L69" } ], "type": { @@ -213187,7 +216375,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L80" } ], "type": { @@ -213208,7 +216396,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L81" } ], "type": { @@ -213231,7 +216419,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ] } @@ -213248,7 +216436,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ], "type": { @@ -213271,7 +216459,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L34" } ], "type": { @@ -213292,7 +216480,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L37" } ], "type": { @@ -213311,7 +216499,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L35" } ], "type": { @@ -213330,7 +216518,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L36" } ], "type": { @@ -213349,7 +216537,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L33" } ], "type": { @@ -213369,7 +216557,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ] } @@ -213386,7 +216574,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ], "typeParameters": [ @@ -213441,7 +216629,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L113" } ], "type": { @@ -213473,7 +216661,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L125" } ], "type": { @@ -213500,7 +216688,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L117" } ], "type": { @@ -213529,7 +216717,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L121" } ], "type": { @@ -213549,7 +216737,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 109, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ] } @@ -213566,7 +216754,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 104, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "typeParameters": [ @@ -213589,7 +216777,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 104, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "indexSignatures": [ @@ -213604,7 +216792,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 104, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "parameters": [ @@ -213692,7 +216880,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "typeParameters": [ @@ -213715,7 +216903,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "indexSignatures": [ @@ -213730,7 +216918,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "parameters": [ @@ -213788,7 +216976,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L99" } ], "type": { @@ -213818,7 +217006,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 100, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ], "type": { @@ -213834,7 +217022,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 100, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ] } @@ -213851,7 +217039,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 101, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L101" } ], "type": { @@ -213885,7 +217073,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 98, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L98" } ] } @@ -213904,7 +217092,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "typeParameters": [ @@ -213927,7 +217115,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "indexSignatures": [ @@ -213942,7 +217130,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "parameters": [ @@ -214000,7 +217188,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 85, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L85" } ], "type": { @@ -214030,7 +217218,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 86, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L86" } ], "type": { @@ -214052,7 +217240,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 87, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ], "type": { @@ -214068,7 +217256,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 87, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ] } @@ -214086,7 +217274,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 84, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L84" } ] } @@ -214105,7 +217293,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "typeParameters": [ @@ -214128,7 +217316,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "indexSignatures": [ @@ -214143,7 +217331,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "parameters": [ @@ -214201,7 +217389,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 92, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L92" } ], "type": { @@ -214231,7 +217419,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 93, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L93" } ], "type": { @@ -214253,7 +217441,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 94, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L94" } ], "type": { @@ -214287,7 +217475,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 91, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L91" } ] } @@ -214306,7 +217494,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "typeParameters": [ @@ -214329,7 +217517,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "indexSignatures": [ @@ -214344,7 +217532,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "parameters": [ @@ -214390,7 +217578,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L20" } ], "type": { @@ -214426,7 +217614,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L18" } ], "type": { @@ -214456,7 +217644,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L19" } ], "type": { @@ -214475,7 +217663,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L21" } ], "type": { @@ -214512,7 +217700,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ] } @@ -214529,7 +217717,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "typeParameters": [ @@ -214552,7 +217740,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "indexSignatures": [ @@ -214567,7 +217755,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "parameters": [ @@ -214613,7 +217801,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L27" } ], "type": { @@ -214649,7 +217837,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L25" } ], "type": { @@ -214679,7 +217867,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L26" } ], "type": { @@ -214698,7 +217886,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L28" } ], "type": { @@ -214735,7 +217923,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 77, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ] } @@ -214752,7 +217940,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "typeParameters": [ @@ -214775,7 +217963,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -214790,7 +217978,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "parameters": [ @@ -214827,7 +218015,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ] } @@ -214847,7 +218035,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 75, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -214862,7 +218050,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L14" } ], "parameters": [ @@ -214915,7 +218103,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 40, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L40" } ], "type": { @@ -214953,7 +218141,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 40, "character": 85, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L40" } ] } @@ -214976,7 +218164,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 151, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L151" } ], "type": { @@ -215001,7 +218189,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L33" } ], "type": { @@ -215023,7 +218211,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L34" } ], "type": { @@ -215045,7 +218233,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L35" } ], "type": { @@ -215067,7 +218255,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L36" } ], "type": { @@ -215089,7 +218277,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L37" } ], "type": { @@ -215110,7 +218298,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L32" } ] } @@ -218008,7 +221196,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L149" } ], "type": { @@ -218035,7 +221223,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L155" } ], "type": { @@ -218062,7 +221250,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L151" } ], "type": { @@ -218089,7 +221277,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L157" } ], "type": { @@ -218116,7 +221304,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 159, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L159" } ], "type": { @@ -218143,7 +221331,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L153" } ], "type": { @@ -218163,7 +221351,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 147, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L147" } ] }, @@ -218193,7 +221381,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L62" } ], "signatures": [ @@ -218208,7 +221396,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L62" } ], "parameters": [ @@ -218290,7 +221478,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -218314,7 +221502,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -218338,7 +221526,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -218353,7 +221541,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -218376,7 +221564,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -218395,7 +221583,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -218414,7 +221602,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -218442,7 +221630,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -218471,7 +221659,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -218509,7 +221697,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 58, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L58" } ], "extendedTypes": [ @@ -218546,7 +221734,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L36" } ], "signatures": [ @@ -218609,7 +221797,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L36" } ], "parameters": [ @@ -218643,7 +221831,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 38, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L38" } ], "indexSignatures": [ @@ -218658,7 +221846,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 38, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L38" } ], "parameters": [ @@ -218951,7 +222139,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 95, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L95" } ], "getSignature": { @@ -219003,7 +222191,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 95, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L95" } ], "type": { @@ -219026,7 +222214,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L75" } ], "getSignature": { @@ -219078,7 +222266,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L75" } ], "type": { @@ -219102,7 +222290,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "signatures": [ @@ -219207,7 +222395,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "parameters": [ @@ -219266,7 +222454,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" } ], "type": { @@ -219307,7 +222495,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 192, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" } ], "type": { @@ -219347,7 +222535,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -219388,7 +222576,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" } ], "type": { @@ -219410,7 +222598,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ] } @@ -219448,7 +222636,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ], "type": { @@ -219484,7 +222672,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -219504,7 +222692,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 199, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" } ] } @@ -219529,7 +222717,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -219548,7 +222736,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -219570,7 +222758,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -219607,7 +222795,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "signatures": [ @@ -219728,7 +222916,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "parameters": [ @@ -219782,7 +222970,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -219805,7 +222993,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -219825,7 +223013,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ] } @@ -219842,7 +223030,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" } ], "type": { @@ -219862,7 +223050,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ] } @@ -219887,7 +223075,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 384, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" } ], "type": { @@ -219906,7 +223094,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 385, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" } ], "type": { @@ -219928,7 +223116,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 383, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" } ] } @@ -219965,7 +223153,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "signatures": [ @@ -220086,7 +223274,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "parameters": [ @@ -220140,7 +223328,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -220163,7 +223351,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -220183,7 +223371,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ] } @@ -220200,7 +223388,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" } ], "type": { @@ -220220,7 +223408,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ] } @@ -220245,7 +223433,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" } ], "type": { @@ -220264,7 +223452,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 338, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" } ], "type": { @@ -220286,7 +223474,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 336, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" } ] } @@ -220321,7 +223509,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L58" } ], "signatures": [ @@ -220374,7 +223562,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L58" } ], "parameters": [ @@ -220421,7 +223609,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "signatures": [ @@ -220526,7 +223714,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "parameters": [ @@ -220580,7 +223768,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 131, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" } ], "type": { @@ -220601,7 +223789,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ], "type": { @@ -220621,7 +223809,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ] } @@ -220646,7 +223834,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" } ], "type": { @@ -220665,7 +223853,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 136, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" } ], "type": { @@ -220687,7 +223875,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ] } @@ -220724,7 +223912,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "signatures": [ @@ -220831,7 +224019,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "parameters": [ @@ -220921,7 +224109,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -220945,7 +224133,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 74, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" } ], "type": { @@ -220965,7 +224153,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ] } @@ -220990,7 +224178,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -221009,7 +224197,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "type": { @@ -221031,7 +224219,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ] } @@ -221069,7 +224257,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -221105,7 +224293,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -221179,7 +224367,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -221215,7 +224403,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -221248,7 +224436,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "signatures": [ @@ -221361,7 +224549,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "parameters": [ @@ -221420,7 +224608,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -221461,7 +224649,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ], "type": { @@ -221501,7 +224689,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 270, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" } ], "type": { @@ -221521,7 +224709,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 269, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" } ] } @@ -221558,7 +224746,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -221581,7 +224769,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -221601,7 +224789,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ] } @@ -221618,7 +224806,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -221638,7 +224826,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -221663,7 +224851,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" } ], "type": { @@ -221682,7 +224870,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" } ], "type": { @@ -221704,7 +224892,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 279, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" } ] } @@ -221758,7 +224946,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L11" } ], "extendedTypes": [ @@ -221796,7 +224984,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "signatures": [ @@ -221811,7 +224999,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "parameters": [ @@ -221897,7 +225085,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -221925,7 +225113,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -221953,7 +225141,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -221968,7 +225156,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -221991,7 +225179,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -222010,7 +225198,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -222029,7 +225217,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -222057,7 +225245,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -222086,7 +225274,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -222114,7 +225302,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L11" } ], "extendedTypes": [ @@ -222172,7 +225360,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "signatures": [ @@ -222187,7 +225375,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "parameters": [ @@ -222258,7 +225446,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -222279,7 +225467,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -222314,7 +225502,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -222349,7 +225537,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -222366,7 +225554,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -222389,7 +225577,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -222408,7 +225596,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -222427,7 +225615,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -222455,7 +225643,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -222484,7 +225672,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -222522,7 +225710,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L90" } ], "extendedTypes": [ @@ -222573,7 +225761,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "signatures": [ @@ -222588,7 +225776,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "parameters": [ @@ -222658,7 +225846,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -222684,7 +225872,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -222710,7 +225898,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -222727,7 +225915,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -222750,7 +225938,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -222769,7 +225957,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -222788,7 +225976,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -222816,7 +226004,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -222845,7 +226033,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -222883,7 +226071,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 127, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L127" } ], "extendedTypes": [ @@ -222927,7 +226115,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "signatures": [ @@ -222942,7 +226130,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "parameters": [ @@ -222990,7 +226178,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -223025,7 +226213,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -223060,7 +226248,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -223077,7 +226265,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -223100,7 +226288,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -223119,7 +226307,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -223138,7 +226326,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -223166,7 +226354,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -223195,7 +226383,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -223233,7 +226421,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 108, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L108" } ], "extendedTypes": [ @@ -223277,7 +226465,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "signatures": [ @@ -223292,7 +226480,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "parameters": [ @@ -223351,7 +226539,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -223377,7 +226565,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -223412,7 +226600,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -223447,7 +226635,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -223464,7 +226652,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -223487,7 +226675,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -223506,7 +226694,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -223525,7 +226713,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -223553,7 +226741,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -223582,7 +226770,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -223620,7 +226808,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 137, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L137" } ], "extendedTypes": [ @@ -223666,7 +226854,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 42, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L42" } ], "type": { @@ -223693,7 +226881,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L40" } ], "type": { @@ -223720,7 +226908,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L36" } ], "type": { @@ -223747,7 +226935,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L38" } ], "type": { @@ -223774,7 +226962,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L44" } ], "type": { @@ -223794,7 +226982,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 34, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L34" } ] }, @@ -223818,7 +227006,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L16" } ], "type": { @@ -223840,7 +227028,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L17" } ], "type": { @@ -223861,7 +227049,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L15" } ], "type": { @@ -223880,7 +227068,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L11" } ], "type": { @@ -223899,7 +227087,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L13" } ], "type": { @@ -223918,7 +227106,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L14" } ], "type": { @@ -223937,7 +227125,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L19" } ], "type": { @@ -223958,7 +227146,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L12" } ], "type": { @@ -223979,7 +227167,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L18" } ], "type": { @@ -223999,7 +227187,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 10, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L10" } ] }, @@ -224037,7 +227225,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L549" } ], "type": { @@ -224064,7 +227252,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L550" } ], "type": { @@ -224094,7 +227282,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L548" } ], "type": { @@ -224114,7 +227302,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 547, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L547" } ] }, @@ -224138,7 +227326,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L176" } ], "type": { @@ -224158,7 +227346,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 175, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L175" } ] }, @@ -224198,7 +227386,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L362" } ], "type": { @@ -224227,7 +227415,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L363" } ], "type": { @@ -224247,7 +227435,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 361, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L361" } ] }, @@ -224285,7 +227473,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 646, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L646" } ], "type": { @@ -224312,7 +227500,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 647, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L647" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L647" } ], "type": { @@ -224334,7 +227522,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 645, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L645" } ] }, @@ -224366,7 +227554,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L296" } ], "type": { @@ -224420,7 +227608,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 285, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L285" } ], "type": { @@ -224445,7 +227633,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 281, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L281" } ] }, @@ -224483,7 +227671,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L59" } ], "type": { @@ -224510,7 +227698,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L63" } ], "type": { @@ -224537,7 +227725,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L53" } ], "type": { @@ -224564,7 +227752,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L65" } ], "type": { @@ -224591,7 +227779,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L61" } ], "type": { @@ -224618,7 +227806,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L57" } ], "type": { @@ -224645,7 +227833,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L55" } ], "type": { @@ -224665,7 +227853,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 51, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L51" } ], "indexSignatures": [ @@ -224688,7 +227876,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L67" } ], "parameters": [ @@ -224753,7 +227941,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L94" } ], "type": { @@ -224788,7 +227976,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L104" } ], "type": { @@ -224817,7 +228005,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L85" } ], "type": { @@ -224853,7 +228041,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L81" } ], "type": { @@ -224895,7 +228083,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L87" } ], "type": { @@ -224931,7 +228119,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L89" } ], "type": { @@ -224969,7 +228157,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L79" } ], "type": { @@ -225004,7 +228192,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L99" } ], "type": { @@ -225031,7 +228219,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L83" } ], "type": { @@ -225060,7 +228248,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 77, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L77" } ] }, @@ -225098,7 +228286,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L119" } ], "type": { @@ -225127,7 +228315,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L125" } ], "type": { @@ -225156,7 +228344,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L127" } ], "type": { @@ -225183,7 +228371,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L121" } ], "type": { @@ -225212,7 +228400,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L129" } ], "type": { @@ -225239,7 +228427,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L113" } ], "type": { @@ -225268,7 +228456,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L131" } ], "type": { @@ -225297,7 +228485,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L133" } ], "type": { @@ -225326,7 +228514,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L117" } ], "type": { @@ -225355,7 +228543,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L123" } ], "type": { @@ -225390,7 +228578,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L138" } ], "type": { @@ -225417,7 +228605,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L115" } ], "type": { @@ -225439,7 +228627,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 111, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L111" } ] }, @@ -225479,7 +228667,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L150" } ], "type": { @@ -225556,7 +228744,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 154, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L154" } ], "type": { @@ -225585,7 +228773,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L162" } ], "type": { @@ -225614,7 +228802,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 172, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L172" } ], "type": { @@ -225658,7 +228846,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 167, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L167" } ], "type": { @@ -225702,7 +228890,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L158" } ], "type": { @@ -225722,7 +228910,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 146, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L146" } ] }, @@ -225760,7 +228948,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L515" } ], "type": { @@ -225787,7 +228975,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L516" } ], "type": { @@ -225819,7 +229007,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L517" } ], "type": { @@ -225848,7 +229036,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 518, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L518" } ], "type": { @@ -225875,7 +229063,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 514, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L514" } ], "type": { @@ -225895,7 +229083,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 513, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L513" } ] }, @@ -225933,7 +229121,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 526, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L526" } ], "type": { @@ -225958,7 +229146,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 525, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L525" } ] }, @@ -225982,7 +229170,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L23" } ], "type": { @@ -226003,7 +229191,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L24" } ], "type": { @@ -226024,7 +229212,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L27" } ], "type": { @@ -226045,7 +229233,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L25" } ], "type": { @@ -226083,7 +229271,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L26" } ], "type": { @@ -226112,7 +229300,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L22" } ] }, @@ -226152,7 +229340,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L491" } ], "type": { @@ -226181,7 +229369,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L492" } ], "type": { @@ -226210,7 +229398,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L490" } ], "type": { @@ -226237,7 +229425,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L489" } ], "type": { @@ -226257,7 +229445,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 488, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L488" } ] }, @@ -226295,7 +229483,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -226320,7 +229508,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -226340,7 +229528,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L501" } ] } @@ -226368,7 +229556,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L502" } ], "type": { @@ -226388,7 +229576,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 500, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L500" } ] }, @@ -226428,7 +229616,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L467" } ], "type": { @@ -226457,7 +229645,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L468" } ], "type": { @@ -226486,7 +229674,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L466" } ], "type": { @@ -226506,7 +229694,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 465, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L465" } ] }, @@ -226546,7 +229734,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L478" } ], "type": { @@ -226573,7 +229761,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -226598,7 +229786,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -226618,7 +229806,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L477" } ] } @@ -226637,7 +229825,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 476, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L476" } ] }, @@ -226675,7 +229863,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 567, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L567" } ], "type": { @@ -226704,7 +229892,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 568, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L568" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L568" } ], "type": { @@ -226733,7 +229921,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L569" } ], "type": { @@ -226762,7 +229950,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L570" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L570" } ], "type": { @@ -226791,7 +229979,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L571" } ], "type": { @@ -226820,7 +230008,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 572, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L572" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L572" } ], "type": { @@ -226849,7 +230037,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 573, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L573" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L573" } ], "type": { @@ -226876,7 +230064,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L566" } ], "type": { @@ -226896,7 +230084,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 565, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L565" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L565" } ] }, @@ -226936,7 +230124,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 583, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L583" } ], "type": { @@ -226963,7 +230151,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 582, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L582" } ], "type": { @@ -226988,7 +230176,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 581, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L581" } ] }, @@ -227010,7 +230198,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L301" } ], "type": { @@ -227030,7 +230218,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 300, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L300" } ] }, @@ -227070,7 +230258,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L384" } ], "type": { @@ -227093,7 +230281,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 383, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L383" } ] }, @@ -227131,7 +230319,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 537, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L537" } ], "type": { @@ -227158,7 +230346,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L536" } ], "type": { @@ -227185,7 +230373,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L538" } ], "type": { @@ -227210,7 +230398,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 535, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L535" } ] }, @@ -227250,7 +230438,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 607, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L607" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L607" } ], "type": { @@ -227279,7 +230467,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L604" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L604" } ], "type": { @@ -227306,7 +230494,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L605" } ], "type": { @@ -227337,7 +230525,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 608, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L608" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L608" } ], "type": { @@ -227366,7 +230554,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 609, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L609" } ], "type": { @@ -227395,7 +230583,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L606" } ], "type": { @@ -227422,7 +230610,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 603, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L603" } ], "type": { @@ -227442,7 +230630,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 602, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L602" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L602" } ] }, @@ -227482,7 +230670,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L619" } ], "type": { @@ -227511,7 +230699,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L618" } ], "type": { @@ -227536,7 +230724,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L617" } ] }, @@ -227579,7 +230767,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L184" } ], "type": { @@ -227608,7 +230796,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L189" } ], "type": { @@ -227637,7 +230825,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L199" } ], "type": { @@ -227666,7 +230854,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 194, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L194" } ], "type": { @@ -227688,7 +230876,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 179, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L179" } ] }, @@ -227728,7 +230916,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 271, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L271" } ], "type": { @@ -227755,7 +230943,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L269" } ], "type": { @@ -227775,7 +230963,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 267, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L267" } ] }, @@ -227813,7 +231001,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L257" } ], "type": { @@ -227840,7 +231028,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L253" } ], "type": { @@ -227869,7 +231057,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L251" } ], "type": { @@ -227902,7 +231090,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L261" } ], "type": { @@ -227929,7 +231117,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L259" } ], "type": { @@ -227967,7 +231155,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L249" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L249" } ], "type": { @@ -227994,7 +231182,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L255" } ], "type": { @@ -228014,7 +231202,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 247, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L247" } ] }, @@ -228046,7 +231234,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L222" } ], "type": { @@ -228086,7 +231274,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 212, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L212" } ], "type": { @@ -228115,7 +231303,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L217" } ], "type": { @@ -228155,7 +231343,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L239" } ], "type": { @@ -228213,7 +231401,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L233" } ], "type": { @@ -228233,7 +231421,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 207, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L207" } ] }, @@ -228255,7 +231443,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 276, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L276" } ], "type": { @@ -228279,7 +231467,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L275" } ], "type": { @@ -228300,7 +231488,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 278, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L278" } ], "type": { @@ -228319,7 +231507,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L277" } ], "type": { @@ -228344,7 +231532,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 274, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L274" } ] }, @@ -228368,7 +231556,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L142" } ], "type": { @@ -228389,7 +231577,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L143" } ], "type": { @@ -228409,7 +231597,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 141, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L141" } ] }, @@ -228431,7 +231619,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L203" } ], "type": { @@ -228465,7 +231653,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 204, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L204" } ], "type": { @@ -228494,7 +231682,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 202, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L202" } ] }, @@ -228518,7 +231706,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L8" } ], "type": { @@ -228538,7 +231726,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 7, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L7" } ] }, @@ -228576,7 +231764,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L636" } ], "type": { @@ -228607,7 +231795,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L637" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L637" } ], "type": { @@ -228627,7 +231815,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L635" } ], "typeParameters": [ @@ -228668,7 +231856,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L332" } ], "type": { @@ -228697,7 +231885,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L312" } ], "type": { @@ -228726,7 +231914,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L325" } ], "type": { @@ -228755,7 +231943,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L319" } ], "type": { @@ -228797,7 +231985,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L308" } ], "type": { @@ -228817,7 +232005,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 304, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L304" } ] }, @@ -228857,7 +232045,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L374" } ], "type": { @@ -228886,7 +232074,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L375" } ], "type": { @@ -228915,7 +232103,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L373" } ], "type": { @@ -228935,7 +232123,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 372, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L372" } ] }, @@ -228973,7 +232161,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L424" } ], "type": { @@ -228996,7 +232184,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 423, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L423" } ] }, @@ -229036,7 +232224,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 627, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L627" } ], "type": { @@ -229061,7 +232249,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 626, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L626" } ] }, @@ -229101,7 +232289,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L415" } ], "type": { @@ -229128,7 +232316,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L411" } ], "type": { @@ -229157,7 +232345,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 412, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L412" } ], "type": { @@ -229184,7 +232372,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L413" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L413" } ], "type": { @@ -229213,7 +232401,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L409" } ], "type": { @@ -229242,7 +232430,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L414" } ], "type": { @@ -229271,7 +232459,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L410" } ], "type": { @@ -229291,7 +232479,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 408, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L408" } ] }, @@ -229331,7 +232519,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L454" } ], "type": { @@ -229362,7 +232550,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L456" } ], "type": { @@ -229389,7 +232577,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L453" } ], "type": { @@ -229418,7 +232606,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L455" } ], "type": { @@ -229440,7 +232628,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 452, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L452" } ] }, @@ -229478,7 +232666,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L441" } ], "type": { @@ -229507,7 +232695,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 440, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L440" } ], "type": { @@ -229536,7 +232724,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L442" } ], "type": { @@ -229558,7 +232746,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 439, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L439" } ] }, @@ -229581,7 +232769,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 654, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L654" } ], "typeParameters": [ @@ -229639,7 +232827,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L8" } ], "type": { @@ -229673,7 +232861,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 62, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L8" } ] } @@ -229694,7 +232882,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 339, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L339" } ], "typeParameters": [ @@ -229797,7 +232985,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 396, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L396" } ], "type": { @@ -229835,7 +233023,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 396, "character": 79, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L396" } ] } @@ -229856,7 +233044,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 343, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L343" } ], "typeParameters": [ @@ -229891,7 +233079,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 345, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L345" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L345" } ], "type": { @@ -229913,7 +233101,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 346, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L346" } ], "type": { @@ -229933,7 +233121,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 344, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L344" } ] } @@ -229958,7 +233146,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 349, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L349" } ], "type": { @@ -229977,7 +233165,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 350, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L350" } ], "type": { @@ -229999,7 +233187,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 348, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L348" } ] } @@ -230026,7 +233214,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 5, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L5" } ], "type": { @@ -230062,7 +233250,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 391, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L391" } ], "type": { @@ -230092,7 +233280,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 391, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L391" } ] } @@ -230121,7 +233309,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 590, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L590" } ], "type": { @@ -230163,7 +233351,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 431, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L431" } ], "type": { @@ -230197,7 +233385,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "signatures": [ @@ -230231,7 +233419,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "parameters": [ @@ -230280,7 +233468,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "signatures": [ @@ -230314,7 +233502,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "parameters": [ @@ -230363,7 +233551,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 15, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L15" } ], "target": 912 @@ -230379,7 +233567,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 3, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L3" } ], "target": 48 @@ -230395,7 +233583,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L7" } ], "target": 549 @@ -230411,7 +233599,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 11, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L11" } ], "target": 536 @@ -230427,7 +233615,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L8" } ], "target": 604 @@ -230443,7 +233631,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L9" } ], "target": 672 @@ -230484,7 +233672,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L1" } ] }, @@ -230513,7 +233701,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "signatures": [ @@ -230528,7 +233716,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "parameters": [ @@ -230551,7 +233739,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "signatures": [ @@ -230566,7 +233754,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "type": { @@ -230629,7 +233817,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" } ], "type": { @@ -230654,7 +233842,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "signatures": [ @@ -230669,7 +233857,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "type": { @@ -230693,7 +233881,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "signatures": [ @@ -230727,7 +233915,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "typeParameters": [ @@ -230780,7 +233968,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "signatures": [ @@ -230795,7 +233983,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "parameters": [ @@ -230913,7 +234101,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -230947,7 +234135,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "parameters": [ @@ -230987,7 +234175,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -231002,7 +234190,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "type": { @@ -231069,7 +234257,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "signatures": [ @@ -231103,7 +234291,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "typeParameters": [ @@ -231180,7 +234368,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "signatures": [ @@ -231195,7 +234383,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "parameters": [ @@ -231297,7 +234485,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "signatures": [ @@ -231312,7 +234500,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "parameters": [ @@ -231429,7 +234617,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 5, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" } ], "implementedTypes": [ @@ -231475,7 +234663,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" } ] }, @@ -231512,7 +234700,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "signatures": [ @@ -231576,7 +234764,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "parameters": [ @@ -231626,7 +234814,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "indexSignatures": [ @@ -231641,7 +234829,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "parameters": [ @@ -231928,7 +235116,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 95, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ], "signatures": [ @@ -232008,7 +235196,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 95, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ], "parameters": [ @@ -232062,7 +235250,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 97, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L97" } ], "type": { @@ -232083,7 +235271,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 98, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" } ], "type": { @@ -232103,7 +235291,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 96, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" } ] } @@ -232128,7 +235316,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 101, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L101" } ], "type": { @@ -232147,7 +235335,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 102, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L102" } ], "type": { @@ -232169,7 +235357,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" } ] } @@ -232194,7 +235382,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 228, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" } ], "signatures": [ @@ -232274,7 +235462,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 228, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" } ], "parameters": [ @@ -232328,7 +235516,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ], "type": { @@ -232351,7 +235539,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ], "type": { @@ -232371,7 +235559,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ] } @@ -232388,7 +235576,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 231, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" } ], "type": { @@ -232408,7 +235596,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" } ] } @@ -232433,7 +235621,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 234, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L234" } ], "type": { @@ -232452,7 +235640,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 235, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" } ], "type": { @@ -232474,7 +235662,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L233" } ] } @@ -232499,7 +235687,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" } ], "signatures": [ @@ -232682,7 +235870,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" } ], "parameters": [ @@ -232726,7 +235914,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "signatures": [ @@ -232806,7 +235994,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "parameters": [ @@ -232856,7 +236044,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 162, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" } ], "type": { @@ -232885,7 +236073,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" } ], "type": { @@ -232914,7 +236102,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 166, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" } ], "type": { @@ -232943,7 +236131,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 164, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L164" } ], "type": { @@ -232985,7 +236173,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 165, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" } ], "type": { @@ -233014,7 +236202,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ] } @@ -233051,7 +236239,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 169, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" } ], "type": { @@ -233075,7 +236263,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 170, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" } ], "type": { @@ -233095,7 +236283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L168" } ] } @@ -233120,7 +236308,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 173, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L173" } ], "type": { @@ -233139,7 +236327,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 174, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L174" } ], "type": { @@ -233161,7 +236349,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L172" } ] } @@ -233189,7 +236377,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -233225,7 +236413,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -233299,7 +236487,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -233335,7 +236523,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -233381,7 +236569,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 21, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" } ], "extendedTypes": [ @@ -233415,7 +236603,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" } ], "type": { @@ -233485,7 +236673,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" } ] }, @@ -233514,7 +236702,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "signatures": [ @@ -233529,7 +236717,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "parameters": [ @@ -233563,7 +236751,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "indexSignatures": [ @@ -233578,7 +236766,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "parameters": [ @@ -233872,7 +237060,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "signatures": [ @@ -233975,7 +237163,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "parameters": [ @@ -234034,7 +237222,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" } ], "type": { @@ -234075,7 +237263,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 192, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" } ], "type": { @@ -234115,7 +237303,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -234156,7 +237344,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" } ], "type": { @@ -234178,7 +237366,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ] } @@ -234216,7 +237404,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ], "type": { @@ -234252,7 +237440,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -234272,7 +237460,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 199, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" } ] } @@ -234297,7 +237485,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -234316,7 +237504,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -234338,7 +237526,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -234363,7 +237551,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "signatures": [ @@ -234482,7 +237670,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "parameters": [ @@ -234536,7 +237724,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -234559,7 +237747,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -234579,7 +237767,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ] } @@ -234596,7 +237784,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" } ], "type": { @@ -234616,7 +237804,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ] } @@ -234641,7 +237829,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 384, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" } ], "type": { @@ -234660,7 +237848,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 385, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" } ], "type": { @@ -234682,7 +237870,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 383, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" } ] } @@ -234707,7 +237895,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "signatures": [ @@ -234826,7 +238014,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "parameters": [ @@ -234880,7 +238068,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -234903,7 +238091,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -234923,7 +238111,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ] } @@ -234940,7 +238128,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" } ], "type": { @@ -234960,7 +238148,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ] } @@ -234985,7 +238173,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" } ], "type": { @@ -235004,7 +238192,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 338, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" } ], "type": { @@ -235026,7 +238214,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 336, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" } ] } @@ -235051,7 +238239,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "signatures": [ @@ -235154,7 +238342,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "parameters": [ @@ -235208,7 +238396,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 131, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" } ], "type": { @@ -235229,7 +238417,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ], "type": { @@ -235249,7 +238437,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ] } @@ -235274,7 +238462,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" } ], "type": { @@ -235293,7 +238481,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 136, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" } ], "type": { @@ -235315,7 +238503,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ] } @@ -235340,7 +238528,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "signatures": [ @@ -235445,7 +238633,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "parameters": [ @@ -235535,7 +238723,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -235559,7 +238747,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 74, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" } ], "type": { @@ -235579,7 +238767,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ] } @@ -235604,7 +238792,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -235623,7 +238811,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "type": { @@ -235645,7 +238833,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ] } @@ -235673,7 +238861,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -235709,7 +238897,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -235783,7 +238971,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -235819,7 +239007,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -235850,7 +239038,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "signatures": [ @@ -235961,7 +239149,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "parameters": [ @@ -236020,7 +239208,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -236061,7 +239249,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ], "type": { @@ -236101,7 +239289,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 270, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" } ], "type": { @@ -236121,7 +239309,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 269, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" } ] } @@ -236158,7 +239346,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -236181,7 +239369,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -236201,7 +239389,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ] } @@ -236218,7 +239406,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -236238,7 +239426,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -236263,7 +239451,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" } ], "type": { @@ -236282,7 +239470,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" } ], "type": { @@ -236304,7 +239492,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 279, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" } ] } @@ -236344,7 +239532,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" } ], "extendedTypes": [ @@ -236386,7 +239574,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" } ] }, @@ -236415,7 +239603,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "signatures": [ @@ -236430,7 +239618,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "parameters": [ @@ -236464,7 +239652,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "indexSignatures": [ @@ -236479,7 +239667,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "parameters": [ @@ -236769,9 +239957,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 585, + "line": 600, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L600" } ], "signatures": [ @@ -236880,9 +240068,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 585, + "line": 600, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L600" } ], "parameters": [ @@ -236992,9 +240180,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 591, + "line": 606, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L591" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L606" } ], "type": { @@ -237015,9 +240203,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 591, + "line": 606, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L591" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L606" } ], "type": { @@ -237035,9 +240223,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 591, + "line": 606, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L591" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L606" } ] } @@ -237052,9 +240240,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 592, + "line": 607, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L592" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L607" } ], "type": { @@ -237072,9 +240260,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 590, + "line": 605, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L605" } ] } @@ -237097,9 +240285,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 595, + "line": 610, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L595" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L610" } ], "type": { @@ -237116,9 +240304,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 596, + "line": 611, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L596" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L611" } ], "type": { @@ -237138,9 +240326,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 594, + "line": 609, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L594" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L609" } ] } @@ -237163,9 +240351,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 365, + "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L380" } ], "signatures": [ @@ -237266,9 +240454,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 365, + "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L380" } ], "parameters": [ @@ -237333,9 +240521,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 367, + "line": 382, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L382" } ], "type": { @@ -237353,9 +240541,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 367, + "line": 382, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L382" } ] } @@ -237390,9 +240578,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -237413,9 +240601,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -237432,9 +240620,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -237451,9 +240639,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -237471,9 +240659,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ] } @@ -237488,9 +240676,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 371, + "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L371" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L386" } ], "type": { @@ -237508,9 +240696,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 369, + "line": 384, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L369" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L384" } ] } @@ -237533,9 +240721,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 374, + "line": 389, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L389" } ], "type": { @@ -237552,9 +240740,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 375, + "line": 390, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L390" } ], "type": { @@ -237574,9 +240762,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 373, + "line": 388, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L388" } ] } @@ -237599,9 +240787,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L689" } ], "signatures": [ @@ -237722,9 +240910,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L689" } ], "parameters": [ @@ -237818,9 +241006,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 680, + "line": 695, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L695" } ], "type": { @@ -237847,9 +241035,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 678, + "line": 693, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L678" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L693" } ], "type": { @@ -237885,9 +241073,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 679, + "line": 694, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L694" } ], "type": { @@ -237907,9 +241095,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 677, + "line": 692, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L692" } ] } @@ -237944,9 +241132,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 684, + "line": 699, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L699" } ], "type": { @@ -237967,9 +241155,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 684, + "line": 699, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L699" } ], "type": { @@ -237987,9 +241175,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 684, + "line": 699, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L699" } ] } @@ -238004,9 +241192,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 685, + "line": 700, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L700" } ], "type": { @@ -238024,9 +241212,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 683, + "line": 698, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L698" } ] } @@ -238049,9 +241237,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 688, + "line": 703, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L688" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L703" } ], "type": { @@ -238068,9 +241256,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 689, + "line": 704, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L704" } ], "type": { @@ -238090,9 +241278,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 687, + "line": 702, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L687" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L702" } ] } @@ -238115,9 +241303,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 769, + "line": 784, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L784" } ], "signatures": [ @@ -238218,9 +241406,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 769, + "line": 784, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L784" } ], "parameters": [ @@ -238317,9 +241505,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 772, + "line": 787, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L787" } ], "type": { @@ -238346,9 +241534,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 772, + "line": 787, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L787" } ], "type": { @@ -238375,9 +241563,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 772, + "line": 787, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L787" } ] } @@ -238412,9 +241600,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -238437,9 +241625,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -238465,9 +241653,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -238493,9 +241681,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -238522,9 +241710,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ] } @@ -238540,9 +241728,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 776, + "line": 791, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L776" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L791" } ], "type": { @@ -238560,9 +241748,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 774, + "line": 789, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L774" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L789" } ] } @@ -238585,9 +241773,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 779, + "line": 794, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L794" } ], "type": { @@ -238604,9 +241792,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 780, + "line": 795, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L780" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L795" } ], "type": { @@ -238626,9 +241814,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 778, + "line": 793, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L778" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L793" } ] } @@ -238651,9 +241839,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "signatures": [ @@ -238792,9 +241980,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "typeParameters": [ @@ -238824,9 +242012,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "type": { @@ -238845,9 +242033,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "type": { @@ -238867,9 +242055,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ] } @@ -238963,9 +242151,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 965, + "line": 980, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L965" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L980" } ], "signatures": [ @@ -239025,9 +242213,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 965, + "line": 980, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L965" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L980" } ], "parameters": [ @@ -239087,9 +242275,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 967, + "line": 982, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L982" } ], "type": { @@ -239106,9 +242294,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 968, + "line": 983, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L968" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L983" } ], "type": { @@ -239126,9 +242314,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 966, + "line": 981, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L966" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L981" } ] } @@ -239151,9 +242339,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 971, + "line": 986, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L971" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L986" } ], "type": { @@ -239170,9 +242358,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 972, + "line": 987, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L987" } ], "type": { @@ -239192,9 +242380,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 970, + "line": 985, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L985" } ] } @@ -239217,9 +242405,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1064, + "line": 1079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1064" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1079" } ], "signatures": [ @@ -239332,9 +242520,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1064, + "line": 1079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1064" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1079" } ], "parameters": [ @@ -239401,9 +242589,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1069, + "line": 1084, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1069" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1084" } ], "type": { @@ -239430,9 +242618,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1067, + "line": 1082, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1067" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1082" } ], "type": { @@ -239468,9 +242656,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1068, + "line": 1083, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1068" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1083" } ], "type": { @@ -239490,9 +242678,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1066, + "line": 1081, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1066" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1081" } ] } @@ -239517,9 +242705,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ], "type": { @@ -239540,9 +242728,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ], "type": { @@ -239560,9 +242748,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ] } @@ -239578,9 +242766,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ] } @@ -239597,9 +242785,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 928, + "line": 943, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L943" } ], "signatures": [ @@ -239675,9 +242863,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 928, + "line": 943, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L943" } ], "parameters": [ @@ -239737,9 +242925,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 930, + "line": 945, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L930" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L945" } ], "type": { @@ -239766,9 +242954,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 931, + "line": 946, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L931" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L946" } ], "type": { @@ -239786,9 +242974,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 929, + "line": 944, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L944" } ] } @@ -239811,9 +242999,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 934, + "line": 949, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L949" } ], "type": { @@ -239830,9 +243018,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 935, + "line": 950, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L935" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L950" } ], "type": { @@ -239852,9 +243040,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 933, + "line": 948, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L933" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L948" } ] } @@ -239877,9 +243065,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1293, + "line": 1308, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1308" } ], "signatures": [ @@ -240062,9 +243250,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1293, + "line": 1308, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1308" } ], "parameters": [ @@ -240164,9 +243352,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1299, + "line": 1314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1299" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1314" } ], "type": { @@ -240188,9 +243376,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1300, + "line": 1315, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1315" } ], "type": { @@ -240208,9 +243396,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1298, + "line": 1313, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1298" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1313" } ] } @@ -240233,9 +243421,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1303, + "line": 1318, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1303" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1318" } ], "type": { @@ -240252,9 +243440,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1304, + "line": 1319, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1304" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1319" } ], "type": { @@ -240274,9 +243462,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1302, + "line": 1317, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1302" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1317" } ] } @@ -240299,9 +243487,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1366, + "line": 1381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1381" } ], "signatures": [ @@ -240410,9 +243598,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1366, + "line": 1381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1381" } ], "parameters": [ @@ -240491,9 +243679,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1371, + "line": 1386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1386" } ], "type": { @@ -240512,9 +243700,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1372, + "line": 1387, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1387" } ], "type": { @@ -240532,9 +243720,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1370, + "line": 1385, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1385" } ] } @@ -240557,9 +243745,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1375, + "line": 1390, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1390" } ], "type": { @@ -240576,9 +243764,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1376, + "line": 1391, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1376" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1391" } ], "type": { @@ -240598,9 +243786,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1374, + "line": 1389, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1389" } ] } @@ -240623,9 +243811,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 522, + "line": 537, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L537" } ], "signatures": [ @@ -240734,9 +243922,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 522, + "line": 537, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L537" } ], "parameters": [ @@ -240846,9 +244034,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 528, + "line": 543, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L543" } ], "type": { @@ -240869,9 +244057,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 528, + "line": 543, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L543" } ], "type": { @@ -240889,9 +244077,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 528, + "line": 543, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L543" } ] } @@ -240906,9 +244094,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 529, + "line": 544, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L544" } ], "type": { @@ -240926,9 +244114,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 527, + "line": 542, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L542" } ] } @@ -240951,9 +244139,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 532, + "line": 547, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L532" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L547" } ], "type": { @@ -240970,9 +244158,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 533, + "line": 548, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L548" } ], "type": { @@ -240992,9 +244180,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 531, + "line": 546, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L546" } ] } @@ -241017,9 +244205,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1128, + "line": 1143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1143" } ], "signatures": [ @@ -241136,9 +244324,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1128, + "line": 1143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1143" } ], "parameters": [ @@ -241201,9 +244389,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1130, + "line": 1145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1145" } ], "type": { @@ -241225,9 +244413,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1131, + "line": 1146, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1146" } ], "type": { @@ -241245,9 +244433,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1129, + "line": 1144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1144" } ] } @@ -241270,9 +244458,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1134, + "line": 1149, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1149" } ], "type": { @@ -241289,9 +244477,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1135, + "line": 1150, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1150" } ], "type": { @@ -241311,9 +244499,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1133, + "line": 1148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1148" } ] } @@ -241341,7 +244529,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -241377,7 +244565,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -241451,7 +244639,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -241487,7 +244675,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -241516,9 +244704,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1395, + "line": 1410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1395" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1410" } ], "signatures": [ @@ -241531,9 +244719,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1395, + "line": 1410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1395" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1410" } ], "parameters": [ @@ -241565,9 +244753,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 461, + "line": 476, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" } ], "signatures": [ @@ -241734,9 +244922,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 461, + "line": 476, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" } ], "parameters": [ @@ -242002,9 +245190,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -242025,9 +245213,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -242044,9 +245232,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -242063,9 +245251,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -242083,9 +245271,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ] } @@ -242100,9 +245288,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 478, + "line": 493, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L493" } ], "type": { @@ -242120,9 +245308,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 476, + "line": 491, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L491" } ] } @@ -242145,9 +245333,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 481, + "line": 496, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ], "type": { @@ -242164,9 +245352,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 482, + "line": 497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L497" } ], "type": { @@ -242186,9 +245374,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 480, + "line": 495, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L495" } ] } @@ -242211,9 +245399,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 204, + "line": 219, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L219" } ], "signatures": [ @@ -242286,6 +245474,16 @@ } ] }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .upload('public/avatar1.png', avatarFile)\n\nif (error) {\n // Log the full error so fields like `statusCode` and `error` (the\n // Storage error name, e.g. \"Duplicate\") aren't hidden behind `error.message`.\n console.error(error)\n return\n}\n```" + } + ] + }, { "tag": "@remarks", "content": [ @@ -242380,9 +245578,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 204, + "line": 219, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L219" } ], "parameters": [ @@ -242489,9 +245687,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -242512,9 +245710,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -242531,9 +245729,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -242550,9 +245748,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -242570,9 +245768,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ] } @@ -242587,9 +245785,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 211, + "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L226" } ], "type": { @@ -242607,9 +245805,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 209, + "line": 224, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L224" } ] } @@ -242632,9 +245830,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 214, + "line": 229, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L229" } ], "type": { @@ -242651,9 +245849,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 215, + "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L230" } ], "type": { @@ -242673,9 +245871,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 213, + "line": 228, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L228" } ] } @@ -242698,9 +245896,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 259, + "line": 274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L274" } ], "signatures": [ @@ -242801,9 +245999,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 259, + "line": 274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L274" } ], "parameters": [ @@ -242959,7 +246157,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -242978,7 +246176,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -243000,7 +246198,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -243025,7 +246223,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -243046,9 +246244,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 324, + "line": 339, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L339" } ], "type": { @@ -243066,9 +246264,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 324, + "line": 339, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L339" } ], "type": { @@ -243087,9 +246285,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 324, + "line": 339, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L339" } ] } @@ -243106,7 +246304,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -243126,7 +246324,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -243171,7 +246369,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "extendedTypes": [ @@ -243206,7 +246404,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" } ] }, @@ -243248,7 +246446,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" } ], "signatures": [ @@ -243312,7 +246510,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" } ], "parameters": [ @@ -243410,7 +246608,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" } ], "signatures": [ @@ -243473,7 +246671,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" } ], "parameters": [ @@ -243544,7 +246742,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 242, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" } ], "signatures": [ @@ -243607,7 +246805,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 242, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" } ], "parameters": [ @@ -243678,7 +246876,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" } ], "signatures": [ @@ -243741,7 +246939,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" } ], "parameters": [ @@ -243785,7 +246983,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ], "signatures": [ @@ -243848,7 +247046,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ], "parameters": [ @@ -243903,7 +247101,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ], "type": { @@ -243925,7 +247123,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ] } @@ -243962,7 +247160,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" } ], "signatures": [ @@ -244025,7 +247223,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" } ], "parameters": [ @@ -244104,7 +247302,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -244141,7 +247339,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -244215,7 +247413,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -244252,7 +247450,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -244298,7 +247496,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" } ], "extendedTypes": [ @@ -244337,7 +247535,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 273, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" } ], "signatures": [ @@ -244391,7 +247589,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 273, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" } ], "parameters": [ @@ -244425,7 +247623,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 275, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" } ], "indexSignatures": [ @@ -244440,7 +247638,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 275, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" } ], "parameters": [ @@ -244728,7 +247926,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 311, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" } ], "signatures": [ @@ -244791,7 +247989,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 311, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" } ], "parameters": [ @@ -244879,7 +248077,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 390, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" } ], "signatures": [ @@ -244942,7 +248140,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 390, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" } ], "parameters": [ @@ -245013,7 +248211,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 366, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" } ], "signatures": [ @@ -245076,7 +248274,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 366, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" } ], "parameters": [ @@ -245131,7 +248329,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ], "type": { @@ -245153,7 +248351,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ] } @@ -245190,7 +248388,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" } ], "signatures": [ @@ -245253,7 +248451,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" } ], "parameters": [ @@ -245297,7 +248495,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 338, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" } ], "signatures": [ @@ -245360,7 +248558,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 338, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" } ], "parameters": [ @@ -245454,7 +248652,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -245491,7 +248689,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -245565,7 +248763,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -245602,7 +248800,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -245648,7 +248846,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 256, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256" } ], "extendedTypes": [ @@ -245687,7 +248885,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" } ], "signatures": [ @@ -245741,7 +248939,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" } ], "parameters": [ @@ -245775,7 +248973,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 467, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" } ], "indexSignatures": [ @@ -245790,7 +248988,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 467, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" } ], "parameters": [ @@ -246089,7 +249287,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" } ], "signatures": [ @@ -246152,7 +249350,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" } ], "parameters": [ @@ -246249,7 +249447,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 536, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" } ], "signatures": [ @@ -246312,7 +249510,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 536, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" } ], "parameters": [ @@ -246411,7 +249609,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 567, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" } ], "signatures": [ @@ -246474,7 +249672,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 567, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" } ], "parameters": [ @@ -246574,7 +249772,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 505, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" } ], "signatures": [ @@ -246637,7 +249835,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 505, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" } ], "parameters": [ @@ -246734,7 +249932,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 603, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" } ], "signatures": [ @@ -246797,7 +249995,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 603, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" } ], "parameters": [ @@ -246899,7 +250097,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -246936,7 +250134,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -247010,7 +250208,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -247047,7 +250245,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -247093,7 +250291,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 446, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L446" } ], "extendedTypes": [ @@ -247143,7 +250341,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" } ], "type": { @@ -247381,7 +250579,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "type": { @@ -247397,7 +250595,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "indexSignatures": [ @@ -247412,7 +250610,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "parameters": [ @@ -247449,7 +250647,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 26, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" } ] } @@ -247469,7 +250667,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" } ] }, @@ -247498,7 +250696,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" } ], "signatures": [ @@ -247513,7 +250711,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" } ], "parameters": [ @@ -247536,7 +250734,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 9, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" } ], "signatures": [ @@ -247551,7 +250749,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 9, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" } ], "type": { @@ -247614,7 +250812,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "type": { @@ -247639,7 +250837,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" } ], "signatures": [ @@ -247673,7 +250871,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" } ], "typeParameters": [ @@ -247726,7 +250924,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 23, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" } ], "signatures": [ @@ -247741,7 +250939,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 23, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" } ], "parameters": [ @@ -247865,7 +251063,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "signatures": [ @@ -247899,7 +251097,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "parameters": [ @@ -247939,7 +251137,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "signatures": [ @@ -247954,7 +251152,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "type": { @@ -248027,7 +251225,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" } ], "signatures": [ @@ -248061,7 +251259,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" } ], "typeParameters": [ @@ -248144,7 +251342,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 15, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" } ], "signatures": [ @@ -248159,7 +251357,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 15, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" } ], "parameters": [ @@ -248267,7 +251465,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 17, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" } ], "signatures": [ @@ -248282,7 +251480,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 17, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" } ], "parameters": [ @@ -248399,7 +251597,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 4, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" } ], "implementedTypes": [ @@ -248445,7 +251643,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" } ] }, @@ -248460,7 +251658,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" } ] }, @@ -248475,7 +251673,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorDataApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" } ] }, @@ -248517,7 +251715,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" } ], "type": { @@ -248542,7 +251740,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" } ], "type": { @@ -248565,7 +251763,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" } ], "type": { @@ -248590,7 +251788,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" } ], "type": { @@ -248615,7 +251813,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" } ], "type": { @@ -248640,7 +251838,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" } ], "type": { @@ -248660,7 +251858,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" } ] } @@ -248676,7 +251874,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" } ] } @@ -253670,7 +256868,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L96" } ], "type": { @@ -253689,7 +256887,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 97, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L97" } ], "type": { @@ -253708,7 +256906,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L98" } ], "type": { @@ -253727,7 +256925,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L99" } ], "type": { @@ -253746,7 +256944,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L100" } ], "type": { @@ -253765,7 +256963,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L101" } ], "type": { @@ -253784,7 +256982,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L102" } ], "type": { @@ -253803,7 +257001,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L103" } ], "type": { @@ -253822,7 +257020,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L104" } ], "type": { @@ -253841,7 +257039,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L105" } ], "type": { @@ -253860,7 +257058,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 106, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L106" } ], "type": { @@ -253879,7 +257077,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L107" } ], "type": { @@ -253898,7 +257096,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L108" } ], "type": { @@ -253917,7 +257115,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L109" } ], "type": { @@ -253936,7 +257134,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L110" } ], "type": { @@ -253956,7 +257154,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 95, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L95" } ] }, @@ -253986,7 +257184,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L44" } ], "signatures": [ @@ -254040,7 +257238,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L44" } ], "parameters": [ @@ -254083,7 +257281,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 52, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L52" } ], "type": { @@ -254312,7 +257510,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 51, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L51" } ], "type": { @@ -254349,7 +257547,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 53, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L53" } ], "type": { @@ -254372,7 +257570,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 50, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L50" } ] } @@ -254402,7 +257600,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 19, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L19" } ], "type": { @@ -254631,7 +257829,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L17" } ], "type": { @@ -254667,7 +257865,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 18, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L18" } ], "type": { @@ -254690,7 +257888,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L16" } ], "type": { @@ -254709,7 +257907,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "signatures": [ @@ -254905,7 +258103,23 @@ }, { "kind": "text", - "text": " if there is a network error in calling your function." + "text": " if there is a network error in calling your function. Log the full error object so fields like " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`context`" + }, + { + "kind": "text", + "text": ", and any structured body aren't hidden." } ] }, @@ -254915,7 +258129,7 @@ "content": [ { "kind": "code", - "text": "```js\nimport { FunctionsHttpError, FunctionsRelayError, FunctionsFetchError } from \"@supabase/supabase-js\";\n\nconst { data, error } = await supabase.functions.invoke('hello', {\n headers: {\n \"my-custom-header\": 'my-custom-header-value'\n },\n body: { foo: 'bar' }\n})\n\nif (error instanceof FunctionsHttpError) {\n const errorMessage = await error.context.json()\n console.log('Function returned an error', errorMessage)\n} else if (error instanceof FunctionsRelayError) {\n console.log('Relay error:', error.message)\n} else if (error instanceof FunctionsFetchError) {\n console.log('Fetch error:', error.message)\n}\n```" + "text": "```js\nimport { FunctionsHttpError, FunctionsRelayError, FunctionsFetchError } from \"@supabase/supabase-js\";\n\nconst { data, error } = await supabase.functions.invoke('hello', {\n headers: {\n \"my-custom-header\": 'my-custom-header-value'\n },\n body: { foo: 'bar' }\n})\n\nif (error instanceof FunctionsHttpError) {\n const errorMessage = await error.context.json()\n console.error('Function returned an error', errorMessage)\n} else if (error instanceof FunctionsRelayError) {\n console.error('Relay error:', error)\n} else if (error instanceof FunctionsFetchError) {\n console.error('Fetch error:', error)\n}\n```" } ] }, @@ -255152,7 +258366,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "typeParameters": [ @@ -255251,7 +258465,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "signatures": [ @@ -255295,7 +258509,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "parameters": [ @@ -255356,7 +258570,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 15, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L15" } ] }, @@ -255397,7 +258611,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L32" } ], "signatures": [ @@ -255412,7 +258626,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L32" } ], "parameters": [ @@ -255483,7 +258697,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -255502,7 +258716,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -255517,7 +258731,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -255540,7 +258754,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -255559,7 +258773,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -255578,7 +258792,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -255598,7 +258812,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -255626,7 +258840,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L30" } ], "extendedTypes": [ @@ -255695,7 +258909,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L58" } ], "signatures": [ @@ -255710,7 +258924,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L58" } ], "parameters": [ @@ -255758,7 +258972,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -255784,7 +258998,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -255801,7 +259015,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -255824,7 +259038,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -255843,7 +259057,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -255862,7 +259076,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -255882,7 +259096,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -255920,7 +259134,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L57" } ], "extendedTypes": [ @@ -255969,7 +259183,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L90" } ], "signatures": [ @@ -255984,7 +259198,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L90" } ], "parameters": [ @@ -256032,7 +259246,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -256058,7 +259272,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -256075,7 +259289,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -256098,7 +259312,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -256117,7 +259331,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -256136,7 +259350,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -256156,7 +259370,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -256194,7 +259408,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L89" } ], "extendedTypes": [ @@ -256243,7 +259457,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L74" } ], "signatures": [ @@ -256258,7 +259472,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L74" } ], "parameters": [ @@ -256306,7 +259520,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -256332,7 +259546,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -256349,7 +259563,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -256372,7 +259586,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -256391,7 +259605,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -256410,7 +259624,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -256430,7 +259644,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -256468,7 +259682,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 73, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L73" } ], "extendedTypes": [ @@ -256491,7 +259705,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L113" } ], "type": { @@ -256524,7 +259738,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L129" } ], "type": { @@ -256633,7 +259847,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L117" } ], "type": { @@ -256649,7 +259863,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L117" } ], "indexSignatures": [ @@ -256664,7 +259878,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L117" } ], "parameters": [ @@ -256710,7 +259924,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L121" } ], "type": { @@ -256760,7 +259974,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L125" } ], "type": { @@ -256791,7 +260005,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L140" } ], "type": { @@ -256825,7 +260039,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L145" } ], "type": { @@ -256845,7 +260059,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L113" } ] } @@ -256862,7 +260076,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L16" } ], "typeParameters": [ diff --git a/apps/docs/spec/enrichments/tsdoc_v2/functions.json b/apps/docs/spec/enrichments/tsdoc_v2/functions.json index c9c0b1943b344..284bd1f55e5ed 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/functions.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/functions.json @@ -23,7 +23,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L96" } ], "type": { @@ -42,7 +42,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 97, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L97" } ], "type": { @@ -61,7 +61,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L98" } ], "type": { @@ -80,7 +80,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L99" } ], "type": { @@ -99,7 +99,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L100" } ], "type": { @@ -118,7 +118,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L101" } ], "type": { @@ -137,7 +137,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L102" } ], "type": { @@ -156,7 +156,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L103" } ], "type": { @@ -175,7 +175,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L104" } ], "type": { @@ -194,7 +194,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L105" } ], "type": { @@ -213,7 +213,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 106, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L106" } ], "type": { @@ -232,7 +232,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L107" } ], "type": { @@ -251,7 +251,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L108" } ], "type": { @@ -270,7 +270,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L109" } ], "type": { @@ -289,7 +289,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L110" } ], "type": { @@ -309,7 +309,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 95, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L95" } ] }, @@ -339,7 +339,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L44" } ], "signatures": [ @@ -393,7 +393,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L44" } ], "parameters": [ @@ -436,7 +436,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 52, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L52" } ], "type": { @@ -665,7 +665,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 51, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L51" } ], "type": { @@ -702,7 +702,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 53, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L53" } ], "type": { @@ -725,7 +725,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 50, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L50" } ] } @@ -755,7 +755,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 19, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L19" } ], "type": { @@ -984,7 +984,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L17" } ], "type": { @@ -1020,7 +1020,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 18, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L18" } ], "type": { @@ -1043,7 +1043,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L16" } ], "type": { @@ -1062,7 +1062,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "signatures": [ @@ -1258,7 +1258,23 @@ }, { "kind": "text", - "text": " if there is a network error in calling your function." + "text": " if there is a network error in calling your function. Log the full error object so fields like " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`context`" + }, + { + "kind": "text", + "text": ", and any structured body aren't hidden." } ] }, @@ -1268,7 +1284,7 @@ "content": [ { "kind": "code", - "text": "```js\nimport { FunctionsHttpError, FunctionsRelayError, FunctionsFetchError } from \"@supabase/supabase-js\";\n\nconst { data, error } = await supabase.functions.invoke('hello', {\n headers: {\n \"my-custom-header\": 'my-custom-header-value'\n },\n body: { foo: 'bar' }\n})\n\nif (error instanceof FunctionsHttpError) {\n const errorMessage = await error.context.json()\n console.log('Function returned an error', errorMessage)\n} else if (error instanceof FunctionsRelayError) {\n console.log('Relay error:', error.message)\n} else if (error instanceof FunctionsFetchError) {\n console.log('Fetch error:', error.message)\n}\n```" + "text": "```js\nimport { FunctionsHttpError, FunctionsRelayError, FunctionsFetchError } from \"@supabase/supabase-js\";\n\nconst { data, error } = await supabase.functions.invoke('hello', {\n headers: {\n \"my-custom-header\": 'my-custom-header-value'\n },\n body: { foo: 'bar' }\n})\n\nif (error instanceof FunctionsHttpError) {\n const errorMessage = await error.context.json()\n console.error('Function returned an error', errorMessage)\n} else if (error instanceof FunctionsRelayError) {\n console.error('Relay error:', error)\n} else if (error instanceof FunctionsFetchError) {\n console.error('Fetch error:', error)\n}\n```" } ] }, @@ -1505,7 +1521,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "typeParameters": [ @@ -1604,7 +1620,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "signatures": [ @@ -1648,7 +1664,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "parameters": [ @@ -1709,7 +1725,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 15, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L15" } ] }, @@ -1750,7 +1766,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L32" } ], "signatures": [ @@ -1765,7 +1781,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L32" } ], "parameters": [ @@ -1836,7 +1852,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -1855,7 +1871,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -1870,7 +1886,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1893,7 +1909,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1912,7 +1928,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1931,7 +1947,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1951,7 +1967,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -1979,7 +1995,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L30" } ], "extendedTypes": [ @@ -2048,7 +2064,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L58" } ], "signatures": [ @@ -2063,7 +2079,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L58" } ], "parameters": [ @@ -2111,7 +2127,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2137,7 +2153,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2154,7 +2170,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2177,7 +2193,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2196,7 +2212,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2215,7 +2231,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2235,7 +2251,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2273,7 +2289,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L57" } ], "extendedTypes": [ @@ -2322,7 +2338,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L90" } ], "signatures": [ @@ -2337,7 +2353,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L90" } ], "parameters": [ @@ -2385,7 +2401,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2411,7 +2427,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2428,7 +2444,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2451,7 +2467,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2470,7 +2486,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2489,7 +2505,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2509,7 +2525,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2547,7 +2563,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L89" } ], "extendedTypes": [ @@ -2596,7 +2612,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L74" } ], "signatures": [ @@ -2611,7 +2627,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L74" } ], "parameters": [ @@ -2659,7 +2675,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2685,7 +2701,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2702,7 +2718,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2725,7 +2741,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2744,7 +2760,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2763,7 +2779,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2783,7 +2799,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2821,7 +2837,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 73, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L73" } ], "extendedTypes": [ @@ -2844,7 +2860,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L113" } ], "type": { @@ -2877,7 +2893,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L129" } ], "type": { @@ -2986,7 +3002,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L117" } ], "type": { @@ -3002,7 +3018,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L117" } ], "indexSignatures": [ @@ -3017,7 +3033,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L117" } ], "parameters": [ @@ -3063,7 +3079,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L121" } ], "type": { @@ -3113,7 +3129,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L125" } ], "type": { @@ -3144,7 +3160,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L140" } ], "type": { @@ -3178,7 +3194,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L145" } ], "type": { @@ -3198,7 +3214,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L113" } ] } @@ -3215,7 +3231,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L16" } ], "typeParameters": [ diff --git a/apps/docs/spec/enrichments/tsdoc_v2/functions_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/functions_dereferenced.json index c9c0b1943b344..284bd1f55e5ed 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/functions_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/functions_dereferenced.json @@ -23,7 +23,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L96" } ], "type": { @@ -42,7 +42,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 97, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L97" } ], "type": { @@ -61,7 +61,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L98" } ], "type": { @@ -80,7 +80,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L99" } ], "type": { @@ -99,7 +99,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L100" } ], "type": { @@ -118,7 +118,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L101" } ], "type": { @@ -137,7 +137,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L102" } ], "type": { @@ -156,7 +156,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L103" } ], "type": { @@ -175,7 +175,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L104" } ], "type": { @@ -194,7 +194,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L105" } ], "type": { @@ -213,7 +213,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 106, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L106" } ], "type": { @@ -232,7 +232,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L107" } ], "type": { @@ -251,7 +251,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L108" } ], "type": { @@ -270,7 +270,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L109" } ], "type": { @@ -289,7 +289,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L110" } ], "type": { @@ -309,7 +309,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 95, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L95" } ] }, @@ -339,7 +339,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L44" } ], "signatures": [ @@ -393,7 +393,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L44" } ], "parameters": [ @@ -436,7 +436,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 52, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L52" } ], "type": { @@ -665,7 +665,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 51, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L51" } ], "type": { @@ -702,7 +702,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 53, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L53" } ], "type": { @@ -725,7 +725,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 50, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L50" } ] } @@ -755,7 +755,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 19, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L19" } ], "type": { @@ -984,7 +984,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L17" } ], "type": { @@ -1020,7 +1020,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 18, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L18" } ], "type": { @@ -1043,7 +1043,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L16" } ], "type": { @@ -1062,7 +1062,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "signatures": [ @@ -1258,7 +1258,23 @@ }, { "kind": "text", - "text": " if there is a network error in calling your function." + "text": " if there is a network error in calling your function. Log the full error object so fields like " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`context`" + }, + { + "kind": "text", + "text": ", and any structured body aren't hidden." } ] }, @@ -1268,7 +1284,7 @@ "content": [ { "kind": "code", - "text": "```js\nimport { FunctionsHttpError, FunctionsRelayError, FunctionsFetchError } from \"@supabase/supabase-js\";\n\nconst { data, error } = await supabase.functions.invoke('hello', {\n headers: {\n \"my-custom-header\": 'my-custom-header-value'\n },\n body: { foo: 'bar' }\n})\n\nif (error instanceof FunctionsHttpError) {\n const errorMessage = await error.context.json()\n console.log('Function returned an error', errorMessage)\n} else if (error instanceof FunctionsRelayError) {\n console.log('Relay error:', error.message)\n} else if (error instanceof FunctionsFetchError) {\n console.log('Fetch error:', error.message)\n}\n```" + "text": "```js\nimport { FunctionsHttpError, FunctionsRelayError, FunctionsFetchError } from \"@supabase/supabase-js\";\n\nconst { data, error } = await supabase.functions.invoke('hello', {\n headers: {\n \"my-custom-header\": 'my-custom-header-value'\n },\n body: { foo: 'bar' }\n})\n\nif (error instanceof FunctionsHttpError) {\n const errorMessage = await error.context.json()\n console.error('Function returned an error', errorMessage)\n} else if (error instanceof FunctionsRelayError) {\n console.error('Relay error:', error)\n} else if (error instanceof FunctionsFetchError) {\n console.error('Fetch error:', error)\n}\n```" } ] }, @@ -1505,7 +1521,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 202, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L202" } ], "typeParameters": [ @@ -1604,7 +1620,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "signatures": [ @@ -1648,7 +1664,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L73" } ], "parameters": [ @@ -1709,7 +1725,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 15, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/FunctionsClient.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/FunctionsClient.ts#L15" } ] }, @@ -1750,7 +1766,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L32" } ], "signatures": [ @@ -1765,7 +1781,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L32" } ], "parameters": [ @@ -1836,7 +1852,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -1855,7 +1871,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -1870,7 +1886,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1893,7 +1909,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1912,7 +1928,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1931,7 +1947,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -1951,7 +1967,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -1979,7 +1995,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L30" } ], "extendedTypes": [ @@ -2048,7 +2064,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L58" } ], "signatures": [ @@ -2063,7 +2079,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L58" } ], "parameters": [ @@ -2111,7 +2127,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2137,7 +2153,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2154,7 +2170,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2177,7 +2193,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2196,7 +2212,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2215,7 +2231,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2235,7 +2251,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2273,7 +2289,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L57" } ], "extendedTypes": [ @@ -2322,7 +2338,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L90" } ], "signatures": [ @@ -2337,7 +2353,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L90" } ], "parameters": [ @@ -2385,7 +2401,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2411,7 +2427,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2428,7 +2444,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2451,7 +2467,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2470,7 +2486,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2489,7 +2505,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2509,7 +2525,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2547,7 +2563,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 89, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L89" } ], "extendedTypes": [ @@ -2596,7 +2612,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L74" } ], "signatures": [ @@ -2611,7 +2627,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L74" } ], "parameters": [ @@ -2659,7 +2675,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -2685,7 +2701,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "signatures": [ @@ -2702,7 +2718,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2725,7 +2741,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2744,7 +2760,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2763,7 +2779,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ], "type": { @@ -2783,7 +2799,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L38" } ] } @@ -2821,7 +2837,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 73, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L73" } ], "extendedTypes": [ @@ -2844,7 +2860,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L113" } ], "type": { @@ -2877,7 +2893,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L129" } ], "type": { @@ -2986,7 +3002,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L117" } ], "type": { @@ -3002,7 +3018,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L117" } ], "indexSignatures": [ @@ -3017,7 +3033,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L117" } ], "parameters": [ @@ -3063,7 +3079,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L121" } ], "type": { @@ -3113,7 +3129,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L125" } ], "type": { @@ -3144,7 +3160,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L140" } ], "type": { @@ -3178,7 +3194,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L145" } ], "type": { @@ -3198,7 +3214,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L113" } ] } @@ -3215,7 +3231,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/functions-js/src/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/functions-js/src/types.ts#L16" } ], "typeParameters": [ diff --git a/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json b/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json index 847a52c07c54f..50e553a359d62 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json @@ -6,7 +6,7 @@ "flags": {}, "children": [ { - "id": 1741, + "id": 1744, "name": "AuthApiError", "variant": "declaration", "kind": 128, @@ -32,7 +32,7 @@ }, "children": [ { - "id": 1742, + "id": 1745, "name": "constructor", "variant": "declaration", "kind": 512, @@ -42,12 +42,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L67" } ], "signatures": [ { - "id": 1743, + "id": 1746, "name": "AuthApiError", "variant": "signature", "kind": 16384, @@ -57,12 +57,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L67" } ], "parameters": [ { - "id": 1744, + "id": 1747, "name": "message", "variant": "param", "kind": 32768, @@ -73,7 +73,7 @@ } }, { - "id": 1745, + "id": 1748, "name": "status", "variant": "param", "kind": 32768, @@ -84,7 +84,7 @@ } }, { - "id": 1746, + "id": 1749, "name": "code", "variant": "param", "kind": 32768, @@ -106,25 +106,25 @@ ], "type": { "type": "reference", - "target": 1741, + "target": 1744, "name": "AuthApiError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1725, + "target": 1728, "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1724, + "target": 1727, "name": "AuthError.constructor" } }, { - "id": 1748, + "id": 1751, "name": "code", "variant": "declaration", "kind": 1024, @@ -153,7 +153,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -173,7 +173,7 @@ { "type": "reflection", "declaration": { - "id": 1749, + "id": 1752, "name": "__type", "variant": "declaration", "kind": 65536, @@ -195,12 +195,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1729, + "target": 1732, "name": "AuthError.code" } }, { - "id": 1747, + "id": 1750, "name": "status", "variant": "declaration", "kind": 1024, @@ -218,7 +218,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L65" } ], "type": { @@ -227,12 +227,12 @@ }, "overwrites": { "type": "reference", - "target": 1731, + "target": 1734, "name": "AuthError.status" } }, { - "id": 1751, + "id": 1754, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -244,12 +244,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1752, + "id": 1755, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -261,20 +261,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1753, + "id": 1756, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1757, + "id": 1760, "name": "code", "variant": "declaration", "kind": 1024, @@ -284,7 +284,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -304,7 +304,7 @@ { "type": "reflection", "declaration": { - "id": 1758, + "id": 1761, "name": "__type", "variant": "declaration", "kind": 65536, @@ -326,7 +326,7 @@ } }, { - "id": 1755, + "id": 1758, "name": "message", "variant": "declaration", "kind": 1024, @@ -336,7 +336,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -345,7 +345,7 @@ } }, { - "id": 1754, + "id": 1757, "name": "name", "variant": "declaration", "kind": 1024, @@ -355,7 +355,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -364,7 +364,7 @@ } }, { - "id": 1756, + "id": 1759, "name": "status", "variant": "declaration", "kind": 1024, @@ -374,7 +374,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -395,7 +395,7 @@ "groups": [ { "title": "Properties", - "children": [1757, 1755, 1754, 1756] + "children": [1760, 1758, 1757, 1759] } ], "sources": [ @@ -403,21 +403,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1734, + "target": 1737, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1733, + "target": 1736, "name": "AuthError.toJSON" } } @@ -425,15 +425,15 @@ "groups": [ { "title": "Constructors", - "children": [1742] + "children": [1745] }, { "title": "Properties", - "children": [1748, 1747] + "children": [1751, 1750] }, { "title": "Methods", - "children": [1751] + "children": [1754] } ], "sources": [ @@ -441,20 +441,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 64, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L64" } ], "extendedTypes": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1723, + "id": 1726, "name": "AuthError", "variant": "declaration", "kind": 128, @@ -480,7 +480,7 @@ }, "children": [ { - "id": 1724, + "id": 1727, "name": "constructor", "variant": "declaration", "kind": 512, @@ -490,12 +490,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L28" } ], "signatures": [ { - "id": 1725, + "id": 1728, "name": "AuthError", "variant": "signature", "kind": 16384, @@ -505,12 +505,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L28" } ], "parameters": [ { - "id": 1726, + "id": 1729, "name": "message", "variant": "param", "kind": 32768, @@ -521,7 +521,7 @@ } }, { - "id": 1727, + "id": 1730, "name": "status", "variant": "param", "kind": 32768, @@ -534,7 +534,7 @@ } }, { - "id": 1728, + "id": 1731, "name": "code", "variant": "param", "kind": 32768, @@ -549,7 +549,7 @@ ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -567,7 +567,7 @@ } }, { - "id": 1729, + "id": 1732, "name": "code", "variant": "declaration", "kind": 1024, @@ -594,7 +594,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -614,7 +614,7 @@ { "type": "reflection", "declaration": { - "id": 1730, + "id": 1733, "name": "__type", "variant": "declaration", "kind": 65536, @@ -636,7 +636,7 @@ } }, { - "id": 1731, + "id": 1734, "name": "status", "variant": "declaration", "kind": 1024, @@ -654,7 +654,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -672,7 +672,7 @@ } }, { - "id": 1733, + "id": 1736, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -682,12 +682,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1734, + "id": 1737, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -697,20 +697,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1735, + "id": 1738, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1739, + "id": 1742, "name": "code", "variant": "declaration", "kind": 1024, @@ -720,7 +720,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -740,7 +740,7 @@ { "type": "reflection", "declaration": { - "id": 1740, + "id": 1743, "name": "__type", "variant": "declaration", "kind": 65536, @@ -762,7 +762,7 @@ } }, { - "id": 1737, + "id": 1740, "name": "message", "variant": "declaration", "kind": 1024, @@ -772,7 +772,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -781,7 +781,7 @@ } }, { - "id": 1736, + "id": 1739, "name": "name", "variant": "declaration", "kind": 1024, @@ -791,7 +791,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -800,7 +800,7 @@ } }, { - "id": 1738, + "id": 1741, "name": "status", "variant": "declaration", "kind": 1024, @@ -810,7 +810,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -831,7 +831,7 @@ "groups": [ { "title": "Properties", - "children": [1739, 1737, 1736, 1738] + "children": [1742, 1740, 1739, 1741] } ], "sources": [ @@ -839,7 +839,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -851,15 +851,15 @@ "groups": [ { "title": "Constructors", - "children": [1724] + "children": [1727] }, { "title": "Properties", - "children": [1729, 1731] + "children": [1732, 1734] }, { "title": "Methods", - "children": [1733] + "children": [1736] } ], "sources": [ @@ -867,7 +867,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 14, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -884,23 +884,23 @@ "extendedBy": [ { "type": "reference", - "target": 1741, + "target": 1744, "name": "AuthApiError" }, { "type": "reference", - "target": 1759, + "target": 1762, "name": "AuthUnknownError" }, { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError" } ] }, { - "id": 1846, + "id": 1849, "name": "AuthImplicitGrantRedirectError", "variant": "declaration", "kind": 128, @@ -926,7 +926,7 @@ }, "children": [ { - "id": 1847, + "id": 1850, "name": "constructor", "variant": "declaration", "kind": 512, @@ -936,12 +936,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "signatures": [ { - "id": 1848, + "id": 1851, "name": "AuthImplicitGrantRedirectError", "variant": "signature", "kind": 16384, @@ -951,12 +951,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "parameters": [ { - "id": 1849, + "id": 1852, "name": "message", "variant": "param", "kind": 32768, @@ -967,7 +967,7 @@ } }, { - "id": 1850, + "id": 1853, "name": "details", "variant": "param", "kind": 32768, @@ -982,14 +982,14 @@ { "type": "reflection", "declaration": { - "id": 1851, + "id": 1854, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1853, + "id": 1856, "name": "code", "variant": "declaration", "kind": 1024, @@ -999,7 +999,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -1008,7 +1008,7 @@ } }, { - "id": 1852, + "id": 1855, "name": "error", "variant": "declaration", "kind": 1024, @@ -1018,7 +1018,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -1030,7 +1030,7 @@ "groups": [ { "title": "Properties", - "children": [1853, 1852] + "children": [1856, 1855] } ], "sources": [ @@ -1038,7 +1038,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ] } @@ -1050,25 +1050,25 @@ ], "type": { "type": "reference", - "target": 1846, + "target": 1849, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1872, + "id": 1875, "name": "code", "variant": "declaration", "kind": 1024, @@ -1097,7 +1097,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -1117,7 +1117,7 @@ { "type": "reflection", "declaration": { - "id": 1873, + "id": 1876, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1139,12 +1139,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1854, + "id": 1857, "name": "details", "variant": "declaration", "kind": 1024, @@ -1154,7 +1154,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -1167,14 +1167,14 @@ { "type": "reflection", "declaration": { - "id": 1855, + "id": 1858, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1857, + "id": 1860, "name": "code", "variant": "declaration", "kind": 1024, @@ -1184,7 +1184,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -1193,7 +1193,7 @@ } }, { - "id": 1856, + "id": 1859, "name": "error", "variant": "declaration", "kind": 1024, @@ -1203,7 +1203,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -1215,7 +1215,7 @@ "groups": [ { "title": "Properties", - "children": [1857, 1856] + "children": [1860, 1859] } ], "sources": [ @@ -1223,7 +1223,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" } ] } @@ -1233,7 +1233,7 @@ "defaultValue": "null" }, { - "id": 1870, + "id": 1873, "name": "name", "variant": "declaration", "kind": 1024, @@ -1245,7 +1245,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -1254,12 +1254,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1871, + "id": 1874, "name": "status", "variant": "declaration", "kind": 1024, @@ -1279,7 +1279,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -1288,12 +1288,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1858, + "id": 1861, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1303,12 +1303,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L196" } ], "signatures": [ { - "id": 1859, + "id": 1862, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1318,20 +1318,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L196" } ], "type": { "type": "reflection", "declaration": { - "id": 1860, + "id": 1863, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1864, + "id": 1867, "name": "code", "variant": "declaration", "kind": 1024, @@ -1341,7 +1341,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 200, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L200" } ], "type": { @@ -1361,7 +1361,7 @@ { "type": "reflection", "declaration": { - "id": 1865, + "id": 1868, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1383,7 +1383,7 @@ } }, { - "id": 1866, + "id": 1869, "name": "details", "variant": "declaration", "kind": 1024, @@ -1393,7 +1393,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -1406,14 +1406,14 @@ { "type": "reflection", "declaration": { - "id": 1867, + "id": 1870, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1869, + "id": 1872, "name": "code", "variant": "declaration", "kind": 1024, @@ -1423,7 +1423,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -1432,7 +1432,7 @@ } }, { - "id": 1868, + "id": 1871, "name": "error", "variant": "declaration", "kind": 1024, @@ -1442,7 +1442,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -1454,7 +1454,7 @@ "groups": [ { "title": "Properties", - "children": [1869, 1868] + "children": [1872, 1871] } ], "sources": [ @@ -1462,7 +1462,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" } ] } @@ -1471,7 +1471,7 @@ } }, { - "id": 1862, + "id": 1865, "name": "message", "variant": "declaration", "kind": 1024, @@ -1481,7 +1481,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 198, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L198" } ], "type": { @@ -1490,7 +1490,7 @@ } }, { - "id": 1861, + "id": 1864, "name": "name", "variant": "declaration", "kind": 1024, @@ -1500,7 +1500,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 197, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L197" } ], "type": { @@ -1509,7 +1509,7 @@ } }, { - "id": 1863, + "id": 1866, "name": "status", "variant": "declaration", "kind": 1024, @@ -1519,7 +1519,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 199, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L199" } ], "type": { @@ -1540,7 +1540,7 @@ "groups": [ { "title": "Properties", - "children": [1864, 1866, 1862, 1861, 1863] + "children": [1867, 1869, 1865, 1864, 1866] } ], "sources": [ @@ -1548,21 +1548,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L196" } ] } }, "overwrites": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -1570,15 +1570,15 @@ "groups": [ { "title": "Constructors", - "children": [1847] + "children": [1850] }, { "title": "Properties", - "children": [1872, 1854, 1870, 1871] + "children": [1875, 1857, 1873, 1874] }, { "title": "Methods", - "children": [1858] + "children": [1861] } ], "sources": [ @@ -1586,20 +1586,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 189, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L189" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1829, + "id": 1832, "name": "AuthInvalidCredentialsError", "variant": "declaration", "kind": 128, @@ -1625,7 +1625,7 @@ }, "children": [ { - "id": 1830, + "id": 1833, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1635,12 +1635,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L171" } ], "signatures": [ { - "id": 1831, + "id": 1834, "name": "AuthInvalidCredentialsError", "variant": "signature", "kind": 16384, @@ -1650,12 +1650,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L171" } ], "parameters": [ { - "id": 1832, + "id": 1835, "name": "message", "variant": "param", "kind": 32768, @@ -1668,25 +1668,25 @@ ], "type": { "type": "reference", - "target": 1829, + "target": 1832, "name": "AuthInvalidCredentialsError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1835, + "id": 1838, "name": "code", "variant": "declaration", "kind": 1024, @@ -1715,7 +1715,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -1735,7 +1735,7 @@ { "type": "reflection", "declaration": { - "id": 1836, + "id": 1839, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1757,12 +1757,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1833, + "id": 1836, "name": "name", "variant": "declaration", "kind": 1024, @@ -1774,7 +1774,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -1783,12 +1783,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1834, + "id": 1837, "name": "status", "variant": "declaration", "kind": 1024, @@ -1808,7 +1808,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -1817,12 +1817,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1838, + "id": 1841, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1834,12 +1834,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1839, + "id": 1842, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1851,20 +1851,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1840, + "id": 1843, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1844, + "id": 1847, "name": "code", "variant": "declaration", "kind": 1024, @@ -1874,7 +1874,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -1894,7 +1894,7 @@ { "type": "reflection", "declaration": { - "id": 1845, + "id": 1848, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1916,7 +1916,7 @@ } }, { - "id": 1842, + "id": 1845, "name": "message", "variant": "declaration", "kind": 1024, @@ -1926,7 +1926,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -1935,7 +1935,7 @@ } }, { - "id": 1841, + "id": 1844, "name": "name", "variant": "declaration", "kind": 1024, @@ -1945,7 +1945,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -1954,7 +1954,7 @@ } }, { - "id": 1843, + "id": 1846, "name": "status", "variant": "declaration", "kind": 1024, @@ -1964,7 +1964,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -1985,7 +1985,7 @@ "groups": [ { "title": "Properties", - "children": [1844, 1842, 1841, 1843] + "children": [1847, 1845, 1844, 1846] } ], "sources": [ @@ -1993,21 +1993,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -2015,15 +2015,15 @@ "groups": [ { "title": "Constructors", - "children": [1830] + "children": [1833] }, { "title": "Properties", - "children": [1835, 1833, 1834] + "children": [1838, 1836, 1837] }, { "title": "Methods", - "children": [1838] + "children": [1841] } ], "sources": [ @@ -2031,20 +2031,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 170, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L170" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1959, + "id": 1979, "name": "AuthInvalidJwtError", "variant": "declaration", "kind": 128, @@ -2070,7 +2070,7 @@ }, "children": [ { - "id": 1960, + "id": 1980, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2078,14 +2078,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 356, + "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L388" } ], "signatures": [ { - "id": 1961, + "id": 1981, "name": "AuthInvalidJwtError", "variant": "signature", "kind": 16384, @@ -2093,14 +2093,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 356, + "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L388" } ], "parameters": [ { - "id": 1962, + "id": 1982, "name": "message", "variant": "param", "kind": 32768, @@ -2113,25 +2113,25 @@ ], "type": { "type": "reference", - "target": 1959, + "target": 1979, "name": "AuthInvalidJwtError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1965, + "id": 1985, "name": "code", "variant": "declaration", "kind": 1024, @@ -2160,7 +2160,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -2180,7 +2180,7 @@ { "type": "reflection", "declaration": { - "id": 1966, + "id": 1986, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2202,12 +2202,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1963, + "id": 1983, "name": "name", "variant": "declaration", "kind": 1024, @@ -2219,7 +2219,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -2228,12 +2228,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1964, + "id": 1984, "name": "status", "variant": "declaration", "kind": 1024, @@ -2253,7 +2253,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -2262,12 +2262,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1968, + "id": 1988, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2279,12 +2279,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1969, + "id": 1989, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2296,20 +2296,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1970, + "id": 1990, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1974, + "id": 1994, "name": "code", "variant": "declaration", "kind": 1024, @@ -2319,7 +2319,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -2339,7 +2339,7 @@ { "type": "reflection", "declaration": { - "id": 1975, + "id": 1995, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2361,7 +2361,7 @@ } }, { - "id": 1972, + "id": 1992, "name": "message", "variant": "declaration", "kind": 1024, @@ -2371,7 +2371,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -2380,7 +2380,7 @@ } }, { - "id": 1971, + "id": 1991, "name": "name", "variant": "declaration", "kind": 1024, @@ -2390,7 +2390,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -2399,7 +2399,7 @@ } }, { - "id": 1973, + "id": 1993, "name": "status", "variant": "declaration", "kind": 1024, @@ -2409,7 +2409,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -2430,7 +2430,7 @@ "groups": [ { "title": "Properties", - "children": [1974, 1972, 1971, 1973] + "children": [1994, 1992, 1991, 1993] } ], "sources": [ @@ -2438,21 +2438,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -2460,36 +2460,36 @@ "groups": [ { "title": "Constructors", - "children": [1960] + "children": [1980] }, { "title": "Properties", - "children": [1965, 1963, 1964] + "children": [1985, 1983, 1984] }, { "title": "Methods", - "children": [1968] + "children": [1988] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 355, + "line": 387, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L387" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1813, + "id": 1816, "name": "AuthInvalidTokenResponseError", "variant": "declaration", "kind": 128, @@ -2515,7 +2515,7 @@ }, "children": [ { - "id": 1814, + "id": 1817, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2525,12 +2525,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L155" } ], "signatures": [ { - "id": 1815, + "id": 1818, "name": "AuthInvalidTokenResponseError", "variant": "signature", "kind": 16384, @@ -2540,30 +2540,30 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L155" } ], "type": { "type": "reference", - "target": 1813, + "target": 1816, "name": "AuthInvalidTokenResponseError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1818, + "id": 1821, "name": "code", "variant": "declaration", "kind": 1024, @@ -2592,7 +2592,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -2612,7 +2612,7 @@ { "type": "reflection", "declaration": { - "id": 1819, + "id": 1822, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2634,12 +2634,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1816, + "id": 1819, "name": "name", "variant": "declaration", "kind": 1024, @@ -2651,7 +2651,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -2660,12 +2660,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1817, + "id": 1820, "name": "status", "variant": "declaration", "kind": 1024, @@ -2685,7 +2685,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -2694,12 +2694,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1821, + "id": 1824, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2711,12 +2711,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1822, + "id": 1825, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2728,20 +2728,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1823, + "id": 1826, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1827, + "id": 1830, "name": "code", "variant": "declaration", "kind": 1024, @@ -2751,7 +2751,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -2771,7 +2771,7 @@ { "type": "reflection", "declaration": { - "id": 1828, + "id": 1831, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2793,7 +2793,7 @@ } }, { - "id": 1825, + "id": 1828, "name": "message", "variant": "declaration", "kind": 1024, @@ -2803,7 +2803,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -2812,7 +2812,7 @@ } }, { - "id": 1824, + "id": 1827, "name": "name", "variant": "declaration", "kind": 1024, @@ -2822,7 +2822,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -2831,7 +2831,7 @@ } }, { - "id": 1826, + "id": 1829, "name": "status", "variant": "declaration", "kind": 1024, @@ -2841,7 +2841,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -2862,7 +2862,7 @@ "groups": [ { "title": "Properties", - "children": [1827, 1825, 1824, 1826] + "children": [1830, 1828, 1827, 1829] } ], "sources": [ @@ -2870,21 +2870,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -2892,15 +2892,15 @@ "groups": [ { "title": "Constructors", - "children": [1814] + "children": [1817] }, { "title": "Properties", - "children": [1818, 1816, 1817] + "children": [1821, 1819, 1820] }, { "title": "Methods", - "children": [1821] + "children": [1824] } ], "sources": [ @@ -2908,20 +2908,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 154, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L154" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1904, + "id": 1907, "name": "AuthPKCECodeVerifierMissingError", "variant": "declaration", "kind": 128, @@ -2947,7 +2947,7 @@ }, "children": [ { - "id": 1905, + "id": 1908, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2957,12 +2957,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L261" } ], "signatures": [ { - "id": 1906, + "id": 1909, "name": "AuthPKCECodeVerifierMissingError", "variant": "signature", "kind": 16384, @@ -2972,30 +2972,30 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L261" } ], "type": { "type": "reference", - "target": 1904, + "target": 1907, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1909, + "id": 1912, "name": "code", "variant": "declaration", "kind": 1024, @@ -3024,7 +3024,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -3044,7 +3044,7 @@ { "type": "reflection", "declaration": { - "id": 1910, + "id": 1913, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3066,12 +3066,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1907, + "id": 1910, "name": "name", "variant": "declaration", "kind": 1024, @@ -3083,7 +3083,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -3092,12 +3092,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1908, + "id": 1911, "name": "status", "variant": "declaration", "kind": 1024, @@ -3117,7 +3117,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -3126,12 +3126,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1912, + "id": 1915, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3143,12 +3143,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1913, + "id": 1916, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3160,20 +3160,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1914, + "id": 1917, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1918, + "id": 1921, "name": "code", "variant": "declaration", "kind": 1024, @@ -3183,7 +3183,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -3203,7 +3203,7 @@ { "type": "reflection", "declaration": { - "id": 1919, + "id": 1922, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3225,7 +3225,7 @@ } }, { - "id": 1916, + "id": 1919, "name": "message", "variant": "declaration", "kind": 1024, @@ -3235,7 +3235,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -3244,7 +3244,7 @@ } }, { - "id": 1915, + "id": 1918, "name": "name", "variant": "declaration", "kind": 1024, @@ -3254,7 +3254,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -3263,7 +3263,7 @@ } }, { - "id": 1917, + "id": 1920, "name": "status", "variant": "declaration", "kind": 1024, @@ -3273,7 +3273,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -3294,7 +3294,7 @@ "groups": [ { "title": "Properties", - "children": [1918, 1916, 1915, 1917] + "children": [1921, 1919, 1918, 1920] } ], "sources": [ @@ -3302,21 +3302,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -3324,15 +3324,15 @@ "groups": [ { "title": "Constructors", - "children": [1905] + "children": [1908] }, { "title": "Properties", - "children": [1909, 1907, 1908] + "children": [1912, 1910, 1911] }, { "title": "Methods", - "children": [1912] + "children": [1915] } ], "sources": [ @@ -3340,20 +3340,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 260, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L260" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1875, + "id": 1878, "name": "AuthPKCEGrantCodeExchangeError", "variant": "declaration", "kind": 128, @@ -3379,7 +3379,7 @@ }, "children": [ { - "id": 1876, + "id": 1879, "name": "constructor", "variant": "declaration", "kind": 512, @@ -3389,12 +3389,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ], "signatures": [ { - "id": 1877, + "id": 1880, "name": "AuthPKCEGrantCodeExchangeError", "variant": "signature", "kind": 16384, @@ -3404,12 +3404,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ], "parameters": [ { - "id": 1878, + "id": 1881, "name": "message", "variant": "param", "kind": 32768, @@ -3420,7 +3420,7 @@ } }, { - "id": 1879, + "id": 1882, "name": "details", "variant": "param", "kind": 32768, @@ -3435,14 +3435,14 @@ { "type": "reflection", "declaration": { - "id": 1880, + "id": 1883, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1882, + "id": 1885, "name": "code", "variant": "declaration", "kind": 1024, @@ -3452,7 +3452,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -3461,7 +3461,7 @@ } }, { - "id": 1881, + "id": 1884, "name": "error", "variant": "declaration", "kind": 1024, @@ -3471,7 +3471,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -3483,7 +3483,7 @@ "groups": [ { "title": "Properties", - "children": [1882, 1881] + "children": [1885, 1884] } ], "sources": [ @@ -3491,7 +3491,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ] } @@ -3503,25 +3503,25 @@ ], "type": { "type": "reference", - "target": 1875, + "target": 1878, "name": "AuthPKCEGrantCodeExchangeError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1901, + "id": 1904, "name": "code", "variant": "declaration", "kind": 1024, @@ -3550,7 +3550,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -3570,7 +3570,7 @@ { "type": "reflection", "declaration": { - "id": 1902, + "id": 1905, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3592,12 +3592,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1883, + "id": 1886, "name": "details", "variant": "declaration", "kind": 1024, @@ -3607,7 +3607,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -3620,14 +3620,14 @@ { "type": "reflection", "declaration": { - "id": 1884, + "id": 1887, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1886, + "id": 1889, "name": "code", "variant": "declaration", "kind": 1024, @@ -3637,7 +3637,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -3646,7 +3646,7 @@ } }, { - "id": 1885, + "id": 1888, "name": "error", "variant": "declaration", "kind": 1024, @@ -3656,7 +3656,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -3668,7 +3668,7 @@ "groups": [ { "title": "Properties", - "children": [1886, 1885] + "children": [1889, 1888] } ], "sources": [ @@ -3676,7 +3676,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" } ] } @@ -3686,7 +3686,7 @@ "defaultValue": "null" }, { - "id": 1899, + "id": 1902, "name": "name", "variant": "declaration", "kind": 1024, @@ -3698,7 +3698,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -3707,12 +3707,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1900, + "id": 1903, "name": "status", "variant": "declaration", "kind": 1024, @@ -3732,7 +3732,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -3741,12 +3741,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1887, + "id": 1890, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3756,12 +3756,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L234" } ], "signatures": [ { - "id": 1888, + "id": 1891, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3771,20 +3771,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L234" } ], "type": { "type": "reflection", "declaration": { - "id": 1889, + "id": 1892, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1893, + "id": 1896, "name": "code", "variant": "declaration", "kind": 1024, @@ -3794,7 +3794,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 238, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L238" } ], "type": { @@ -3814,7 +3814,7 @@ { "type": "reflection", "declaration": { - "id": 1894, + "id": 1897, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3836,7 +3836,7 @@ } }, { - "id": 1895, + "id": 1898, "name": "details", "variant": "declaration", "kind": 1024, @@ -3846,7 +3846,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -3859,14 +3859,14 @@ { "type": "reflection", "declaration": { - "id": 1896, + "id": 1899, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1898, + "id": 1901, "name": "code", "variant": "declaration", "kind": 1024, @@ -3876,7 +3876,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -3885,7 +3885,7 @@ } }, { - "id": 1897, + "id": 1900, "name": "error", "variant": "declaration", "kind": 1024, @@ -3895,7 +3895,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -3907,7 +3907,7 @@ "groups": [ { "title": "Properties", - "children": [1898, 1897] + "children": [1901, 1900] } ], "sources": [ @@ -3915,7 +3915,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" } ] } @@ -3924,7 +3924,7 @@ } }, { - "id": 1891, + "id": 1894, "name": "message", "variant": "declaration", "kind": 1024, @@ -3934,7 +3934,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 236, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L236" } ], "type": { @@ -3943,7 +3943,7 @@ } }, { - "id": 1890, + "id": 1893, "name": "name", "variant": "declaration", "kind": 1024, @@ -3953,7 +3953,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L235" } ], "type": { @@ -3962,7 +3962,7 @@ } }, { - "id": 1892, + "id": 1895, "name": "status", "variant": "declaration", "kind": 1024, @@ -3972,7 +3972,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 237, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L237" } ], "type": { @@ -3993,7 +3993,7 @@ "groups": [ { "title": "Properties", - "children": [1893, 1895, 1891, 1890, 1892] + "children": [1896, 1898, 1894, 1893, 1895] } ], "sources": [ @@ -4001,21 +4001,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L234" } ] } }, "overwrites": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -4023,15 +4023,15 @@ "groups": [ { "title": "Constructors", - "children": [1876] + "children": [1879] }, { "title": "Properties", - "children": [1901, 1883, 1899, 1900] + "children": [1904, 1886, 1902, 1903] }, { "title": "Methods", - "children": [1887] + "children": [1890] } ], "sources": [ @@ -4039,21 +4039,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 226, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L226" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1920, - "name": "AuthRetryableFetchError", + "id": 1941, + "name": "AuthRefreshDiscardedError", "variant": "declaration", "kind": 128, "flags": {}, @@ -4061,7 +4061,23 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a transient fetch issue occurs." + "text": "Returned when the server rotated a refresh token successfully but the\nclient chose not to persist the rotated tokens because the local session\nchanged mid-flight. Usually means a concurrent " + }, + { + "kind": "code", + "text": "`signOut`" + }, + { + "kind": "text", + "text": " cleared storage\nbetween when the refresh started and when it came back.\n\nSet on the " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " field of the refresh result so callers can tell \"we\ngot rotated tokens but threw them away\" apart from \"the refresh failed.\"\nThe rotated session on the server will be picked up on the next refresh\nvia GoTrue's parent-of-active path." } ], "blockTags": [ @@ -4070,7 +4086,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" + "text": "```ts\nimport { isAuthRefreshDiscardedError } from '@supabase/auth-js'\n\nif (isAuthRefreshDiscardedError(error)) {\n // Concurrent signOut/sign-in raced our refresh. Treat as a no-op.\n}\n```" } ] } @@ -4078,7 +4094,7 @@ }, "children": [ { - "id": 1921, + "id": 1942, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4086,29 +4102,29 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 291, + "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L321" } ], "signatures": [ { - "id": 1922, - "name": "AuthRetryableFetchError", + "id": 1943, + "name": "AuthRefreshDiscardedError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 291, + "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L321" } ], "parameters": [ { - "id": 1923, + "id": 1944, "name": "message", "variant": "param", "kind": 32768, @@ -4116,41 +4132,31 @@ "type": { "type": "intrinsic", "name": "string" - } - }, - { - "id": 1924, - "name": "status", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } + }, + "defaultValue": "'Refresh result discarded: session state changed mid-flight (e.g., concurrent signOut)'" } ], "type": { "type": "reference", - "target": 1920, - "name": "AuthRetryableFetchError", + "target": 1941, + "name": "AuthRefreshDiscardedError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1927, + "id": 1947, "name": "code", "variant": "declaration", "kind": 1024, @@ -4179,7 +4185,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -4199,7 +4205,7 @@ { "type": "reflection", "declaration": { - "id": 1928, + "id": 1948, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4221,12 +4227,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1925, + "id": 1945, "name": "name", "variant": "declaration", "kind": 1024, @@ -4238,7 +4244,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -4247,12 +4253,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1926, + "id": 1946, "name": "status", "variant": "declaration", "kind": 1024, @@ -4272,7 +4278,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -4281,12 +4287,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1930, + "id": 1950, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4298,12 +4304,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1931, + "id": 1951, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4315,20 +4321,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1932, + "id": 1952, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1936, + "id": 1956, "name": "code", "variant": "declaration", "kind": 1024, @@ -4338,7 +4344,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -4358,7 +4364,7 @@ { "type": "reflection", "declaration": { - "id": 1937, + "id": 1957, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4380,7 +4386,7 @@ } }, { - "id": 1934, + "id": 1954, "name": "message", "variant": "declaration", "kind": 1024, @@ -4390,7 +4396,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -4399,7 +4405,7 @@ } }, { - "id": 1933, + "id": 1953, "name": "name", "variant": "declaration", "kind": 1024, @@ -4409,7 +4415,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -4418,7 +4424,7 @@ } }, { - "id": 1935, + "id": 1955, "name": "status", "variant": "declaration", "kind": 1024, @@ -4428,7 +4434,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -4449,7 +4455,7 @@ "groups": [ { "title": "Properties", - "children": [1936, 1934, 1933, 1935] + "children": [1956, 1954, 1953, 1955] } ], "sources": [ @@ -4457,21 +4463,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -4479,37 +4485,37 @@ "groups": [ { "title": "Constructors", - "children": [1921] + "children": [1942] }, { "title": "Properties", - "children": [1927, 1925, 1926] + "children": [1947, 1945, 1946] }, { "title": "Methods", - "children": [1930] + "children": [1950] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 290, + "line": 320, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L320" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1797, - "name": "AuthSessionMissingError", + "id": 1923, + "name": "AuthRetryableFetchError", "variant": "declaration", "kind": 128, "flags": {}, @@ -4517,7 +4523,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when an operation requires a session but none is present." + "text": "Error thrown when a transient fetch issue occurs." } ], "blockTags": [ @@ -4526,7 +4532,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" + "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" } ] } @@ -4534,7 +4540,7 @@ }, "children": [ { - "id": 1798, + "id": 1924, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4542,47 +4548,71 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 135, + "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L291" } ], "signatures": [ { - "id": 1799, - "name": "AuthSessionMissingError", + "id": 1925, + "name": "AuthRetryableFetchError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 135, + "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L291" + } + ], + "parameters": [ + { + "id": 1926, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1927, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } } ], "type": { "type": "reference", - "target": 1797, - "name": "AuthSessionMissingError", + "target": 1923, + "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1802, + "id": 1930, "name": "code", "variant": "declaration", "kind": 1024, @@ -4611,7 +4641,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -4631,7 +4661,7 @@ { "type": "reflection", "declaration": { - "id": 1803, + "id": 1931, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4653,12 +4683,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1800, + "id": 1928, "name": "name", "variant": "declaration", "kind": 1024, @@ -4670,7 +4700,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -4679,12 +4709,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1801, + "id": 1929, "name": "status", "variant": "declaration", "kind": 1024, @@ -4704,7 +4734,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -4713,12 +4743,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1805, + "id": 1933, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4730,12 +4760,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1806, + "id": 1934, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4747,20 +4777,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1807, + "id": 1935, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1811, + "id": 1939, "name": "code", "variant": "declaration", "kind": 1024, @@ -4770,7 +4800,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -4790,7 +4820,7 @@ { "type": "reflection", "declaration": { - "id": 1812, + "id": 1940, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4812,7 +4842,7 @@ } }, { - "id": 1809, + "id": 1937, "name": "message", "variant": "declaration", "kind": 1024, @@ -4822,7 +4852,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -4831,7 +4861,7 @@ } }, { - "id": 1808, + "id": 1936, "name": "name", "variant": "declaration", "kind": 1024, @@ -4841,7 +4871,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -4850,7 +4880,7 @@ } }, { - "id": 1810, + "id": 1938, "name": "status", "variant": "declaration", "kind": 1024, @@ -4860,7 +4890,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -4881,7 +4911,7 @@ "groups": [ { "title": "Properties", - "children": [1811, 1809, 1808, 1810] + "children": [1939, 1937, 1936, 1938] } ], "sources": [ @@ -4889,21 +4919,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -4911,37 +4941,37 @@ "groups": [ { "title": "Constructors", - "children": [1798] + "children": [1924] }, { "title": "Properties", - "children": [1802, 1800, 1801] + "children": [1930, 1928, 1929] }, { "title": "Methods", - "children": [1805] + "children": [1933] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 134, + "line": 290, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L290" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1759, - "name": "AuthUnknownError", + "id": 1800, + "name": "AuthSessionMissingError", "variant": "declaration", "kind": 128, "flags": {}, @@ -4949,7 +4979,7 @@ "summary": [ { "kind": "text", - "text": "Wraps non-standard errors so callers can inspect the root cause." + "text": "Error thrown when an operation requires a session but none is present." } ], "blockTags": [ @@ -4958,7 +4988,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" + "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" } ] } @@ -4966,7 +4996,7 @@ }, "children": [ { - "id": 1760, + "id": 1801, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4974,71 +5004,47 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 96, + "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L135" } ], "signatures": [ { - "id": 1761, - "name": "AuthUnknownError", + "id": 1802, + "name": "AuthSessionMissingError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 96, + "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L96" - } - ], - "parameters": [ - { - "id": 1762, - "name": "message", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1763, - "name": "originalError", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "unknown" - } + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L135" } ], "type": { "type": "reference", - "target": 1759, - "name": "AuthUnknownError", + "target": 1800, + "name": "AuthSessionMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1725, - "name": "AuthError.constructor" + "target": 1782, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1724, - "name": "AuthError.constructor" + "target": 1781, + "name": "CustomAuthError.constructor" } }, { - "id": 1765, + "id": 1805, "name": "code", "variant": "declaration", "kind": 1024, @@ -5067,7 +5073,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -5087,7 +5093,7 @@ { "type": "reflection", "declaration": { - "id": 1766, + "id": 1806, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5109,31 +5115,38 @@ }, "inheritedFrom": { "type": "reference", - "target": 1729, - "name": "AuthError.code" + "target": 1789, + "name": "CustomAuthError.code" } }, { - "id": 1764, - "name": "originalError", + "id": 1803, + "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 94, + "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { "type": "intrinsic", - "name": "unknown" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 1787, + "name": "CustomAuthError.name" } }, { - "id": 1767, + "id": 1804, "name": "status", "variant": "declaration", "kind": 1024, @@ -5151,32 +5164,23 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 24, + "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": 1731, - "name": "AuthError.status" + "target": 1788, + "name": "CustomAuthError.status" } }, { - "id": 1769, + "id": 1808, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -5188,12 +5192,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1770, + "id": 1809, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -5205,20 +5209,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1771, + "id": 1810, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1775, + "id": 1814, "name": "code", "variant": "declaration", "kind": 1024, @@ -5228,7 +5232,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -5248,7 +5252,7 @@ { "type": "reflection", "declaration": { - "id": 1776, + "id": 1815, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5270,7 +5274,7 @@ } }, { - "id": 1773, + "id": 1812, "name": "message", "variant": "declaration", "kind": 1024, @@ -5280,7 +5284,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -5289,7 +5293,7 @@ } }, { - "id": 1772, + "id": 1811, "name": "name", "variant": "declaration", "kind": 1024, @@ -5299,7 +5303,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -5308,7 +5312,7 @@ } }, { - "id": 1774, + "id": 1813, "name": "status", "variant": "declaration", "kind": 1024, @@ -5318,7 +5322,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -5339,7 +5343,7 @@ "groups": [ { "title": "Properties", - "children": [1775, 1773, 1772, 1774] + "children": [1814, 1812, 1811, 1813] } ], "sources": [ @@ -5347,59 +5351,59 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1734, - "name": "AuthError.toJSON" + "target": 1793, + "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1733, - "name": "AuthError.toJSON" + "target": 1792, + "name": "CustomAuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [1760] + "children": [1801] }, { "title": "Properties", - "children": [1765, 1764, 1767] + "children": [1805, 1803, 1804] }, { "title": "Methods", - "children": [1769] + "children": [1808] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 93, + "line": 134, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L134" } ], "extendedTypes": [ { "type": "reference", - "target": 1723, - "name": "AuthError", + "target": 1780, + "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1938, - "name": "AuthWeakPasswordError", + "id": 1762, + "name": "AuthUnknownError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5407,7 +5411,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a supplied password is considered weak." + "text": "Wraps non-standard errors so callers can inspect the root cause." } ], "blockTags": [ @@ -5416,7 +5420,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" + "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" } ] } @@ -5424,7 +5428,7 @@ }, "children": [ { - "id": 1939, + "id": 1763, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5432,29 +5436,29 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 321, + "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L96" } ], "signatures": [ { - "id": 1940, - "name": "AuthWeakPasswordError", + "id": 1764, + "name": "AuthUnknownError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 321, + "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L96" } ], "parameters": [ { - "id": 1941, + "id": 1765, "name": "message", "variant": "param", "kind": 32768, @@ -5465,65 +5469,38 @@ } }, { - "id": 1942, - "name": "status", + "id": 1766, + "name": "originalError", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1943, - "name": "reasons", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "name": "unknown" } } ], "type": { "type": "reference", - "target": 1938, - "name": "AuthWeakPasswordError", + "target": 1762, + "name": "AuthUnknownError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, - "name": "CustomAuthError.constructor" + "target": 1728, + "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, - "name": "CustomAuthError.constructor" + "target": 1727, + "name": "AuthError.constructor" } }, { - "id": 1956, + "id": 1768, "name": "code", "variant": "declaration", "kind": 1024, @@ -5552,7 +5529,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -5572,7 +5549,7 @@ { "type": "reflection", "declaration": { - "id": 1957, + "id": 1769, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5594,81 +5571,31 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, - "name": "CustomAuthError.code" - } - }, - { - "id": 1954, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 114, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 1784, - "name": "CustomAuthError.name" + "target": 1732, + "name": "AuthError.code" } }, { - "id": 1944, - "name": "reasons", + "id": 1767, + "name": "originalError", "variant": "declaration", "kind": 1024, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Reasons why the password is deemed weak." - } - ] - }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 319, + "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L94" } ], "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "type": "intrinsic", + "name": "unknown" } }, { - "id": 1955, + "id": 1770, "name": "status", "variant": "declaration", "kind": 1024, @@ -5686,61 +5613,74 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 115, + "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] }, "inheritedFrom": { "type": "reference", - "target": 1785, - "name": "CustomAuthError.status" + "target": 1734, + "name": "AuthError.status" } }, { - "id": 1945, + "id": 1772, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 327, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1946, + "id": 1773, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 327, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1947, + "id": 1774, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1951, + "id": 1778, "name": "code", "variant": "declaration", "kind": 1024, @@ -5748,9 +5688,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 331, + "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -5770,7 +5710,7 @@ { "type": "reflection", "declaration": { - "id": 1952, + "id": 1779, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5792,7 +5732,7 @@ } }, { - "id": 1949, + "id": 1776, "name": "message", "variant": "declaration", "kind": 1024, @@ -5800,9 +5740,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 329, + "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -5811,7 +5751,7 @@ } }, { - "id": 1948, + "id": 1775, "name": "name", "variant": "declaration", "kind": 1024, @@ -5819,9 +5759,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 328, + "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -5830,42 +5770,7 @@ } }, { - "id": 1953, - "name": "reasons", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 332, - "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L332" - } - ], - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } - } - }, - { - "id": 1950, + "id": 1777, "name": "status", "variant": "declaration", "kind": 1024, @@ -5873,9 +5778,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 330, + "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -5896,67 +5801,67 @@ "groups": [ { "title": "Properties", - "children": [1951, 1949, 1948, 1953, 1950] + "children": [1778, 1776, 1775, 1777] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 327, + "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1790, - "name": "CustomAuthError.toJSON" + "target": 1737, + "name": "AuthError.toJSON" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1789, - "name": "CustomAuthError.toJSON" + "target": 1736, + "name": "AuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [1939] + "children": [1763] }, { "title": "Properties", - "children": [1956, 1954, 1944, 1955] + "children": [1768, 1767, 1770] }, { "title": "Methods", - "children": [1945] + "children": [1772] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 315, + "line": 93, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L93" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, - "name": "CustomAuthError", + "target": 1726, + "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1777, - "name": "CustomAuthError", + "id": 1958, + "name": "AuthWeakPasswordError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5964,7 +5869,7 @@ "summary": [ { "kind": "text", - "text": "Flexible error class used to create named auth errors at runtime." + "text": "Error thrown when a supplied password is considered weak." } ], "blockTags": [ @@ -5973,7 +5878,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" } ] } @@ -5981,7 +5886,7 @@ }, "children": [ { - "id": 1778, + "id": 1959, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5989,29 +5894,29 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 117, + "line": 353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L353" } ], "signatures": [ { - "id": 1779, - "name": "CustomAuthError", + "id": 1960, + "name": "AuthWeakPasswordError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 117, + "line": 353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L353" } ], "parameters": [ { - "id": 1780, + "id": 1961, "name": "message", "variant": "param", "kind": 32768, @@ -6022,18 +5927,7 @@ } }, { - "id": 1781, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1782, + "id": 1962, "name": "status", "variant": "param", "kind": 32768, @@ -6044,47 +5938,54 @@ } }, { - "id": 1783, - "name": "code", + "id": 1963, + "name": "reasons", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } } } ], "type": { "type": "reference", - "target": 1777, - "name": "CustomAuthError", + "target": 1958, + "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1725, - "name": "AuthError.constructor" + "target": 1782, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1724, - "name": "AuthError.constructor" + "target": 1781, + "name": "CustomAuthError.constructor" } }, { - "id": 1786, + "id": 1976, "name": "code", "variant": "declaration", "kind": 1024, @@ -6113,7 +6014,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -6133,7 +6034,7 @@ { "type": "reflection", "declaration": { - "id": 1787, + "id": 1977, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6155,40 +6056,87 @@ }, "inheritedFrom": { "type": "reference", - "target": 1729, - "name": "AuthError.code" + "target": 1789, + "name": "CustomAuthError.code" } }, { - "id": 1784, + "id": 1974, "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { "type": "intrinsic", "name": "string" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": -1, - "name": "AuthError.name" + "target": 1787, + "name": "CustomAuthError.name" } }, { - "id": 1785, - "name": "status", + "id": 1964, + "name": "reasons", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reasons why the password is deemed weak." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 351, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L351" + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 1975, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, "comment": { "summary": [ { @@ -6202,63 +6150,59 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { "type": "intrinsic", "name": "number" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1731, - "name": "AuthError.status" + "target": 1788, + "name": "CustomAuthError.status" } }, { - "id": 1789, + "id": 1965, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 35, + "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L359" } ], "signatures": [ { - "id": 1790, + "id": 1966, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 35, + "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L359" } ], "type": { "type": "reflection", "declaration": { - "id": 1791, + "id": 1967, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1795, + "id": 1971, "name": "code", "variant": "declaration", "kind": 1024, @@ -6266,9 +6210,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 39, + "line": 363, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L363" } ], "type": { @@ -6288,7 +6232,7 @@ { "type": "reflection", "declaration": { - "id": 1796, + "id": 1972, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6310,7 +6254,525 @@ } }, { - "id": 1793, + "id": 1969, + "name": "message", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 361, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L361" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1968, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 360, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L360" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1973, + "name": "reasons", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 364, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L364" + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 1970, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 362, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L362" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1971, 1969, 1968, 1973, 1970] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 359, + "character": 12, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L359" + } + ] + } + }, + "overwrites": { + "type": "reference", + "target": 1793, + "name": "CustomAuthError.toJSON" + } + } + ], + "overwrites": { + "type": "reference", + "target": 1792, + "name": "CustomAuthError.toJSON" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [1959] + }, + { + "title": "Properties", + "children": [1976, 1974, 1964, 1975] + }, + { + "title": "Methods", + "children": [1965] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 347, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L347" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1780, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + } + ] + }, + { + "id": 1780, + "name": "CustomAuthError", + "variant": "declaration", + "kind": 128, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Flexible error class used to create named auth errors at runtime." + } + ], + "blockTags": [ + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + } + ] + } + ] + }, + "children": [ + { + "id": 1781, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 117, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L117" + } + ], + "signatures": [ + { + "id": 1782, + "name": "CustomAuthError", + "variant": "signature", + "kind": 16384, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 117, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L117" + } + ], + "parameters": [ + { + "id": 1783, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1784, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1785, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1786, + "name": "code", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "type": { + "type": "reference", + "target": 1780, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + }, + "overwrites": { + "type": "reference", + "target": 1728, + "name": "AuthError.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "target": 1727, + "name": "AuthError.constructor" + } + }, + { + "id": 1789, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#status" + }, + { + "kind": "text", + "text": " will also be undefined." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 21, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 1790, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 1732, + "name": "AuthError.code" + } + }, + { + "id": 1787, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 114, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "AuthError.name" + } + }, + { + "id": 1788, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP status code that caused the error." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 115, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "overwrites": { + "type": "reference", + "target": 1734, + "name": "AuthError.status" + } + }, + { + "id": 1792, + "name": "toJSON", + "variant": "declaration", + "kind": 2048, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 35, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" + } + ], + "signatures": [ + { + "id": 1793, + "name": "toJSON", + "variant": "signature", + "kind": 4096, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 35, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1794, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1798, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 39, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 1799, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + } + ] + } + }, + { + "id": 1796, "name": "message", "variant": "declaration", "kind": 1024, @@ -6320,7 +6782,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -6329,7 +6791,7 @@ } }, { - "id": 1792, + "id": 1795, "name": "name", "variant": "declaration", "kind": 1024, @@ -6339,7 +6801,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -6348,7 +6810,7 @@ } }, { - "id": 1794, + "id": 1797, "name": "status", "variant": "declaration", "kind": 1024, @@ -6358,7 +6820,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -6379,7 +6841,7 @@ "groups": [ { "title": "Properties", - "children": [1795, 1793, 1792, 1794] + "children": [1798, 1796, 1795, 1797] } ], "sources": [ @@ -6387,21 +6849,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1734, + "target": 1737, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1733, + "target": 1736, "name": "AuthError.toJSON" } } @@ -6409,15 +6871,15 @@ "groups": [ { "title": "Constructors", - "children": [1778] + "children": [1781] }, { "title": "Properties", - "children": [1786, 1784, 1785] + "children": [1789, 1787, 1788] }, { "title": "Methods", - "children": [1789] + "children": [1792] } ], "sources": [ @@ -6425,13 +6887,13 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 113, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L113" } ], "extendedTypes": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -6439,47 +6901,52 @@ "extendedBy": [ { "type": "reference", - "target": 1797, + "target": 1800, "name": "AuthSessionMissingError" }, { "type": "reference", - "target": 1813, + "target": 1816, "name": "AuthInvalidTokenResponseError" }, { "type": "reference", - "target": 1829, + "target": 1832, "name": "AuthInvalidCredentialsError" }, { "type": "reference", - "target": 1846, + "target": 1849, "name": "AuthImplicitGrantRedirectError" }, { "type": "reference", - "target": 1875, + "target": 1878, "name": "AuthPKCEGrantCodeExchangeError" }, { "type": "reference", - "target": 1904, + "target": 1907, "name": "AuthPKCECodeVerifierMissingError" }, { "type": "reference", - "target": 1920, + "target": 1923, "name": "AuthRetryableFetchError" }, { "type": "reference", - "target": 1938, + "target": 1941, + "name": "AuthRefreshDiscardedError" + }, + { + "type": "reference", + "target": 1958, "name": "AuthWeakPasswordError" }, { "type": "reference", - "target": 1959, + "target": 1979, "name": "AuthInvalidJwtError" } ] @@ -6500,9 +6967,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 100, + "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "signatures": [ @@ -6545,9 +7012,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 100, + "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "parameters": [ @@ -6577,9 +7044,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 111, + "line": 103, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L103" } ], "type": { @@ -6600,9 +7067,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 110, + "line": 102, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L102" } ], "type": { @@ -6829,9 +7296,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 107, + "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "type": { @@ -6845,9 +7312,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 107, + "line": 99, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "indexSignatures": [ @@ -6860,9 +7327,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 108, + "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" } ], "parameters": [ @@ -6897,9 +7364,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 106, + "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L98" } ], "type": { @@ -6918,9 +7385,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 105, + "line": 97, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ] } @@ -6956,7 +7423,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" } ], "type": { @@ -6985,7 +7452,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -7014,7 +7481,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" } ], "type": { @@ -7051,7 +7518,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" } ], "type": { @@ -7062,7 +7529,7 @@ } }, { - "id": 58, + "id": 55, "name": "createUser", "variant": "declaration", "kind": 2048, @@ -7070,14 +7537,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 493, + "line": 485, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L485" } ], "signatures": [ { - "id": 59, + "id": 56, "name": "createUser", "variant": "signature", "kind": 4096, @@ -7229,14 +7696,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 493, + "line": 485, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L485" } ], "parameters": [ { - "id": 60, + "id": 57, "name": "attributes", "variant": "param", "kind": 32768, @@ -7270,7 +7737,7 @@ ] }, { - "id": 82, + "id": 79, "name": "deleteUser", "variant": "declaration", "kind": 2048, @@ -7278,14 +7745,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 847, + "line": 839, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L839" } ], "signatures": [ { - "id": 83, + "id": 80, "name": "deleteUser", "variant": "signature", "kind": 4096, @@ -7377,14 +7844,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 847, + "line": 839, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L839" } ], "parameters": [ { - "id": 84, + "id": 81, "name": "id", "variant": "param", "kind": 32768, @@ -7403,7 +7870,7 @@ } }, { - "id": 85, + "id": 82, "name": "shouldSoftDelete", "variant": "param", "kind": 32768, @@ -7452,7 +7919,7 @@ ] }, { - "id": 55, + "id": 52, "name": "generateLink", "variant": "declaration", "kind": 2048, @@ -7460,14 +7927,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 383, + "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L375" } ], "signatures": [ { - "id": 56, + "id": 53, "name": "generateLink", "variant": "signature", "kind": 4096, @@ -7687,14 +8154,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 383, + "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L375" } ], "parameters": [ { - "id": 57, + "id": 54, "name": "params", "variant": "param", "kind": 32768, @@ -7728,7 +8195,7 @@ ] }, { - "id": 75, + "id": 72, "name": "getUserById", "variant": "declaration", "kind": 2048, @@ -7736,14 +8203,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 636, + "line": 628, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L628" } ], "signatures": [ { - "id": 76, + "id": 73, "name": "getUserById", "variant": "signature", "kind": 4096, @@ -7827,14 +8294,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 636, + "line": 628, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L628" } ], "parameters": [ { - "id": 77, + "id": 74, "name": "uid", "variant": "param", "kind": 32768, @@ -7882,7 +8349,7 @@ ] }, { - "id": 48, + "id": 45, "name": "inviteUserByEmail", "variant": "declaration", "kind": 2048, @@ -7890,14 +8357,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 240, + "line": 232, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" } ], "signatures": [ { - "id": 49, + "id": 46, "name": "inviteUserByEmail", "variant": "signature", "kind": 4096, @@ -7981,14 +8448,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 240, + "line": 232, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" } ], "parameters": [ { - "id": 50, + "id": 47, "name": "email", "variant": "param", "kind": 32768, @@ -8007,7 +8474,7 @@ } }, { - "id": 51, + "id": 48, "name": "options", "variant": "param", "kind": 32768, @@ -8023,14 +8490,14 @@ "type": { "type": "reflection", "declaration": { - "id": 52, + "id": 49, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 53, + "id": 50, "name": "data", "variant": "declaration", "kind": 1024, @@ -8056,9 +8523,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 244, + "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L236" } ], "type": { @@ -8067,7 +8534,7 @@ } }, { - "id": 54, + "id": 51, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -8085,9 +8552,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 247, + "line": 239, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L239" } ], "type": { @@ -8099,15 +8566,15 @@ "groups": [ { "title": "Properties", - "children": [53, 54] + "children": [50, 51] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 242, + "line": 234, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L234" } ] } @@ -8136,7 +8603,7 @@ ] }, { - "id": 61, + "id": 58, "name": "listUsers", "variant": "declaration", "kind": 2048, @@ -8144,14 +8611,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 534, + "line": 526, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L526" } ], "signatures": [ { - "id": 62, + "id": 59, "name": "listUsers", "variant": "signature", "kind": 4096, @@ -8224,14 +8691,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 534, + "line": 526, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L526" } ], "parameters": [ { - "id": 63, + "id": 60, "name": "params", "variant": "param", "kind": 32768, @@ -8283,14 +8750,14 @@ { "type": "reflection", "declaration": { - "id": 64, + "id": 61, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 65, + "id": 62, "name": "data", "variant": "declaration", "kind": 1024, @@ -8298,9 +8765,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -8309,14 +8776,14 @@ { "type": "reflection", "declaration": { - "id": 66, + "id": 63, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 68, + "id": 65, "name": "aud", "variant": "declaration", "kind": 1024, @@ -8324,9 +8791,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -8335,7 +8802,7 @@ } }, { - "id": 67, + "id": 64, "name": "users", "variant": "declaration", "kind": 1024, @@ -8343,9 +8810,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -8362,15 +8829,15 @@ "groups": [ { "title": "Properties", - "children": [68, 67] + "children": [65, 64] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ] } @@ -8385,7 +8852,7 @@ } }, { - "id": 69, + "id": 66, "name": "error", "variant": "declaration", "kind": 1024, @@ -8393,9 +8860,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -8407,15 +8874,15 @@ "groups": [ { "title": "Properties", - "children": [65, 69] + "children": [62, 66] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ] } @@ -8423,14 +8890,14 @@ { "type": "reflection", "declaration": { - "id": 70, + "id": 67, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 71, + "id": 68, "name": "data", "variant": "declaration", "kind": 1024, @@ -8438,22 +8905,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ], "type": { "type": "reflection", "declaration": { - "id": 72, + "id": 69, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 73, + "id": 70, "name": "users", "variant": "declaration", "kind": 1024, @@ -8461,9 +8928,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ], "type": { @@ -8474,22 +8941,22 @@ "groups": [ { "title": "Properties", - "children": [73] + "children": [70] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ] } } }, { - "id": 74, + "id": 71, "name": "error", "variant": "declaration", "kind": 1024, @@ -8497,14 +8964,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -8513,15 +8980,15 @@ "groups": [ { "title": "Properties", - "children": [71, 74] + "children": [68, 71] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ] } @@ -8536,7 +9003,7 @@ ] }, { - "id": 41, + "id": 38, "name": "signOut", "variant": "declaration", "kind": 2048, @@ -8544,14 +9011,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 150, + "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L142" } ], "signatures": [ { - "id": 42, + "id": 39, "name": "signOut", "variant": "signature", "kind": 4096, @@ -8587,14 +9054,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 150, + "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L142" } ], "parameters": [ { - "id": 43, + "id": 40, "name": "jwt", "variant": "param", "kind": 32768, @@ -8613,7 +9080,7 @@ } }, { - "id": 44, + "id": 41, "name": "scope", "variant": "param", "kind": 32768, @@ -8656,14 +9123,14 @@ { "type": "reflection", "declaration": { - "id": 45, + "id": 42, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 46, + "id": 43, "name": "data", "variant": "declaration", "kind": 1024, @@ -8671,9 +9138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 153, + "line": 145, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L145" } ], "type": { @@ -8682,7 +9149,7 @@ } }, { - "id": 47, + "id": 44, "name": "error", "variant": "declaration", "kind": 1024, @@ -8690,9 +9157,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 153, + "line": 145, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L145" } ], "type": { @@ -8704,7 +9171,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -8715,15 +9182,15 @@ "groups": [ { "title": "Properties", - "children": [46, 47] + "children": [43, 44] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 153, + "line": 145, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L145" } ] } @@ -8736,7 +9203,7 @@ ] }, { - "id": 78, + "id": 75, "name": "updateUserById", "variant": "declaration", "kind": 2048, @@ -8744,14 +9211,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 797, + "line": 789, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L789" } ], "signatures": [ { - "id": 79, + "id": 76, "name": "updateUserById", "variant": "signature", "kind": 4096, @@ -8817,7 +9284,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient.refreshSession", - "target": 412 + "target": 410 }, { "kind": "text", @@ -8835,7 +9302,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient.updateUser", - "target": 388 + "target": 386 }, { "kind": "text", @@ -8953,14 +9420,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 797, + "line": 789, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L789" } ], "parameters": [ { - "id": 80, + "id": 77, "name": "uid", "variant": "param", "kind": 32768, @@ -8979,7 +9446,7 @@ } }, { - "id": 81, + "id": 78, "name": "attributes", "variant": "param", "kind": 32768, @@ -9040,13 +9507,13 @@ }, { "title": "Methods", - "children": [58, 82, 55, 75, 48, 61, 41, 78] + "children": [55, 79, 52, 72, 45, 58, 38, 75] } ], "categories": [ { "title": "Auth", - "children": [58, 82, 55, 75, 48, 61, 41, 78] + "children": [55, 79, 52, 72, 45, 58, 38, 75] }, { "title": "Other", @@ -9058,19 +9525,19 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 44, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" } ] }, { - "id": 139, + "id": 136, "name": "GoTrueClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 141, + "id": 138, "name": "constructor", "variant": "declaration", "kind": 512, @@ -9078,14 +9545,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 341, + "line": 366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L366" } ], "signatures": [ { - "id": 142, + "id": 139, "name": "GoTrueClient", "variant": "signature", "kind": 16384, @@ -9123,14 +9590,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 341, + "line": 366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L366" } ], "parameters": [ { - "id": 143, + "id": 140, "name": "options", "variant": "param", "kind": 32768, @@ -9145,7 +9612,7 @@ ], "type": { "type": "reference", - "target": 139, + "target": 136, "name": "GoTrueClient", "package": "@supabase/auth-js", "qualifiedName": "default" @@ -9154,7 +9621,7 @@ ] }, { - "id": 145, + "id": 142, "name": "admin", "variant": "declaration", "kind": 1024, @@ -9170,9 +9637,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 226, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L234" } ], "type": { @@ -9184,7 +9651,7 @@ } }, { - "id": 146, + "id": 143, "name": "mfa", "variant": "declaration", "kind": 1024, @@ -9200,9 +9667,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 230, + "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L238" } ], "type": { @@ -9213,7 +9680,7 @@ } }, { - "id": 147, + "id": 144, "name": "oauth", "variant": "declaration", "kind": 1024, @@ -9229,9 +9696,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 236, + "line": 244, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L244" } ], "type": { @@ -9242,7 +9709,7 @@ } }, { - "id": 148, + "id": 145, "name": "passkey", "variant": "declaration", "kind": 1024, @@ -9266,9 +9733,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 243, + "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L251" } ], "type": { @@ -9279,7 +9746,155 @@ } }, { - "id": 244, + "id": 579, + "name": "dispose", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/GoTrueClient.ts", + "line": 5189, + "character": 8, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5189" + } + ], + "signatures": [ + { + "id": 580, + "name": "dispose", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tears down the client's background work: stops the auto-refresh interval,\nremoves the " + }, + { + "kind": "code", + "text": "`visibilitychange`" + }, + { + "kind": "text", + "text": " listener, closes the cross-tab\n" + }, + { + "kind": "code", + "text": "`BroadcastChannel`" + }, + { + "kind": "text", + "text": ", and clears registered " + }, + { + "kind": "code", + "text": "`onAuthStateChange`" + }, + { + "kind": "text", + "text": " subscribers.\n\nCall this from cleanup hooks when the client is being replaced before\nits JS realm is destroyed. React Strict Mode and HMR are the common\ncases. Any in-flight " + }, + { + "kind": "code", + "text": "`fetch`" + }, + { + "kind": "text", + "text": " calls continue to completion and may still\nwrite to storage; dispose doesn't abort them or erase storage.\n\nLifecycle caveat: because in-flight refreshes are not aborted, a\ndisposed instance can still persist a rotated session to storage after\n" + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " returns. A subsequent " + }, + { + "kind": "code", + "text": "`createClient`" + }, + { + "kind": "text", + "text": " against the same\n" + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " will pick up that session on its next read. If you need\nstrict isolation between client lifecycles, await any pending auth\noperation before calling " + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " (or change the " + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " for\nthe replacement client).\n\nSafe to call repeatedly." + } + ], + "blockTags": [ + { + "tag": "@category", + "content": [ + { + "kind": "text", + "text": "Auth" + } + ] + }, + { + "tag": "@example", + "name": "Cleanup on React unmount", + "content": [ + { + "kind": "code", + "text": "```ts\nuseEffect(() => {\n const client = createClient(...)\n return () => { client.auth.dispose() }\n}, [])\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/GoTrueClient.ts", + "line": 5189, + "character": 8, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5189" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 242, "name": "exchangeCodeForSession", "variant": "declaration", "kind": 2048, @@ -9287,14 +9902,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1405, + "line": 1453, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1453" } ], "signatures": [ { - "id": 245, + "id": 243, "name": "exchangeCodeForSession", "variant": "signature", "kind": 4096, @@ -9369,14 +9984,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1405, + "line": 1453, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1453" } ], "parameters": [ { - "id": 246, + "id": 244, "name": "authCode", "variant": "param", "kind": 32768, @@ -9416,9 +10031,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5868, + "line": 6145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5868" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6145" } ], "signatures": [ @@ -9524,9 +10139,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5868, + "line": 6145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5868" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6145" } ], "parameters": [ @@ -9618,9 +10233,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 6154, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6154" } ], "type": { @@ -9647,9 +10262,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5880, + "line": 6157, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5880" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6157" } ], "type": { @@ -9670,9 +10285,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5880, + "line": 6157, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5880" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6157" } ], "type": { @@ -9695,9 +10310,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5880, + "line": 6157, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5880" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6157" } ] } @@ -9728,9 +10343,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5874, + "line": 6151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6151" } ], "type": { @@ -9753,9 +10368,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5870, + "line": 6147, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5870" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6147" } ] } @@ -9791,9 +10406,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -9814,9 +10429,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -9835,9 +10450,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -9856,9 +10471,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -9881,9 +10496,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ] } @@ -9898,9 +10513,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5885, + "line": 6162, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5885" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6162" } ], "type": { @@ -9918,9 +10533,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5883, + "line": 6160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5883" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6160" } ] } @@ -9943,9 +10558,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5887, + "line": 6164, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6164" } ], "type": { @@ -9962,14 +10577,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5887, + "line": 6164, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6164" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -9984,9 +10599,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5887, + "line": 6164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6164" } ] } @@ -10009,9 +10624,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5888, + "line": 6165, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5888" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6165" } ], "type": { @@ -10028,9 +10643,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5888, + "line": 6165, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5888" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6165" } ], "type": { @@ -10048,9 +10663,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5888, + "line": 6165, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5888" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6165" } ] } @@ -10065,7 +10680,7 @@ ] }, { - "id": 319, + "id": 317, "name": "getSession", "variant": "declaration", "kind": 2048, @@ -10073,14 +10688,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2661, + "line": 2719, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2719" } ], "signatures": [ { - "id": 320, + "id": 318, "name": "getSession", "variant": "signature", "kind": 4096, @@ -10156,15 +10771,7 @@ }, { "kind": "text", - "text": " to fetch the user object directly from the Auth server for this purpose.\n- When using in a browser, this function is synchronized across 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 " - }, - { - "kind": "code", - "text": "`lock`" - }, - { - "kind": "text", - "text": " property, if necessary, to make sure there are no race conditions while the session is being refreshed." + "text": " to fetch the user object directly from the Auth server for this purpose.\n- Cross-tab refresh races are handled by the GoTrue server (the rotated token from the first tab is returned to subsequent tabs via the parent-of-active mechanism), so no client-side serialization is needed." } ] }, @@ -10196,9 +10803,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2661, + "line": 2719, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2719" } ], "type": { @@ -10214,14 +10821,14 @@ { "type": "reflection", "declaration": { - "id": 321, + "id": 319, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 322, + "id": 320, "name": "data", "variant": "declaration", "kind": 1024, @@ -10229,22 +10836,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2754, + "line": 2820, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2820" } ], "type": { "type": "reflection", "declaration": { - "id": 323, + "id": 321, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 324, + "id": 322, "name": "session", "variant": "declaration", "kind": 1024, @@ -10252,9 +10859,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2755, + "line": 2821, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2821" } ], "type": { @@ -10268,22 +10875,22 @@ "groups": [ { "title": "Properties", - "children": [324] + "children": [322] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2754, + "line": 2820, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2820" } ] } } }, { - "id": 325, + "id": 323, "name": "error", "variant": "declaration", "kind": 1024, @@ -10291,9 +10898,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2757, + "line": 2823, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2757" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2823" } ], "type": { @@ -10305,15 +10912,15 @@ "groups": [ { "title": "Properties", - "children": [322, 325] + "children": [320, 323] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2753, + "line": 2819, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2753" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2819" } ] } @@ -10321,14 +10928,14 @@ { "type": "reflection", "declaration": { - "id": 326, + "id": 324, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 327, + "id": 325, "name": "data", "variant": "declaration", "kind": 1024, @@ -10336,22 +10943,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2760, + "line": 2826, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2826" } ], "type": { "type": "reflection", "declaration": { - "id": 328, + "id": 326, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 329, + "id": 327, "name": "session", "variant": "declaration", "kind": 1024, @@ -10359,9 +10966,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2761, + "line": 2827, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2761" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2827" } ], "type": { @@ -10373,22 +10980,22 @@ "groups": [ { "title": "Properties", - "children": [329] + "children": [327] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2760, + "line": 2826, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2826" } ] } } }, { - "id": 330, + "id": 328, "name": "error", "variant": "declaration", "kind": 1024, @@ -10396,14 +11003,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2763, + "line": 2829, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2829" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -10412,15 +11019,15 @@ "groups": [ { "title": "Properties", - "children": [327, 330] + "children": [325, 328] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2759, + "line": 2825, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2825" } ] } @@ -10428,14 +11035,14 @@ { "type": "reflection", "declaration": { - "id": 331, + "id": 329, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 332, + "id": 330, "name": "data", "variant": "declaration", "kind": 1024, @@ -10443,22 +11050,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2766, + "line": 2832, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2832" } ], "type": { "type": "reflection", "declaration": { - "id": 333, + "id": 331, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 334, + "id": 332, "name": "session", "variant": "declaration", "kind": 1024, @@ -10466,9 +11073,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2767, + "line": 2833, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2767" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2833" } ], "type": { @@ -10480,22 +11087,22 @@ "groups": [ { "title": "Properties", - "children": [334] + "children": [332] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2766, + "line": 2832, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2832" } ] } } }, { - "id": 335, + "id": 333, "name": "error", "variant": "declaration", "kind": 1024, @@ -10503,9 +11110,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2769, + "line": 2835, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2835" } ], "type": { @@ -10517,15 +11124,15 @@ "groups": [ { "title": "Properties", - "children": [332, 335] + "children": [330, 333] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2765, + "line": 2831, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2831" } ] } @@ -10540,7 +11147,7 @@ ] }, { - "id": 382, + "id": 380, "name": "getUser", "variant": "declaration", "kind": 2048, @@ -10548,14 +11155,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2972, + "line": 3042, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3042" } ], "signatures": [ { - "id": 383, + "id": 381, "name": "getUser", "variant": "signature", "kind": 4096, @@ -10640,14 +11247,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2972, + "line": 3042, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3042" } ], "parameters": [ { - "id": 384, + "id": 382, "name": "jwt", "variant": "param", "kind": 32768, @@ -10689,7 +11296,7 @@ ] }, { - "id": 501, + "id": 499, "name": "getUserIdentities", "variant": "declaration", "kind": 2048, @@ -10697,14 +11304,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4241, + "line": 4337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4337" } ], "signatures": [ { - "id": 502, + "id": 500, "name": "getUserIdentities", "variant": "signature", "kind": 4096, @@ -10771,9 +11378,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4241, + "line": 4337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4337" } ], "type": { @@ -10789,14 +11396,14 @@ { "type": "reflection", "declaration": { - "id": 503, + "id": 501, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 504, + "id": 502, "name": "data", "variant": "declaration", "kind": 1024, @@ -10804,22 +11411,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4243, + "line": 4339, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4339" } ], "type": { "type": "reflection", "declaration": { - "id": 505, + "id": 503, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 506, + "id": 504, "name": "identities", "variant": "declaration", "kind": 1024, @@ -10827,9 +11434,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4244, + "line": 4340, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4244" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4340" } ], "type": { @@ -10846,22 +11453,22 @@ "groups": [ { "title": "Properties", - "children": [506] + "children": [504] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4243, + "line": 4339, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4339" } ] } } }, { - "id": 507, + "id": 505, "name": "error", "variant": "declaration", "kind": 1024, @@ -10869,9 +11476,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4246, + "line": 4342, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4342" } ], "type": { @@ -10883,15 +11490,15 @@ "groups": [ { "title": "Properties", - "children": [504, 507] + "children": [502, 505] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4242, + "line": 4338, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4338" } ] } @@ -10899,14 +11506,14 @@ { "type": "reflection", "declaration": { - "id": 508, + "id": 506, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 509, + "id": 507, "name": "data", "variant": "declaration", "kind": 1024, @@ -10914,9 +11521,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4248, + "line": 4344, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4344" } ], "type": { @@ -10925,7 +11532,7 @@ } }, { - "id": 510, + "id": 508, "name": "error", "variant": "declaration", "kind": 1024, @@ -10933,14 +11540,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4248, + "line": 4344, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4344" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -10949,15 +11556,15 @@ "groups": [ { "title": "Properties", - "children": [509, 510] + "children": [507, 508] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4248, + "line": 4344, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4344" } ] } @@ -10972,7 +11579,7 @@ ] }, { - "id": 228, + "id": 226, "name": "initialize", "variant": "declaration", "kind": 2048, @@ -10980,14 +11587,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 515, + "line": 544, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L544" } ], "signatures": [ { - "id": 229, + "id": 227, "name": "initialize", "variant": "signature", "kind": 4096, @@ -11014,9 +11621,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 515, + "line": 544, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L544" } ], "type": { @@ -11040,7 +11647,7 @@ ] }, { - "id": 215, + "id": 213, "name": "isThrowOnErrorEnabled", "variant": "declaration", "kind": 2048, @@ -11050,14 +11657,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 477, + "line": 506, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L506" } ], "signatures": [ { - "id": 216, + "id": 214, "name": "isThrowOnErrorEnabled", "variant": "signature", "kind": 4096, @@ -11073,9 +11680,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 477, + "line": 506, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L506" } ], "type": { @@ -11086,7 +11693,7 @@ ] }, { - "id": 511, + "id": 509, "name": "linkIdentity", "variant": "declaration", "kind": 2048, @@ -11164,26 +11771,26 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4266, + "line": 4362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4266" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4362" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4271, + "line": 4367, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4367" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4300, + "line": 4396, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4396" } ], "signatures": [ { - "id": 512, + "id": 510, "name": "linkIdentity", "variant": "signature", "kind": 4096, @@ -11199,14 +11806,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4266, + "line": 4362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4266" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4362" } ], "parameters": [ { - "id": 513, + "id": 511, "name": "credentials", "variant": "param", "kind": 32768, @@ -11238,7 +11845,7 @@ } }, { - "id": 514, + "id": 512, "name": "linkIdentity", "variant": "signature", "kind": 4096, @@ -11254,14 +11861,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4271, + "line": 4367, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4367" } ], "parameters": [ { - "id": 515, + "id": 513, "name": "credentials", "variant": "param", "kind": 32768, @@ -11295,7 +11902,7 @@ ] }, { - "id": 463, + "id": 461, "name": "onAuthStateChange", "variant": "declaration", "kind": 2048, @@ -11317,23 +11924,7 @@ "content": [ { "kind": "text", - "text": "- Subscribes to important events occurring on the user's session.\n- Use on the frontend/client. It is less useful on the server.\n- Events are emitted across tabs to keep your application's UI up-to-date. Some events can fire very frequently, based on the number of tabs open. Use a quick and efficient callback function, and defer or debounce as many operations as you can to be performed outside of the callback.\n- **Important:** A callback can be an " - }, - { - "kind": "code", - "text": "`async`" - }, - { - "kind": "text", - "text": " function and it runs synchronously during the processing of the changes causing the event. You can easily create a dead-lock by using " - }, - { - "kind": "code", - "text": "`await`" - }, - { - "kind": "text", - "text": " on a call to another method of the Supabase library.\n - Avoid using " + "text": "- Subscribes to important events occurring on the user's session.\n- Use on the frontend/client. It is less useful on the server.\n- Events are emitted across tabs to keep your application's UI up-to-date. Some events can fire very frequently, based on the number of tabs open. Use a quick and efficient callback function, and defer or debounce as many operations as you can to be performed outside of the callback.\n- Callbacks can be " }, { "kind": "code", @@ -11341,31 +11932,23 @@ }, { "kind": "text", - "text": " functions as callbacks.\n - Limit the number of " + "text": " and can safely call other Supabase auth methods (" }, { "kind": "code", - "text": "`await`" + "text": "`getUser`" }, { "kind": "text", - "text": " calls in " - }, - { - "kind": "code", - "text": "`async`" - }, - { - "kind": "text", - "text": " callbacks.\n - Do not use other Supabase functions in the callback function. If you must, dispatch the functions once the callback has finished executing. Use this as a quick way to achieve this:\n " + "text": ", " }, { "kind": "code", - "text": "```js\n supabase.auth.onAuthStateChange((event, session) => {\n setTimeout(async () => {\n // await on other Supabase function here\n // this runs right after the callback has finished\n }, 0)\n })\n ```" + "text": "`setSession`" }, { "kind": "text", - "text": "\n- Emitted events:\n - " + "text": ", etc.) from inside the callback.\n- Keep callbacks quick. Events are awaited in order, so a slow callback delays subsequent events to subscribers in this tab.\n- Emitted events:\n - " }, { "kind": "code", @@ -11593,26 +12176,26 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4037, + "line": 4128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4037" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4128" } ], "signatures": [ { - "id": 464, + "id": 462, "name": "onAuthStateChange", "variant": "signature", "kind": 4096, @@ -11628,14 +12211,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ], "parameters": [ { - "id": 465, + "id": 463, "name": "callback", "variant": "param", "kind": 32768, @@ -11651,7 +12234,7 @@ "type": { "type": "reflection", "declaration": { - "id": 466, + "id": 464, "name": "__type", "variant": "declaration", "kind": 65536, @@ -11659,14 +12242,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ], "signatures": [ { - "id": 467, + "id": 465, "name": "__type", "variant": "signature", "kind": 4096, @@ -11674,14 +12257,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ], "parameters": [ { - "id": 468, + "id": 466, "name": "event", "variant": "param", "kind": 32768, @@ -11694,7 +12277,7 @@ } }, { - "id": 469, + "id": 467, "name": "session", "variant": "param", "kind": 32768, @@ -11729,14 +12312,14 @@ "type": { "type": "reflection", "declaration": { - "id": 470, + "id": 468, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 471, + "id": 469, "name": "data", "variant": "declaration", "kind": 1024, @@ -11744,22 +12327,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3831, + "line": 3929, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3929" } ], "type": { "type": "reflection", "declaration": { - "id": 472, + "id": 470, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 473, + "id": 471, "name": "subscription", "variant": "declaration", "kind": 1024, @@ -11767,9 +12350,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3831, + "line": 3929, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3929" } ], "type": { @@ -11783,15 +12366,15 @@ "groups": [ { "title": "Properties", - "children": [473] + "children": [471] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3831, + "line": 3929, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3929" } ] } @@ -11801,22 +12384,22 @@ "groups": [ { "title": "Properties", - "children": [471] + "children": [469] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 90, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ] } } }, { - "id": 474, + "id": 472, "name": "onAuthStateChange", "variant": "signature", "kind": 4096, @@ -11825,15 +12408,63 @@ "summary": [ { "kind": "text", - "text": "Avoid using an async function inside " + "text": "Receive a notification every time an auth event happens. Common reentry\npatterns (" }, { "kind": "code", - "text": "`onAuthStateChange`" + "text": "`getUser`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`setSession`" + }, + { + "kind": "text", + "text": ", reading the session from inside a\nhandler) complete normally. One hazard remains: calling " + }, + { + "kind": "code", + "text": "`refreshSession`" + }, + { + "kind": "text", + "text": "\n(or anything that routes through " + }, + { + "kind": "code", + "text": "`_callRefreshToken`" + }, + { + "kind": "text", + "text": ") from inside a\n" + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " handler. " + }, + { + "kind": "code", + "text": "`refreshingDeferred`" }, { "kind": "text", - "text": " as you might end\nup with a deadlock. The callback function runs inside an exclusive lock,\nso calling other Supabase Client APIs that also try to acquire the\nexclusive lock, might cause a deadlock. This behavior is observable across\ntabs. In the next major library version, this behavior will not be supported.\n\nReceive a notification every time an auth event happens." + "text": " resolves only after\n" + }, + { + "kind": "code", + "text": "`_notifyAllSubscribers`" + }, + { + "kind": "text", + "text": " returns, so the inner refresh dedupes onto the\nouter's unresolved promise and the two wait on each other." } ], "blockTags": [ @@ -11842,7 +12473,15 @@ "content": [ { "kind": "text", - "text": "Due to the possibility of deadlocks with async functions as callbacks, use the version without an async function." + "text": "Async callbacks can deadlock when they trigger a nested\nrefresh from a " + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " event. Prefer the sync overload, or move\nrefresh-triggering work outside the callback." } ] } @@ -11851,14 +12490,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ], "parameters": [ { - "id": 475, + "id": 473, "name": "callback", "variant": "param", "kind": 32768, @@ -11874,7 +12513,7 @@ "type": { "type": "reflection", "declaration": { - "id": 476, + "id": 474, "name": "__type", "variant": "declaration", "kind": 65536, @@ -11882,14 +12521,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ], "signatures": [ { - "id": 477, + "id": 475, "name": "__type", "variant": "signature", "kind": 4096, @@ -11897,14 +12536,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ], "parameters": [ { - "id": 478, + "id": 476, "name": "event", "variant": "param", "kind": 32768, @@ -11917,7 +12556,7 @@ } }, { - "id": 479, + "id": 477, "name": "session", "variant": "param", "kind": 32768, @@ -11963,14 +12602,14 @@ "type": { "type": "reflection", "declaration": { - "id": 480, + "id": 478, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 481, + "id": 479, "name": "data", "variant": "declaration", "kind": 1024, @@ -11978,22 +12617,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3847, + "line": 3948, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3948" } ], "type": { "type": "reflection", "declaration": { - "id": 482, + "id": 480, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 483, + "id": 481, "name": "subscription", "variant": "declaration", "kind": 1024, @@ -12001,9 +12640,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3847, + "line": 3948, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3948" } ], "type": { @@ -12017,15 +12656,15 @@ "groups": [ { "title": "Properties", - "children": [483] + "children": [481] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3847, + "line": 3948, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3948" } ] } @@ -12035,15 +12674,15 @@ "groups": [ { "title": "Properties", - "children": [481] + "children": [479] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ] } @@ -12052,7 +12691,7 @@ ] }, { - "id": 312, + "id": 310, "name": "reauthenticate", "variant": "declaration", "kind": 2048, @@ -12060,14 +12699,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2444, + "line": 2497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2497" } ], "signatures": [ { - "id": 313, + "id": 311, "name": "reauthenticate", "variant": "signature", "kind": 4096, @@ -12146,9 +12785,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2444, + "line": 2497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2497" } ], "type": { @@ -12172,7 +12811,7 @@ ] }, { - "id": 412, + "id": 410, "name": "refreshSession", "variant": "declaration", "kind": 2048, @@ -12180,14 +12819,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ], "signatures": [ { - "id": 413, + "id": 411, "name": "refreshSession", "variant": "signature", "kind": 4096, @@ -12256,14 +12895,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ], "parameters": [ { - "id": 414, + "id": 412, "name": "currentSession", "variant": "param", "kind": 32768, @@ -12281,14 +12920,14 @@ "type": { "type": "reflection", "declaration": { - "id": 415, + "id": 413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 416, + "id": 414, "name": "refresh_token", "variant": "declaration", "kind": 1024, @@ -12296,9 +12935,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ], "type": { @@ -12310,15 +12949,15 @@ "groups": [ { "title": "Properties", - "children": [416] + "children": [414] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ] } @@ -12354,9 +12993,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6043, + "line": 6325, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L6043" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6325" } ], "signatures": [ @@ -12396,9 +13035,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6043, + "line": 6325, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L6043" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6325" } ], "parameters": [ @@ -12439,7 +13078,7 @@ ] }, { - "id": 316, + "id": 314, "name": "resend", "variant": "declaration", "kind": 2048, @@ -12447,14 +13086,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2535, + "line": 2593, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2593" } ], "signatures": [ { - "id": 317, + "id": 315, "name": "resend", "variant": "signature", "kind": 4096, @@ -12598,14 +13237,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2535, + "line": 2593, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2593" } ], "parameters": [ { - "id": 318, + "id": 316, "name": "credentials", "variant": "param", "kind": 32768, @@ -12639,7 +13278,7 @@ ] }, { - "id": 487, + "id": 485, "name": "resetPasswordForEmail", "variant": "declaration", "kind": 2048, @@ -12647,14 +13286,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4253, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4253" } ], "signatures": [ { - "id": 488, + "id": 486, "name": "resetPasswordForEmail", "variant": "signature", "kind": 4096, @@ -12775,14 +13414,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4253, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4253" } ], "parameters": [ { - "id": 489, + "id": 487, "name": "email", "variant": "param", "kind": 32768, @@ -12801,7 +13440,7 @@ } }, { - "id": 490, + "id": 488, "name": "options", "variant": "param", "kind": 32768, @@ -12809,14 +13448,14 @@ "type": { "type": "reflection", "declaration": { - "id": 491, + "id": 489, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 493, + "id": 491, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -12834,9 +13473,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4161, + "line": 4257, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4257" } ], "type": { @@ -12845,7 +13484,7 @@ } }, { - "id": 492, + "id": 490, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -12863,9 +13502,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4160, + "line": 4256, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4160" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4256" } ], "type": { @@ -12877,15 +13516,15 @@ "groups": [ { "title": "Properties", - "children": [493, 492] + "children": [491, 490] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4159, + "line": 4255, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4159" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4255" } ] } @@ -12906,14 +13545,14 @@ { "type": "reflection", "declaration": { - "id": 494, + "id": 492, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 495, + "id": 493, "name": "data", "variant": "declaration", "kind": 1024, @@ -12921,15 +13560,15 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4165, + "line": 4261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4165" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4261" } ], "type": { "type": "reflection", "declaration": { - "id": 496, + "id": 494, "name": "__type", "variant": "declaration", "kind": 65536, @@ -12938,7 +13577,7 @@ } }, { - "id": 497, + "id": 495, "name": "error", "variant": "declaration", "kind": 1024, @@ -12946,9 +13585,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4166, + "line": 4262, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4262" } ], "type": { @@ -12960,15 +13599,15 @@ "groups": [ { "title": "Properties", - "children": [495, 497] + "children": [493, 495] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4164, + "line": 4260, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4260" } ] } @@ -12976,14 +13615,14 @@ { "type": "reflection", "declaration": { - "id": 498, + "id": 496, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 499, + "id": 497, "name": "data", "variant": "declaration", "kind": 1024, @@ -12991,9 +13630,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4168, + "line": 4264, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4264" } ], "type": { @@ -13002,7 +13641,7 @@ } }, { - "id": 500, + "id": 498, "name": "error", "variant": "declaration", "kind": 1024, @@ -13010,14 +13649,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4168, + "line": 4264, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4264" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -13026,15 +13665,15 @@ "groups": [ { "title": "Properties", - "children": [499, 500] + "children": [497, 498] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4168, + "line": 4264, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4264" } ] } @@ -13049,7 +13688,7 @@ ] }, { - "id": 400, + "id": 398, "name": "setSession", "variant": "declaration", "kind": 2048, @@ -13057,14 +13696,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3339, + "line": 3420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3420" } ], "signatures": [ { - "id": 401, + "id": 399, "name": "setSession", "variant": "signature", "kind": 4096, @@ -13156,14 +13795,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3339, + "line": 3420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3420" } ], "parameters": [ { - "id": 402, + "id": 400, "name": "currentSession", "variant": "param", "kind": 32768, @@ -13179,14 +13818,14 @@ "type": { "type": "reflection", "declaration": { - "id": 403, + "id": 401, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 404, + "id": 402, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -13194,9 +13833,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3340, + "line": 3421, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3340" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3421" } ], "type": { @@ -13205,7 +13844,7 @@ } }, { - "id": 405, + "id": 403, "name": "refresh_token", "variant": "declaration", "kind": 1024, @@ -13213,9 +13852,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3341, + "line": 3422, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3422" } ], "type": { @@ -13227,15 +13866,15 @@ "groups": [ { "title": "Properties", - "children": [404, 405] + "children": [402, 403] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3339, + "line": 3420, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3420" } ] } @@ -13263,7 +13902,7 @@ ] }, { - "id": 232, + "id": 230, "name": "signInAnonymously", "variant": "declaration", "kind": 2048, @@ -13271,14 +13910,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 689, + "line": 722, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L722" } ], "signatures": [ { - "id": 233, + "id": 231, "name": "signInAnonymously", "variant": "signature", "kind": 4096, @@ -13364,14 +14003,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 689, + "line": 722, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L722" } ], "parameters": [ { - "id": 234, + "id": 232, "name": "credentials", "variant": "param", "kind": 32768, @@ -13407,7 +14046,7 @@ ] }, { - "id": 300, + "id": 298, "name": "signInWithIdToken", "variant": "declaration", "kind": 2048, @@ -13415,14 +14054,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1977, + "line": 2030, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2030" } ], "signatures": [ { - "id": 301, + "id": 299, "name": "signInWithIdToken", "variant": "signature", "kind": 4096, @@ -13481,14 +14120,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1977, + "line": 2030, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2030" } ], "parameters": [ { - "id": 302, + "id": 300, "name": "credentials", "variant": "param", "kind": 32768, @@ -13522,7 +14161,7 @@ ] }, { - "id": 241, + "id": 239, "name": "signInWithOAuth", "variant": "declaration", "kind": 2048, @@ -13530,14 +14169,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1226, + "line": 1274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1274" } ], "signatures": [ { - "id": 242, + "id": 240, "name": "signInWithOAuth", "variant": "signature", "kind": 4096, @@ -13698,14 +14337,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1226, + "line": 1274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1274" } ], "parameters": [ { - "id": 243, + "id": 241, "name": "credentials", "variant": "param", "kind": 32768, @@ -13739,7 +14378,7 @@ ] }, { - "id": 303, + "id": 301, "name": "signInWithOtp", "variant": "declaration", "kind": 2048, @@ -13747,14 +14386,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2090, + "line": 2143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2143" } ], "signatures": [ { - "id": 304, + "id": 302, "name": "signInWithOtp", "variant": "signature", "kind": 4096, @@ -13932,14 +14571,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2090, + "line": 2143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2143" } ], "parameters": [ { - "id": 305, + "id": 303, "name": "credentials", "variant": "param", "kind": 32768, @@ -13981,9 +14620,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5985, + "line": 6267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5985" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6267" } ], "signatures": [ @@ -14023,9 +14662,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5985, + "line": 6267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5985" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6267" } ], "parameters": [ @@ -14066,7 +14705,7 @@ ] }, { - "id": 238, + "id": 236, "name": "signInWithPassword", "variant": "declaration", "kind": 2048, @@ -14074,14 +14713,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1087, + "line": 1135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1135" } ], "signatures": [ { - "id": 239, + "id": 237, "name": "signInWithPassword", "variant": "signature", "kind": 4096, @@ -14144,20 +14783,103 @@ "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n phone: '+13334445555',\n password: 'some-password',\n})\n```" } ] + }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nLog the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so fields like " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": ", and " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": " aren't hidden. The " + }, + { + "kind": "code", + "text": "`error.code`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`'invalid_credentials'`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`'email_not_confirmed'`" + }, + { + "kind": "text", + "text": ") is often more useful for branching than " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": ", and the full object surfaces both." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n email: 'example@email.com',\n password: 'example-password',\n})\nif (error) {\n console.error(error)\n return\n}\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1087, + "line": 1135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1135" } ], "parameters": [ { - "id": 240, + "id": 238, "name": "credentials", "variant": "param", "kind": 32768, @@ -14191,7 +14913,7 @@ ] }, { - "id": 309, + "id": 307, "name": "signInWithSSO", "variant": "declaration", "kind": 2048, @@ -14199,14 +14921,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2381, + "line": 2434, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2434" } ], "signatures": [ { - "id": 310, + "id": 308, "name": "signInWithSSO", "variant": "signature", "kind": 4096, @@ -14278,14 +15000,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2381, + "line": 2434, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2434" } ], "parameters": [ { - "id": 311, + "id": 309, "name": "params", "variant": "param", "kind": 32768, @@ -14319,7 +15041,7 @@ ] }, { - "id": 247, + "id": 245, "name": "signInWithWeb3", "variant": "declaration", "kind": 2048, @@ -14327,14 +15049,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1501, + "line": 1554, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1554" } ], "signatures": [ { - "id": 248, + "id": 246, "name": "signInWithWeb3", "variant": "signature", "kind": 4096, @@ -14419,14 +15141,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1501, + "line": 1554, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1554" } ], "parameters": [ { - "id": 249, + "id": 247, "name": "credentials", "variant": "param", "kind": 32768, @@ -14452,14 +15174,14 @@ { "type": "reflection", "declaration": { - "id": 250, + "id": 248, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 251, + "id": 249, "name": "data", "variant": "declaration", "kind": 1024, @@ -14467,22 +15189,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ], "type": { "type": "reflection", "declaration": { - "id": 252, + "id": 250, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 253, + "id": 251, "name": "session", "variant": "declaration", "kind": 1024, @@ -14490,9 +15212,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ], "type": { @@ -14503,7 +15225,7 @@ } }, { - "id": 254, + "id": 252, "name": "user", "variant": "declaration", "kind": 1024, @@ -14511,9 +15233,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ], "type": { @@ -14527,22 +15249,22 @@ "groups": [ { "title": "Properties", - "children": [253, 254] + "children": [251, 252] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ] } } }, { - "id": 255, + "id": 253, "name": "error", "variant": "declaration", "kind": 1024, @@ -14550,9 +15272,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1504, + "line": 1557, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1504" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1557" } ], "type": { @@ -14564,15 +15286,15 @@ "groups": [ { "title": "Properties", - "children": [251, 255] + "children": [249, 253] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1502, + "line": 1555, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1555" } ] } @@ -14580,14 +15302,14 @@ { "type": "reflection", "declaration": { - "id": 256, + "id": 254, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 257, + "id": 255, "name": "data", "variant": "declaration", "kind": 1024, @@ -14595,22 +15317,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { "type": "reflection", "declaration": { - "id": 258, + "id": 256, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 259, + "id": 257, "name": "session", "variant": "declaration", "kind": 1024, @@ -14618,9 +15340,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { @@ -14629,7 +15351,7 @@ } }, { - "id": 260, + "id": 258, "name": "user", "variant": "declaration", "kind": 1024, @@ -14637,9 +15359,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { @@ -14651,22 +15373,22 @@ "groups": [ { "title": "Properties", - "children": [259, 260] + "children": [257, 258] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ] } } }, { - "id": 261, + "id": 259, "name": "error", "variant": "declaration", "kind": 1024, @@ -14674,14 +15396,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14690,15 +15412,15 @@ "groups": [ { "title": "Properties", - "children": [257, 261] + "children": [255, 259] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ] } @@ -14713,7 +15435,7 @@ ] }, { - "id": 453, + "id": 451, "name": "signOut", "variant": "declaration", "kind": 2048, @@ -14721,14 +15443,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ], "signatures": [ { - "id": 454, + "id": 452, "name": "signOut", "variant": "signature", "kind": 4096, @@ -14882,14 +15604,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ], "parameters": [ { - "id": 455, + "id": 453, "name": "options", "variant": "param", "kind": 32768, @@ -14913,14 +15635,14 @@ { "type": "reflection", "declaration": { - "id": 456, + "id": 454, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 457, + "id": 455, "name": "error", "variant": "declaration", "kind": 1024, @@ -14928,9 +15650,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ], "type": { @@ -14942,7 +15664,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14953,15 +15675,15 @@ "groups": [ { "title": "Properties", - "children": [457] + "children": [455] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ] } @@ -14974,7 +15696,7 @@ ] }, { - "id": 235, + "id": 233, "name": "signUp", "variant": "declaration", "kind": 2048, @@ -14982,14 +15704,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 899, + "line": 932, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L932" } ], "signatures": [ { - "id": 236, + "id": 234, "name": "signUp", "variant": "signature", "kind": 4096, @@ -15188,14 +15910,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 899, + "line": 932, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L932" } ], "parameters": [ { - "id": 237, + "id": 235, "name": "credentials", "variant": "param", "kind": 32768, @@ -15229,7 +15951,7 @@ ] }, { - "id": 577, + "id": 575, "name": "startAutoRefresh", "variant": "declaration", "kind": 2048, @@ -15237,14 +15959,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4941, + "line": 5119, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5119" } ], "signatures": [ { - "id": 578, + "id": 576, "name": "startAutoRefresh", "variant": "signature", "kind": 4096, @@ -15313,9 +16035,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4941, + "line": 5119, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5119" } ], "type": { @@ -15337,7 +16059,7 @@ ] }, { - "id": 579, + "id": 577, "name": "stopAutoRefresh", "variant": "declaration", "kind": 2048, @@ -15345,14 +16067,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4976, + "line": 5154, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5154" } ], "signatures": [ { - "id": 580, + "id": 578, "name": "stopAutoRefresh", "variant": "signature", "kind": 4096, @@ -15407,9 +16129,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4976, + "line": 5154, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5154" } ], "type": { @@ -15431,7 +16153,7 @@ ] }, { - "id": 522, + "id": 520, "name": "unlinkIdentity", "variant": "declaration", "kind": 2048, @@ -15439,14 +16161,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4420, + "line": 4516, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4516" } ], "signatures": [ { - "id": 523, + "id": 521, "name": "unlinkIdentity", "variant": "signature", "kind": 4096, @@ -15500,14 +16222,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4420, + "line": 4516, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4516" } ], "parameters": [ { - "id": 524, + "id": 522, "name": "identity", "variant": "param", "kind": 32768, @@ -15533,14 +16255,14 @@ { "type": "reflection", "declaration": { - "id": 525, + "id": 523, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 526, + "id": 524, "name": "data", "variant": "declaration", "kind": 1024, @@ -15548,15 +16270,15 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4422, + "line": 4518, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4422" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4518" } ], "type": { "type": "reflection", "declaration": { - "id": 527, + "id": 525, "name": "__type", "variant": "declaration", "kind": 65536, @@ -15565,7 +16287,7 @@ } }, { - "id": 528, + "id": 526, "name": "error", "variant": "declaration", "kind": 1024, @@ -15573,9 +16295,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4423, + "line": 4519, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4519" } ], "type": { @@ -15587,15 +16309,15 @@ "groups": [ { "title": "Properties", - "children": [526, 528] + "children": [524, 526] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4421, + "line": 4517, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4421" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4517" } ] } @@ -15603,14 +16325,14 @@ { "type": "reflection", "declaration": { - "id": 529, + "id": 527, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 530, + "id": 528, "name": "data", "variant": "declaration", "kind": 1024, @@ -15618,9 +16340,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4425, + "line": 4521, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4521" } ], "type": { @@ -15629,7 +16351,7 @@ } }, { - "id": 531, + "id": 529, "name": "error", "variant": "declaration", "kind": 1024, @@ -15637,14 +16359,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4425, + "line": 4521, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4521" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -15653,15 +16375,15 @@ "groups": [ { "title": "Properties", - "children": [530, 531] + "children": [528, 529] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4425, + "line": 4521, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4521" } ] } @@ -15676,7 +16398,7 @@ ] }, { - "id": 388, + "id": 386, "name": "updateUser", "variant": "declaration", "kind": 2048, @@ -15684,14 +16406,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3148, + "line": 3224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3224" } ], "signatures": [ { - "id": 389, + "id": 387, "name": "updateUser", "variant": "signature", "kind": 4096, @@ -15866,14 +16588,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3148, + "line": 3224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3224" } ], "parameters": [ { - "id": 390, + "id": 388, "name": "attributes", "variant": "param", "kind": 32768, @@ -15886,7 +16608,7 @@ } }, { - "id": 391, + "id": 389, "name": "options", "variant": "param", "kind": 32768, @@ -15894,14 +16616,14 @@ "type": { "type": "reflection", "declaration": { - "id": 392, + "id": 390, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 393, + "id": 391, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -15911,9 +16633,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3151, + "line": 3227, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3227" } ], "type": { @@ -15925,15 +16647,15 @@ "groups": [ { "title": "Properties", - "children": [393] + "children": [391] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3150, + "line": 3226, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3226" } ] } @@ -15962,7 +16684,7 @@ ] }, { - "id": 306, + "id": 304, "name": "verifyOtp", "variant": "declaration", "kind": 2048, @@ -15970,14 +16692,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2281, + "line": 2334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2334" } ], "signatures": [ { - "id": 307, + "id": 305, "name": "verifyOtp", "variant": "signature", "kind": 4096, @@ -16144,14 +16866,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2281, + "line": 2334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2334" } ], "parameters": [ { - "id": 308, + "id": 306, "name": "params", "variant": "param", "kind": 32768, @@ -16188,17 +16910,17 @@ "groups": [ { "title": "Constructors", - "children": [141] + "children": [138] }, { "title": "Properties", - "children": [145, 146, 147, 148] + "children": [142, 143, 144, 145] }, { "title": "Methods", "children": [ - 244, 662, 319, 382, 501, 228, 215, 511, 463, 312, 412, 688, 316, 487, 400, 232, 300, - 241, 303, 685, 238, 309, 247, 453, 235, 577, 579, 522, 388, 306 + 579, 242, 662, 317, 380, 499, 226, 213, 509, 461, 310, 410, 688, 314, 485, 398, 230, + 298, 239, 301, 685, 236, 307, 245, 451, 233, 575, 577, 520, 386, 304 ] } ], @@ -16206,21 +16928,21 @@ { "title": "Auth", "children": [ - 244, 662, 319, 382, 501, 228, 511, 463, 312, 412, 688, 316, 487, 400, 232, 300, 241, - 303, 685, 238, 309, 247, 453, 235, 577, 579, 522, 388, 306 + 579, 242, 662, 317, 380, 499, 226, 509, 461, 310, 410, 688, 314, 485, 398, 230, 298, + 239, 301, 685, 236, 307, 245, 451, 233, 575, 577, 520, 386, 304 ] }, { "title": "Other", - "children": [141, 145, 146, 147, 148, 215] + "children": [138, 142, 143, 144, 145, 213] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 217, + "line": 225, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L225" } ] }, @@ -16231,19 +16953,38 @@ "kind": 128, "flags": {}, "comment": { - "summary": [ - { - "kind": "text", - "text": "Error thrown when the browser Navigator Lock API fails to acquire a lock." - } - ], + "summary": [], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "The auth client doesn't call " + }, + { + "kind": "code", + "text": "`navigator.locks`" + }, + { + "kind": "text", + "text": ", so this error\nnever originates from " + }, { "kind": "code", - "text": "```ts\nimport { NavigatorLockAcquireTimeoutError } from '@supabase/auth-js'\n\nthrow new NavigatorLockAcquireTimeoutError('Lock timed out')\n```" + "text": "`supabase.auth.*`" + }, + { + "kind": "text", + "text": " calls. Direct callers of\n" + }, + { + "kind": "code", + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " still receive it on acquire timeout." } ] } @@ -16259,9 +17000,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 37, + "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L39" } ], "signatures": [ @@ -16274,9 +17015,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 37, + "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L39" } ], "parameters": [ @@ -16324,9 +17065,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 35, + "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L37" } ], "type": { @@ -16354,9 +17095,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 52, + "line": 49, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L49" } ], "extendedTypes": [ @@ -16413,9 +17154,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 555, + "line": 544, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L544" } ], "type": { @@ -16442,9 +17183,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 581, + "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L570" } ], "type": { @@ -16472,9 +17213,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 501, + "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L490" } ], "type": { @@ -16507,9 +17248,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 506, + "line": 495, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L495" } ], "type": { @@ -16541,9 +17282,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 562, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L551" } ], "type": { @@ -16586,9 +17327,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 606, + "line": 595, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L595" } ], "type": { @@ -16616,9 +17357,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 523, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L512" } ], "type": { @@ -16651,9 +17392,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 516, + "line": 505, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L505" } ], "type": { @@ -16693,9 +17434,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 599, + "line": 588, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L599" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L588" } ], "type": { @@ -16723,9 +17464,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 511, + "line": 500, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L500" } ], "type": { @@ -16757,9 +17498,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 569, + "line": 558, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L558" } ], "type": { @@ -16818,9 +17559,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 590, + "line": 579, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L579" } ], "type": { @@ -16863,9 +17604,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 545, + "line": 534, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L534" } ], "type": { @@ -16883,9 +17624,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 534, + "line": 523, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L523" } ], "extendedTypes": [ @@ -16961,9 +17702,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 380, + "line": 369, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L369" } ], "type": { @@ -16990,9 +17731,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 386, + "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L375" } ], "type": { @@ -17010,9 +17751,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 378, + "line": 367, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L367" } ] }, @@ -17040,9 +17781,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2644, + "line": 2633, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2644" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2633" } ], "signatures": [ @@ -17092,9 +17833,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2644, + "line": 2633, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2644" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2633" } ], "parameters": [ @@ -17161,9 +17902,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2646, + "line": 2635, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2646" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2635" } ], "type": { @@ -17181,9 +17922,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2646, + "line": 2635, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2646" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2635" } ] } @@ -17219,9 +17960,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2664, + "line": 2653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2653" } ], "signatures": [ @@ -17271,9 +18012,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2664, + "line": 2653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2653" } ], "parameters": [ @@ -17340,9 +18081,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2666, + "line": 2655, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2655" } ], "type": { @@ -17360,9 +18101,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2666, + "line": 2655, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2655" } ] } @@ -17398,9 +18139,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2627, + "line": 2616, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2616" } ], "signatures": [ @@ -17470,9 +18211,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2627, + "line": 2616, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2616" } ], "parameters": [ @@ -17525,9 +18266,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2678, + "line": 2667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2667" } ], "signatures": [ @@ -17577,9 +18318,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2678, + "line": 2667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2667" } ], "type": { @@ -17611,9 +18352,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ], "signatures": [ @@ -17663,9 +18404,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ], "parameters": [ @@ -17709,9 +18450,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ], "type": { @@ -17729,9 +18470,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ] } @@ -17774,9 +18515,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2602, + "line": 2591, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2602" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2591" } ] }, @@ -17812,9 +18553,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2894, + "line": 2883, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2894" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2883" } ], "signatures": [ @@ -17855,9 +18596,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2894, + "line": 2883, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2894" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2883" } ], "parameters": [ @@ -17904,9 +18645,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2878, + "line": 2867, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2867" } ], "signatures": [ @@ -17947,9 +18688,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2878, + "line": 2867, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2867" } ], "type": { @@ -17981,9 +18722,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2856, + "line": 2845, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2856" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2845" } ], "signatures": [ @@ -18032,9 +18773,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2856, + "line": 2845, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2856" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2845" } ], "parameters": [ @@ -18083,9 +18824,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2833, + "line": 2822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2833" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2822" } ], "signatures": [ @@ -18134,9 +18875,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2833, + "line": 2822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2833" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2822" } ], "type": { @@ -18168,9 +18909,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2886, + "line": 2875, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2886" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2875" } ], "signatures": [ @@ -18211,9 +18952,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2886, + "line": 2875, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2886" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2875" } ], "parameters": [ @@ -18260,9 +19001,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2867, + "line": 2856, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2867" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2856" } ], "signatures": [ @@ -18303,9 +19044,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2867, + "line": 2856, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2867" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2856" } ], "parameters": [ @@ -18352,9 +19093,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2842, + "line": 2831, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2831" } ], "signatures": [ @@ -18395,9 +19136,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2842, + "line": 2831, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2831" } ], "parameters": [ @@ -18451,9 +19192,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2822, + "line": 2811, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2822" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2811" } ] }, @@ -18499,9 +19240,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 965, + "line": 954, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L965" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L954" } ], "type": { @@ -18528,9 +19269,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 967, + "line": 956, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L956" } ], "type": { @@ -18548,9 +19289,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 959, + "line": 948, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L948" } ] }, @@ -18578,9 +19319,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2436, + "line": 2425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2425" } ], "signatures": [ @@ -18645,9 +19386,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2436, + "line": 2425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2425" } ], "parameters": [ @@ -18694,9 +19435,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "signatures": [ @@ -18745,9 +19486,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "parameters": [ @@ -18788,9 +19529,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "type": { @@ -18807,9 +19548,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "type": { @@ -18821,7 +19562,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -18838,9 +19579,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ] } @@ -18861,9 +19602,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2446, + "line": 2435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2435" } ], "signatures": [ @@ -18912,9 +19653,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2446, + "line": 2435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2435" } ], "parameters": [ @@ -18959,9 +19700,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2420, + "line": 2409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2409" } ], "signatures": [ @@ -19010,9 +19751,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2420, + "line": 2409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2409" } ], "parameters": [ @@ -19061,9 +19802,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2461, + "line": 2450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2450" } ], "signatures": [ @@ -19136,9 +19877,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2461, + "line": 2450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2450" } ], "parameters": [ @@ -19203,9 +19944,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2411, + "line": 2400, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2400" } ] }, @@ -19239,9 +19980,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1806, + "line": 1795, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1795" } ], "signatures": [ @@ -19320,9 +20061,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1806, + "line": 1795, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1795" } ], "parameters": [ @@ -19369,9 +20110,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1775, + "line": 1764, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1764" } ], "signatures": [ @@ -19435,9 +20176,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1775, + "line": 1764, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1764" } ], "parameters": [ @@ -19491,9 +20232,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1743, + "line": 1732, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1743" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1732" } ] }, @@ -19521,9 +20262,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2166, + "line": 2155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2155" } ], "signatures": [ @@ -19572,9 +20313,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2166, + "line": 2155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2155" } ], "parameters": [ @@ -19621,9 +20362,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "signatures": [ @@ -19672,9 +20413,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "parameters": [ @@ -19715,9 +20456,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "type": { @@ -19734,9 +20475,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "type": { @@ -19748,7 +20489,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -19765,9 +20506,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ] } @@ -19788,9 +20529,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2177, + "line": 2166, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2166" } ], "signatures": [ @@ -19839,9 +20580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2177, + "line": 2166, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2166" } ], "parameters": [ @@ -19886,9 +20627,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2155, + "line": 2144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2144" } ], "signatures": [ @@ -19937,9 +20678,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2155, + "line": 2144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2144" } ], "parameters": [ @@ -19988,9 +20729,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2210, + "line": 2199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2199" } ], "signatures": [ @@ -20039,9 +20780,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2210, + "line": 2199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2199" } ], "parameters": [ @@ -20086,9 +20827,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2188, + "line": 2177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2177" } ], "signatures": [ @@ -20137,9 +20878,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2188, + "line": 2177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2177" } ], "parameters": [ @@ -20204,9 +20945,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2145, + "line": 2134, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2145" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2134" } ] }, @@ -20226,9 +20967,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2916, + "line": 2905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2916" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2905" } ], "signatures": [ @@ -20277,9 +21018,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2916, + "line": 2905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2916" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2905" } ], "parameters": [ @@ -20326,9 +21067,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2906, + "line": 2895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2906" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2895" } ], "signatures": [ @@ -20377,9 +21118,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2906, + "line": 2895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2906" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2895" } ], "parameters": [ @@ -20433,9 +21174,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2897, + "line": 2886, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2897" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2886" } ] }, @@ -20463,9 +21204,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1701, + "line": 1690, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1701" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1690" } ], "type": { @@ -20487,27 +21228,27 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1434, + "line": 1423, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1434" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1423" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1435, + "line": 1424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1424" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1436, + "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1425" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1437, + "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1437" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1426" } ], "signatures": [ @@ -20642,9 +21383,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1434, + "line": 1423, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1434" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1423" } ], "parameters": [ @@ -20693,9 +21434,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -20712,14 +21453,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -20734,9 +21475,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -20759,9 +21500,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -20783,9 +21524,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -20803,9 +21544,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -20826,9 +21567,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1435, + "line": 1424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1424" } ], "parameters": [ @@ -20874,9 +21615,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -20893,14 +21634,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -20915,9 +21656,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -20940,9 +21681,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -20964,9 +21705,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -20984,9 +21725,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -21007,9 +21748,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1436, + "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1425" } ], "parameters": [ @@ -21055,9 +21796,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -21074,14 +21815,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -21096,9 +21837,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -21121,9 +21862,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -21165,9 +21906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -21185,9 +21926,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -21208,9 +21949,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1437, + "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1437" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1426" } ], "parameters": [ @@ -21257,9 +21998,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1629, + "line": 1618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1618" } ], "signatures": [ @@ -21356,9 +22097,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1629, + "line": 1618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1618" } ], "parameters": [ @@ -21408,27 +22149,27 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1360, + "line": 1349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1360" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1349" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1361, + "line": 1350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1350" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1362, + "line": 1351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1362" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1351" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1363, + "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1352" } ], "signatures": [ @@ -21628,9 +22369,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1360, + "line": 1349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1360" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1349" } ], "parameters": [ @@ -21675,9 +22416,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1361, + "line": 1350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1350" } ], "parameters": [ @@ -21722,9 +22463,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1362, + "line": 1351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1362" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1351" } ], "parameters": [ @@ -21772,9 +22513,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1363, + "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1352" } ], "parameters": [ @@ -21821,9 +22562,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1696, + "line": 1685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1685" } ], "signatures": [ @@ -21978,9 +22719,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1696, + "line": 1685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1685" } ], "parameters": [ @@ -22035,9 +22776,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1642, + "line": 1631, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1642" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1631" } ], "signatures": [ @@ -22094,7 +22835,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient#getUser", - "target": 382 + "target": 380 }, { "kind": "text", @@ -22125,9 +22866,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1642, + "line": 1631, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1642" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1631" } ], "type": { @@ -22182,9 +22923,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1547, + "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1536" } ], "signatures": [ @@ -22264,9 +23005,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1547, + "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1536" } ], "parameters": [ @@ -22313,27 +23054,27 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1518, + "line": 1507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1507" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1519, + "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1508" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1520, + "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1520" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1509" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1521, + "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1510" } ], "signatures": [ @@ -22406,9 +23147,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1518, + "line": 1507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1507" } ], "parameters": [ @@ -22453,9 +23194,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1519, + "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1508" } ], "parameters": [ @@ -22500,9 +23241,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1520, + "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1520" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1509" } ], "parameters": [ @@ -22547,9 +23288,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1521, + "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1510" } ], "parameters": [ @@ -22611,9 +23352,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1278, + "line": 1267, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1267" } ] }, @@ -22635,9 +23376,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2004, + "line": 1993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2004" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1993" } ], "type": { @@ -22654,9 +23395,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2003, + "line": 1992, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1992" } ], "type": { @@ -22678,9 +23419,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2005, + "line": 1994, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2005" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1994" } ], "type": { @@ -22697,9 +23438,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2002, + "line": 1991, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2002" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1991" } ], "type": { @@ -22749,9 +23490,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2001, + "line": 1990, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2001" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1990" } ], "indexSignatures": [ @@ -22764,9 +23505,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2006, + "line": 1995, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2006" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1995" } ], "parameters": [ @@ -22826,9 +23567,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1963, + "line": 1952, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1963" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1952" } ], "type": { @@ -22862,9 +23603,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1992, + "line": 1981, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1992" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1981" } ], "type": { @@ -22900,9 +23641,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1984, + "line": 1973, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1984" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1973" } ], "type": { @@ -22923,9 +23664,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1959, + "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1959" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -22961,9 +23702,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1977, + "line": 1966, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1966" } ], "type": { @@ -22982,9 +23723,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1960, + "line": 1949, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1960" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1949" } ], "type": { @@ -23008,9 +23749,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1961, + "line": 1950, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1961" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1950" } ], "type": { @@ -23034,9 +23775,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1979, + "line": 1968, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1968" } ], "type": { @@ -23055,9 +23796,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1957, + "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1957" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -23081,9 +23822,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1982, + "line": 1971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1982" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1971" } ], "type": { @@ -23102,9 +23843,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1983, + "line": 1972, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1983" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1972" } ], "type": { @@ -23123,9 +23864,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1978, + "line": 1967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1978" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1967" } ], "type": { @@ -23144,9 +23885,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1995, + "line": 1984, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1995" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1984" } ], "type": { @@ -23165,9 +23906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1962, + "line": 1951, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1962" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1951" } ], "type": { @@ -23191,9 +23932,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1964, + "line": 1953, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1964" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1953" } ], "type": { @@ -23217,9 +23958,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1958, + "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1958" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -23243,9 +23984,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1985, + "line": 1974, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1985" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1974" } ], "type": { @@ -23268,9 +24009,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1975, + "line": 1964, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1975" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1964" } ], "indexSignatures": [ @@ -23283,9 +24024,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1998, + "line": 1987, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1998" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1987" } ], "parameters": [ @@ -23340,9 +24081,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 328, + "line": 317, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L317" } ], "type": { @@ -23369,9 +24110,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 340, + "line": 329, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L340" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L329" } ], "type": { @@ -23396,9 +24137,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 336, + "line": 325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L325" } ], "type": { @@ -23425,9 +24166,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 324, + "line": 313, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L313" } ], "type": { @@ -23463,9 +24204,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 319, + "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L308" } ], "type": { @@ -23499,9 +24240,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 332, + "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L321" } ], "type": { @@ -23518,9 +24259,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 341, + "line": 330, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L330" } ], "type": { @@ -23545,9 +24286,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 346, + "line": 335, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L335" } ], "type": { @@ -23567,9 +24308,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 315, + "line": 304, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L304" } ] }, @@ -23597,9 +24338,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 619, + "line": 608, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L608" } ], "type": { @@ -23613,9 +24354,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 619, + "line": 608, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L608" } ], "signatures": [ @@ -23628,9 +24369,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 619, + "line": 608, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L608" } ], "parameters": [ @@ -23696,9 +24437,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 615, + "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L604" } ], "type": { @@ -23732,9 +24473,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 623, + "line": 612, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L612" } ], "type": { @@ -23748,9 +24489,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 623, + "line": 612, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L612" } ], "signatures": [ @@ -23763,9 +24504,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 623, + "line": 612, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L612" } ], "type": { @@ -23787,9 +24528,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 609, + "line": 598, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L598" } ] }, @@ -23811,9 +24552,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 475, + "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L464" } ], "type": { @@ -23830,9 +24571,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 466, + "line": 455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L455" } ], "type": { @@ -23851,9 +24592,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 468, + "line": 457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L457" } ], "type": { @@ -23872,9 +24613,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 490, + "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L479" } ], "type": { @@ -23893,9 +24634,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 469, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L458" } ], "type": { @@ -23914,9 +24655,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 479, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L468" } ], "type": { @@ -23933,9 +24674,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 478, + "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L467" } ], "type": { @@ -23954,9 +24695,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 489, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L478" } ], "type": { @@ -23975,9 +24716,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 476, + "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L465" } ], "type": { @@ -23996,9 +24737,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 471, + "line": 460, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L460" } ], "type": { @@ -24017,9 +24758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 480, + "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L469" } ], "type": { @@ -24038,9 +24779,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 488, + "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L477" } ], "type": { @@ -24119,9 +24860,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 465, + "line": 454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L454" } ], "type": { @@ -24140,9 +24881,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 485, + "line": 474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L474" } ], "type": { @@ -24166,9 +24907,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 474, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L463" } ], "type": { @@ -24187,9 +24928,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 486, + "line": 475, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L475" } ], "type": { @@ -24208,9 +24949,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 487, + "line": 476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L487" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L476" } ], "type": { @@ -24229,9 +24970,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 482, + "line": 471, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L471" } ], "type": { @@ -24250,9 +24991,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 472, + "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L461" } ], "type": { @@ -24271,9 +25012,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 473, + "line": 462, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L462" } ], "type": { @@ -24292,9 +25033,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 477, + "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L466" } ], "type": { @@ -24313,9 +25054,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 481, + "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L470" } ], "type": { @@ -24334,9 +25075,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 470, + "line": 459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L459" } ], "type": { @@ -24355,9 +25096,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 483, + "line": 472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L472" } ], "type": { @@ -24376,9 +25117,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 484, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L484" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L473" } ], "type": { @@ -24395,9 +25136,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 467, + "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L456" } ], "type": { @@ -24420,9 +25161,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 464, + "line": 453, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L453" } ] }, @@ -24452,9 +25193,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 452, + "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L441" } ], "type": { @@ -24481,9 +25222,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 456, + "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L445" } ], "type": { @@ -24504,9 +25245,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 448, + "line": 437, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L437" } ], "indexSignatures": [ @@ -24519,9 +25260,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 457, + "line": 446, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L446" } ], "parameters": [ @@ -24570,9 +25311,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 501, + "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L490" } ], "type": { @@ -24615,9 +25356,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 531, + "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L520" } ], "type": { @@ -24644,9 +25385,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 506, + "line": 495, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L495" } ], "type": { @@ -24673,9 +25414,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 523, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L512" } ], "type": { @@ -24702,9 +25443,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 516, + "line": 505, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L505" } ], "type": { @@ -24731,9 +25472,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 511, + "line": 500, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L500" } ], "type": { @@ -24751,9 +25492,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 493, + "line": 482, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L482" } ] }, @@ -24775,9 +25516,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 397, + "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L386" } ], "type": { @@ -24794,9 +25535,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 390, + "line": 379, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L379" } ], "type": { @@ -24815,9 +25556,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 392, + "line": 381, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L381" } ], "type": { @@ -24831,9 +25572,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 392, + "line": 381, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L381" } ], "indexSignatures": [ @@ -24846,9 +25587,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 393, + "line": 382, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L382" } ], "parameters": [ @@ -24882,9 +25623,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 395, + "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L395" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L384" } ], "type": { @@ -24903,9 +25644,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 398, + "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L387" } ], "type": { @@ -24922,9 +25663,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 396, + "line": 385, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L385" } ], "type": { @@ -24943,9 +25684,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 399, + "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L388" } ], "type": { @@ -24962,9 +25703,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 391, + "line": 380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L380" } ], "type": { @@ -24982,9 +25723,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 389, + "line": 378, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L378" } ] }, @@ -24997,9 +25738,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 460, + "line": 449, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L449" } ], "indexSignatures": [ @@ -25012,9 +25753,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 461, + "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L450" } ], "parameters": [ @@ -25061,9 +25802,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 836, + "line": 825, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L836" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L825" } ], "type": { @@ -25082,9 +25823,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 841, + "line": 830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L830" } ], "type": { @@ -25121,9 +25862,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 849, + "line": 838, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L838" } ], "type": { @@ -25150,9 +25891,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 843, + "line": 832, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L832" } ], "type": { @@ -25170,9 +25911,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 841, + "line": 830, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L830" } ] } @@ -25195,9 +25936,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 838, + "line": 827, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L827" } ], "type": { @@ -25222,9 +25963,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 840, + "line": 829, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L840" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L829" } ], "type": { @@ -25244,9 +25985,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 834, + "line": 823, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L834" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L823" } ] }, @@ -25268,9 +26009,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 822, + "line": 811, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L811" } ], "type": { @@ -25307,9 +26048,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 831, + "line": 820, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L820" } ], "type": { @@ -25336,9 +26077,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 824, + "line": 813, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L813" } ], "type": { @@ -25356,9 +26097,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 822, + "line": 811, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L811" } ] } @@ -25381,9 +26122,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 817, + "line": 806, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L806" } ], "type": { @@ -25408,9 +26149,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 819, + "line": 808, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L819" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L808" } ], "type": { @@ -25435,9 +26176,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 821, + "line": 810, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L821" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L810" } ], "type": { @@ -25457,9 +26198,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 815, + "line": 804, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L804" } ] }, @@ -25487,9 +26228,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 855, + "line": 844, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L844" } ], "type": { @@ -25514,9 +26255,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 858, + "line": 847, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L847" } ], "type": { @@ -25536,9 +26277,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 853, + "line": 842, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L842" } ] }, @@ -25551,9 +26292,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 364, + "line": 353, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L353" } ], "type": { @@ -25597,9 +26338,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 364, + "line": 353, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L353" } ] } @@ -25620,7 +26361,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L54" } ], "type": { @@ -25670,7 +26411,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 52, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L52" } ], "type": { @@ -25687,9 +26428,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1248, + "line": 1237, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1237" } ], "type": { @@ -25721,9 +26462,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1248, + "line": 1237, "character": 71, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1237" } ] } @@ -25742,9 +26483,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 696, + "line": 685, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L685" } ], "type": { @@ -25776,9 +26517,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 696, + "line": 685, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L685" } ] } @@ -25806,9 +26547,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1714, + "line": 1703, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1703" } ], "type": { @@ -25837,9 +26578,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1716, + "line": 1705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1716" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1705" } ], "type": { @@ -25864,9 +26605,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1719, + "line": 1708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1708" } ], "type": { @@ -25884,9 +26625,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1714, + "line": 1703, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1703" } ] } @@ -25910,9 +26651,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1707, + "line": 1696, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1696" } ], "type": { @@ -25945,9 +26686,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1709, + "line": 1698, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1698" } ], "type": { @@ -25965,9 +26706,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1707, + "line": 1696, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1696" } ] } @@ -25995,9 +26736,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1733, + "line": 1722, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1722" } ], "type": { @@ -26026,9 +26767,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1735, + "line": 1724, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1735" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1724" } ], "type": { @@ -26046,9 +26787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1733, + "line": 1722, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1722" } ] } @@ -26072,9 +26813,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1725, + "line": 1714, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1725" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1714" } ], "type": { @@ -26107,9 +26848,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1727, + "line": 1716, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1716" } ], "type": { @@ -26132,9 +26873,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1725, + "line": 1714, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1725" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1714" } ] } @@ -26153,9 +26894,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1179, + "line": 1168, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1168" } ], "type": { @@ -26205,9 +26946,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1230, + "line": 1219, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1219" } ], "type": { @@ -26243,9 +26984,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1171, + "line": 1160, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1171" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1160" } ], "type": { @@ -26316,9 +27057,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1200, + "line": 1189, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1189" } ], "type": { @@ -26376,9 +27117,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1220, + "line": 1209, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1209" } ], "type": { @@ -26428,9 +27169,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1227, + "line": 1216, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1216" } ], "type": { @@ -26457,9 +27198,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1933, + "line": 1922, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1933" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1922" } ], "type": { @@ -26509,9 +27250,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1146, + "line": 1135, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1135" } ], "type": { @@ -26547,9 +27288,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1924, + "line": 1913, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1924" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1913" } ], "type": { @@ -26620,9 +27361,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1946, + "line": 1935, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1946" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1935" } ], "type": { @@ -26672,9 +27413,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1250, + "line": 1239, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1250" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1239" } ], "type": { @@ -26707,9 +27448,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1271, + "line": 1260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1260" } ], "type": { @@ -26751,9 +27492,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1252, + "line": 1241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1252" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1241" } ], "type": { @@ -26802,9 +27543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1260, + "line": 1249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1260" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1249" } ], "type": { @@ -26833,9 +27574,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1250, + "line": 1239, "character": 74, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1250" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1239" } ] } @@ -26862,9 +27603,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1236, + "line": 1225, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1225" } ], "typeParameters": [ @@ -26935,9 +27676,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1240, + "line": 1229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1229" } ], "type": { @@ -26960,9 +27701,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1238, + "line": 1227, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1227" } ] } @@ -27026,9 +27767,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1151, + "line": 1140, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1140" } ], "type": { @@ -27061,9 +27802,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1153, + "line": 1142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1142" } ], "type": { @@ -27081,9 +27822,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1151, + "line": 1140, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1140" } ] } @@ -27110,9 +27851,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1144, + "line": 1133, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1133" } ], "type": { @@ -27147,9 +27888,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1123, + "line": 1112, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1112" } ], "type": { @@ -27178,9 +27919,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1125, + "line": 1114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1114" } ], "type": { @@ -27205,9 +27946,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1131, + "line": 1120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1120" } ], "type": { @@ -27232,9 +27973,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1134, + "line": 1123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1123" } ], "type": { @@ -27267,9 +28008,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1128, + "line": 1117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1117" } ], "type": { @@ -27294,9 +28035,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1137, + "line": 1126, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1126" } ], "type": { @@ -27316,9 +28057,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1123, + "line": 1112, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1112" } ] } @@ -27352,9 +28093,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2561, + "line": 2550, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2561" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2550" } ], "type": { @@ -27400,9 +28141,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2569, + "line": 2558, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2569" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2558" } ], "type": { @@ -27437,9 +28178,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2588, + "line": 2577, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2588" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2577" } ], "type": { @@ -27477,9 +28218,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2594, + "line": 2583, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2594" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2583" } ], "type": { @@ -27497,9 +28238,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2594, + "line": 2583, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2594" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2583" } ] } @@ -27531,9 +28272,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 267, + "line": 256, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L256" } ], "type": { @@ -27560,9 +28301,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 270, + "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L259" } ], "type": { @@ -27588,9 +28329,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 269, + "line": 258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L258" } ], "type": { @@ -27607,9 +28348,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 268, + "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L257" } ], "type": { @@ -27627,9 +28368,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 267, + "line": 256, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L256" } ] } @@ -27648,9 +28389,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2811, + "line": 2800, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2811" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2800" } ], "type": { @@ -27671,9 +28412,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2813, + "line": 2802, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2813" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2802" } ], "type": { @@ -27690,9 +28431,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2812, + "line": 2801, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2812" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2801" } ], "type": { @@ -27710,9 +28451,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2811, + "line": 2800, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2811" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2800" } ] } @@ -27727,9 +28468,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2807, + "line": 2796, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2807" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2796" } ], "type": { @@ -27750,9 +28491,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2808, + "line": 2797, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2808" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2797" } ], "type": { @@ -27770,9 +28511,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2807, + "line": 2796, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2807" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2796" } ] } @@ -27787,9 +28528,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2795, + "line": 2784, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2795" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2784" } ], "type": { @@ -27816,9 +28557,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2797, + "line": 2786, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2786" } ], "type": { @@ -27843,9 +28584,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2798, + "line": 2787, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2787" } ], "type": { @@ -27873,9 +28614,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2798, + "line": 2787, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2787" } ], "type": { @@ -27904,9 +28645,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2798, + "line": 2787, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2787" } ] } @@ -27925,7 +28666,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -27945,9 +28686,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2803, + "line": 2792, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2803" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2792" } ], "type": { @@ -27972,9 +28713,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2801, + "line": 2790, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2790" } ], "type": { @@ -28004,9 +28745,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2789, + "line": 2778, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2789" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2778" } ], "type": { @@ -28033,9 +28774,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2791, + "line": 2780, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2791" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2780" } ], "type": { @@ -28062,7 +28803,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -28082,9 +28823,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2802, + "line": 2791, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2802" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2791" } ], "type": { @@ -28111,9 +28852,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 251, + "line": 240, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L240" } ], "type": { @@ -28138,9 +28879,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 253, + "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L242" } ], "type": { @@ -28168,9 +28909,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 252, + "line": 241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L241" } ], "type": { @@ -28199,9 +28940,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 251, + "line": 240, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L240" } ] } @@ -28220,9 +28961,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 256, + "line": 245, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L245" } ], "type": { @@ -28247,9 +28988,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 258, + "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L258" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L247" } ], "type": { @@ -28277,9 +29018,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 257, + "line": 246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L246" } ], "type": { @@ -28309,9 +29050,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 259, + "line": 248, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L248" } ], "type": { @@ -28340,9 +29081,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 256, + "line": 245, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L245" } ] } @@ -28361,9 +29102,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 273, + "line": 262, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L262" } ], "type": { @@ -28388,9 +29129,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 275, + "line": 264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L264" } ], "type": { @@ -28409,9 +29150,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 274, + "line": 263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L263" } ], "type": { @@ -28431,9 +29172,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 273, + "line": 262, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L262" } ] } @@ -28452,9 +29193,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 278, + "line": 267, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L267" } ], "type": { @@ -28479,9 +29220,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 280, + "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L269" } ], "type": { @@ -28500,9 +29241,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 279, + "line": 268, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L268" } ], "type": { @@ -28523,9 +29264,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 281, + "line": 270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L270" } ], "type": { @@ -28545,9 +29286,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 278, + "line": 267, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L267" } ] } @@ -28566,9 +29307,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1833, + "line": 1822, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1822" } ], "type": { @@ -28603,9 +29344,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2299, + "line": 2288, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2299" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2288" } ], "type": { @@ -28636,9 +29377,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2311, + "line": 2300, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2300" } ], "type": { @@ -28668,9 +29409,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2317, + "line": 2306, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2317" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2306" } ], "type": { @@ -28712,9 +29453,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2319, + "line": 2308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2308" } ], "type": { @@ -28756,9 +29497,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2331, + "line": 2320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2320" } ], "type": { @@ -28783,9 +29524,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2307, + "line": 2296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2296" } ], "type": { @@ -28810,9 +29551,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2309, + "line": 2298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2309" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2298" } ], "type": { @@ -28839,9 +29580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2327, + "line": 2316, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2316" } ], "type": { @@ -28868,9 +29609,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2323, + "line": 2312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2323" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2312" } ], "type": { @@ -28897,9 +29638,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2321, + "line": 2310, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2321" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2310" } ], "type": { @@ -28932,9 +29673,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2303, + "line": 2292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2303" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2292" } ], "type": { @@ -28961,9 +29702,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2325, + "line": 2314, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2325" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2314" } ], "type": { @@ -28990,9 +29731,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2337, + "line": 2326, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2337" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2326" } ], "type": { @@ -29017,9 +29758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2305, + "line": 2294, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2305" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2294" } ], "type": { @@ -29046,9 +29787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2315, + "line": 2304, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2304" } ], "type": { @@ -29073,9 +29814,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2301, + "line": 2290, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2290" } ], "type": { @@ -29104,9 +29845,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2313, + "line": 2302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2313" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2302" } ], "type": { @@ -29136,9 +29877,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2329, + "line": 2318, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2329" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2318" } ], "type": { @@ -29165,9 +29906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2333, + "line": 2322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2322" } ], "type": { @@ -29194,9 +29935,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2335, + "line": 2324, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2335" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2324" } ], "type": { @@ -29217,9 +29958,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2299, + "line": 2288, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2299" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2288" } ] } @@ -29242,9 +29983,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2084, + "line": 2073, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2084" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2073" } ], "type": { @@ -29273,9 +30014,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2086, + "line": 2075, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2086" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2075" } ], "type": { @@ -29302,9 +30043,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2088, + "line": 2077, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2088" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2077" } ], "type": { @@ -29331,9 +30072,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2092, + "line": 2081, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2092" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2081" } ], "type": { @@ -29363,9 +30104,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2090, + "line": 2079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2079" } ], "type": { @@ -29395,9 +30136,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2094, + "line": 2083, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2094" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2083" } ], "type": { @@ -29429,9 +30170,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2096, + "line": 2085, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2096" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2085" } ], "type": { @@ -29458,9 +30199,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2098, + "line": 2087, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2098" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2087" } ], "type": { @@ -29480,9 +30221,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2084, + "line": 2073, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2084" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2073" } ] } @@ -29505,9 +30246,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2249, + "line": 2238, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2249" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2238" } ], "type": { @@ -29538,9 +30279,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2261, + "line": 2250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2250" } ], "type": { @@ -29570,9 +30311,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2267, + "line": 2256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2256" } ], "type": { @@ -29614,9 +30355,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2269, + "line": 2258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2258" } ], "type": { @@ -29658,9 +30399,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2281, + "line": 2270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2270" } ], "type": { @@ -29685,9 +30426,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2259, + "line": 2248, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2248" } ], "type": { @@ -29712,9 +30453,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2291, + "line": 2280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2291" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2280" } ], "type": { @@ -29741,9 +30482,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2289, + "line": 2278, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2278" } ], "type": { @@ -29781,9 +30522,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2277, + "line": 2266, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2266" } ], "type": { @@ -29810,9 +30551,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2273, + "line": 2262, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2262" } ], "type": { @@ -29839,9 +30580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2271, + "line": 2260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2260" } ], "type": { @@ -29866,9 +30607,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2251, + "line": 2240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2240" } ], "type": { @@ -29901,9 +30642,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2255, + "line": 2244, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2255" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2244" } ], "type": { @@ -29930,9 +30671,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2275, + "line": 2264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2264" } ], "type": { @@ -29959,9 +30700,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2287, + "line": 2276, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2287" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2276" } ], "type": { @@ -29986,9 +30727,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2257, + "line": 2246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2257" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2246" } ], "type": { @@ -30015,9 +30756,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2265, + "line": 2254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2265" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2254" } ], "type": { @@ -30042,9 +30783,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2253, + "line": 2242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2253" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2242" } ], "type": { @@ -30073,9 +30814,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2263, + "line": 2252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2252" } ], "type": { @@ -30105,9 +30846,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2279, + "line": 2268, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2268" } ], "type": { @@ -30134,9 +30875,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2283, + "line": 2272, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2283" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2272" } ], "type": { @@ -30161,9 +30902,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2293, + "line": 2282, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2282" } ], "type": { @@ -30190,9 +30931,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2285, + "line": 2274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2285" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2274" } ], "type": { @@ -30213,9 +30954,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2249, + "line": 2238, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2249" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2238" } ] } @@ -30238,9 +30979,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2398, + "line": 2387, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2398" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2387" } ], "type": { @@ -30264,9 +31005,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2400, + "line": 2389, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2389" } ], "type": { @@ -30287,9 +31028,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2400, + "line": 2389, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2389" } ], "type": { @@ -30312,9 +31053,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2400, + "line": 2389, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2389" } ] } @@ -30329,9 +31070,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2401, + "line": 2390, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2390" } ], "type": { @@ -30349,9 +31090,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2399, + "line": 2388, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2399" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2388" } ] } @@ -30374,9 +31115,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2404, + "line": 2393, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2404" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2393" } ], "type": { @@ -30397,9 +31138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2404, + "line": 2393, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2404" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2393" } ], "type": { @@ -30416,9 +31157,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2404, + "line": 2393, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2404" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2393" } ] } @@ -30433,14 +31174,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2405, + "line": 2394, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2394" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -30455,9 +31196,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2403, + "line": 2392, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2403" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2392" } ] } @@ -30482,9 +31223,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2393, + "line": 2382, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2393" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2382" } ], "type": { @@ -30519,9 +31260,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2216, + "line": 2205, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2216" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2205" } ], "type": { @@ -30547,9 +31288,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 862, + "line": 851, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L851" } ], "type": { @@ -30597,9 +31338,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 869, + "line": 858, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L869" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L858" } ] } @@ -30618,9 +31359,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 773, + "line": 762, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L773" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L762" } ], "type": { @@ -30642,9 +31383,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 775, + "line": 764, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L764" } ], "type": { @@ -30668,9 +31409,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 777, + "line": 766, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L777" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L766" } ], "type": { @@ -30689,9 +31430,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 785, + "line": 774, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L774" } ], "type": { @@ -30722,9 +31463,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 790, + "line": 779, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L790" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L779" } ], "type": { @@ -30743,9 +31484,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 792, + "line": 781, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L792" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L781" } ], "type": { @@ -30820,9 +31561,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 787, + "line": 776, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L787" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L776" } ], "type": { @@ -30840,9 +31581,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 785, + "line": 774, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L774" } ] } @@ -30867,9 +31608,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 783, + "line": 772, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L772" } ], "type": { @@ -30904,9 +31645,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 780, + "line": 769, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L780" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L769" } ], "type": { @@ -30926,9 +31667,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 776, + "line": 765, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L776" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L765" } ] } @@ -30951,9 +31692,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 798, + "line": 787, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L787" } ], "type": { @@ -31002,9 +31743,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 801, + "line": 790, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L790" } ], "type": { @@ -31023,9 +31764,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 806, + "line": 795, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L795" } ], "type": { @@ -31056,9 +31797,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 808, + "line": 797, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L808" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L797" } ], "type": { @@ -31076,9 +31817,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 806, + "line": 795, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L795" } ] } @@ -31101,9 +31842,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 804, + "line": 793, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L804" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L793" } ], "type": { @@ -31126,9 +31867,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 797, + "line": 786, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L786" } ] } @@ -31145,9 +31886,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 193, + "line": 182, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L182" } ], "type": { @@ -31218,9 +31959,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 203, + "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L192" } ], "type": { @@ -31238,9 +31979,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 193, + "line": 182, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L182" } ] } @@ -31311,9 +32052,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 423, + "line": 412, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L412" } ], "typeParameters": [ @@ -31391,9 +32132,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 443, + "line": 432, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L432" } ], "type": { @@ -31434,9 +32175,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 436, + "line": 425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L425" } ], "type": { @@ -31466,9 +32207,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 431, + "line": 420, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L420" } ], "type": { @@ -31493,9 +32234,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 428, + "line": 417, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L417" } ], "type": { @@ -31514,9 +32255,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 445, + "line": 434, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L434" } ], "type": { @@ -31569,9 +32310,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 441, + "line": 430, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L430" } ], "type": { @@ -31591,9 +32332,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 444, + "line": 433, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L433" } ], "type": { @@ -31611,9 +32352,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 426, + "line": 415, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L415" } ] } @@ -31652,9 +32393,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 407, + "line": 396, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L396" } ], "type": { @@ -31687,9 +32428,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 948, + "line": 937, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L948" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L937" } ], "type": { @@ -31718,9 +32459,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 951, + "line": 940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L951" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L940" } ], "type": { @@ -31745,9 +32486,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 955, + "line": 944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L955" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L944" } ], "type": { @@ -31766,9 +32507,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 956, + "line": 945, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L956" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L945" } ], "type": { @@ -31802,9 +32543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 949, + "line": 938, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L938" } ], "type": { @@ -31831,9 +32572,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 948, + "line": 937, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L948" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L937" } ] } @@ -31848,9 +32589,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 934, + "line": 923, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L923" } ], "type": { @@ -31879,9 +32620,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 937, + "line": 926, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L937" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L926" } ], "type": { @@ -31900,9 +32641,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 938, + "line": 927, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L938" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L927" } ], "type": { @@ -31945,9 +32686,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 935, + "line": 924, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L935" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L924" } ], "type": { @@ -31974,9 +32715,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 934, + "line": 923, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L923" } ] } @@ -31991,9 +32732,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 970, + "line": 959, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L959" } ], "type": { @@ -32043,9 +32784,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 982, + "line": 971, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L971" } ], "type": { @@ -32074,9 +32815,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 987, + "line": 976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L987" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L976" } ], "type": { @@ -32101,9 +32842,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 992, + "line": 981, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L992" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L981" } ], "type": { @@ -32128,9 +32869,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 996, + "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L996" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L985" } ], "type": { @@ -32155,9 +32896,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 998, + "line": 987, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L998" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L987" } ], "type": { @@ -32182,9 +32923,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1000, + "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1000" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L989" } ], "type": { @@ -32204,9 +32945,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 982, + "line": 971, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L971" } ] } @@ -32221,9 +32962,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 976, + "line": 965, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L965" } ], "type": { @@ -32248,9 +32989,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 977, + "line": 966, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L966" } ], "type": { @@ -32269,9 +33010,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 978, + "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L978" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L967" } ], "type": { @@ -32291,9 +33032,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 976, + "line": 965, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L965" } ] } @@ -32312,9 +33053,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1003, + "line": 992, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L992" } ], "type": { @@ -32356,9 +33097,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 941, + "line": 930, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L930" } ], "type": { @@ -32387,9 +33128,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 944, + "line": 933, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L944" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L933" } ], "type": { @@ -32408,9 +33149,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 945, + "line": 934, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L945" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L934" } ], "type": { @@ -32444,9 +33185,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 942, + "line": 931, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L931" } ], "type": { @@ -32464,9 +33205,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 941, + "line": 930, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L930" } ] } @@ -32481,9 +33222,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 927, + "line": 916, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L916" } ], "type": { @@ -32504,9 +33245,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 929, + "line": 918, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L918" } ], "type": { @@ -32525,9 +33266,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 931, + "line": 920, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L931" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L920" } ], "type": { @@ -32570,9 +33311,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 930, + "line": 919, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L930" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L919" } ], "type": { @@ -32589,9 +33330,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 928, + "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -32609,9 +33350,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 927, + "line": 916, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L916" } ] } @@ -32628,7 +33369,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L80" } ], "type": { @@ -32653,7 +33394,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L109" } ], "type": { @@ -32674,7 +33415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L127" } ], "type": { @@ -32697,7 +33438,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L127" } ], "signatures": [ @@ -32779,7 +33520,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "type": { @@ -32802,7 +33543,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "signatures": [ @@ -32848,7 +33589,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "indexSignatures": [ @@ -32863,7 +33604,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "parameters": [ @@ -32920,9 +33661,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 190, + "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L179" } ], "type": { @@ -32945,7 +33686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L123" } ], "type": { @@ -32971,7 +33712,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L125" } ], "type": { @@ -33001,9 +33742,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 141, + "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L146" } ], "type": { @@ -33024,7 +33765,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L84" } ], "type": { @@ -33040,7 +33781,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L84" } ], "indexSignatures": [ @@ -33055,7 +33796,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L84" } ], "parameters": [ @@ -33092,33 +33833,43 @@ "summary": [ { "kind": "text", - "text": "Provide your own locking mechanism based on the environment. By default,\n" + "text": "Provide your own locking mechanism based on the environment. By default\nthe client coordinates refreshes itself (single-flight via\n" }, { "kind": "code", - "text": "`navigatorLock`" + "text": "`refreshingDeferred`" }, { "kind": "text", - "text": " (Web Locks API) is used in browser environments when\n" + "text": " + commit guard) and relies on the GoTrue server to\nresolve cross-tab refresh races. Passing a custom lock opts into a\nlegacy path that wraps every auth operation in your supplied lock — this\npath is preserved for backwards compatibility (typically React Native\n" }, { "kind": "code", - "text": "`persistSession`" + "text": "`processLock`" }, { "kind": "text", - "text": " is true. Falls back to an in-process lock for non-browser\nenvironments (e.g. React Native)." + "text": " or Node multi-process setups)." } ], - "modifierTags": ["@experimental"] + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Custom locks still work in v2.x for backwards compatibility.\nThe legacy lock path will be removed in v3 — drop this option from your\nconstructor options before upgrading." + } + ] + } + ] }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 136, + "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L141" } ], "type": { @@ -33140,23 +33891,23 @@ "summary": [ { "kind": "text", - "text": "The maximum time in milliseconds to wait for acquiring a cross-tab synchronization lock.\n\nWhen multiple browser tabs or windows use the auth client simultaneously, they coordinate\nvia the Web Locks API to prevent race conditions during session refresh and other operations.\nThis timeout controls how long to wait before attempting lock recovery.\n\n- **Positive value**: Wait up to this many milliseconds. If the lock is still held, attempt\n automatic recovery by stealing it (the previous holder is evicted, its callback continues\n to completion without exclusive access). This recovers from orphaned locks caused by\n React Strict Mode double-mount, storage API hangs, or aborted operations.\n- **Zero (0)**: Fail immediately if the lock is unavailable; throws " + "text": "The maximum time in milliseconds to wait for acquiring the custom lock\nsupplied via the " }, { "kind": "code", - "text": "`LockAcquireTimeoutError`" + "text": "`lock`" }, { "kind": "text", - "text": "\n (check " + "text": " option. Only consulted when a custom " }, { "kind": "code", - "text": "`error.isAcquireTimeout === true`" + "text": "`lock`" }, { "kind": "text", - "text": ").\n- **Negative value**: Wait indefinitely — can cause permanent deadlocks if the lock is orphaned." + "text": " is\npassed — the default lockless path doesn't use this timeout." } ], "blockTags": [ @@ -33170,11 +33921,19 @@ ] }, { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "Only used by the legacy lock path. Will be removed in v3\nalong with the " + }, { "kind": "code", - "text": "```ts\nconst client = createClient(url, key, {\n auth: {\n lockAcquireTimeout: 5000, // 5 seconds, then steal orphaned lock\n },\n})\n```" + "text": "`lock`" + }, + { + "kind": "text", + "text": " option." } ] } @@ -33183,9 +33942,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 173, + "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L162" } ], "type": { @@ -33206,7 +33965,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L111" } ], "type": { @@ -33244,9 +34003,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 182, + "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L171" } ], "type": { @@ -33267,7 +34026,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L113" } ], "type": { @@ -33290,7 +34049,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L86" } ], "type": { @@ -33317,9 +34076,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 146, + "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L151" } ], "type": { @@ -33340,7 +34099,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L82" } ], "type": { @@ -33410,7 +34169,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L121" } ], "type": { @@ -33434,7 +34193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L80" } ] } @@ -33449,9 +34208,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1831, + "line": 1820, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1820" } ], "type": { @@ -33472,9 +34231,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1831, + "line": 1820, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1820" } ], "type": { @@ -33482,7 +34241,7 @@ "types": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -33503,9 +34262,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1831, + "line": 1820, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1820" } ] } @@ -33520,9 +34279,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1950, + "line": 1939, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1950" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1939" } ], "type": { @@ -33543,9 +34302,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1951, + "line": 1940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1951" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1940" } ], "type": { @@ -33581,9 +34340,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1951, + "line": 1940, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1951" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1940" } ] } @@ -33602,9 +34361,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1952, + "line": 1941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1952" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1941" } ], "type": { @@ -33621,9 +34380,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1953, + "line": 1942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1953" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1942" } ], "type": { @@ -33641,9 +34400,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1950, + "line": 1939, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1950" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1939" } ] } @@ -33666,9 +34425,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2385, + "line": 2374, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2374" } ], "type": { @@ -33699,9 +34458,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2387, + "line": 2376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2387" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2376" } ], "type": { @@ -33721,9 +34480,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2385, + "line": 2374, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2374" } ] } @@ -33757,7 +34516,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L78" } ], "type": { @@ -33773,7 +34532,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -33866,7 +34625,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -33932,9 +34691,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1117, + "line": 1106, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1106" } ], "type": { @@ -33956,9 +34715,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1105, + "line": 1094, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1105" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1094" } ], "type": { @@ -33994,9 +34753,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1086, + "line": 1075, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1075" } ], "type": { @@ -34032,9 +34791,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1079, + "line": 1068, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1079" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1068" } ], "type": { @@ -34077,9 +34836,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1103, + "line": 1092, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1103" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1092" } ], "type": { @@ -34115,9 +34874,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1011, + "line": 1000, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1011" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1000" } ], "type": { @@ -34153,9 +34912,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1881, + "line": 1870, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1881" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1870" } ], "type": { @@ -34197,9 +34956,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1875, + "line": 1864, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1875" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1864" } ], "type": { @@ -34262,9 +35021,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1892, + "line": 1881, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1892" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1881" } ], "type": { @@ -34306,9 +35065,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1077, + "line": 1066, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1077" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1066" } ], "type": { @@ -34341,9 +35100,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1013, + "line": 1002, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1013" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1002" } ], "type": { @@ -34372,9 +35131,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1015, + "line": 1004, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1015" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1004" } ], "type": { @@ -34392,9 +35151,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1013, + "line": 1002, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1013" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1002" } ] } @@ -34409,9 +35168,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1069, + "line": 1058, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1069" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1058" } ], "type": { @@ -34447,9 +35206,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1034, + "line": 1023, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1034" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1023" } ], "type": { @@ -34485,9 +35244,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1030, + "line": 1019, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1030" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1019" } ], "type": { @@ -34531,9 +35290,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1056, + "line": 1045, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1045" } ], "typeParameters": [ @@ -34597,9 +35356,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1057, + "line": 1046, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1046" } ], "type": { @@ -34645,9 +35404,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1056, + "line": 1045, "character": 98, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1045" } ] } @@ -34683,9 +35442,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1066, + "line": 1055, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1066" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1055" } ], "typeParameters": [ @@ -34770,9 +35529,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 861, + "line": 850, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L850" } ], "type": { @@ -34804,9 +35563,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 861, + "line": 850, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L850" } ] } @@ -34833,9 +35592,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2481, + "line": 2470, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2470" } ], "type": { @@ -34864,9 +35623,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2483, + "line": 2472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2483" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2472" } ], "type": { @@ -34891,9 +35650,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2489, + "line": 2478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2478" } ], "type": { @@ -34918,9 +35677,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2485, + "line": 2474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2485" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2474" } ], "type": { @@ -34945,9 +35704,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2487, + "line": 2476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2487" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2476" } ], "type": { @@ -34965,9 +35724,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2481, + "line": 2470, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2470" } ] } @@ -35006,9 +35765,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2503, + "line": 2492, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2492" } ], "type": { @@ -35037,9 +35796,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2505, + "line": 2494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2494" } ], "type": { @@ -35064,9 +35823,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2509, + "line": 2498, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2509" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2498" } ], "type": { @@ -35093,9 +35852,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2507, + "line": 2496, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2507" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2496" } ], "type": { @@ -35120,9 +35879,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2518, + "line": 2507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2507" } ], "type": { @@ -35147,9 +35906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2511, + "line": 2500, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2500" } ], "type": { @@ -35178,9 +35937,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2515, + "line": 2504, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2504" } ], "type": { @@ -35205,9 +35964,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2513, + "line": 2502, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2513" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2502" } ], "type": { @@ -35225,9 +35984,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2511, + "line": 2500, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2500" } ] } @@ -35243,9 +36002,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2503, + "line": 2492, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2492" } ] } @@ -35268,9 +36027,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2049, + "line": 2038, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2049" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2038" } ], "type": { @@ -35299,9 +36058,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2051, + "line": 2040, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2051" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2040" } ], "type": { @@ -35326,9 +36085,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2053, + "line": 2042, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2053" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2042" } ], "type": { @@ -35355,9 +36114,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2055, + "line": 2044, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2055" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2044" } ], "type": { @@ -35382,9 +36141,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2057, + "line": 2046, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2046" } ], "type": { @@ -35413,9 +36172,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2063, + "line": 2052, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2063" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2052" } ], "type": { @@ -35440,9 +36199,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2075, + "line": 2064, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2075" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2064" } ], "type": { @@ -35467,9 +36226,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2069, + "line": 2058, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2069" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2058" } ], "type": { @@ -35501,9 +36260,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2065, + "line": 2054, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2065" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2054" } ], "type": { @@ -35528,9 +36287,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2067, + "line": 2056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2067" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2056" } ], "type": { @@ -35558,9 +36317,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2061, + "line": 2050, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2061" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2050" } ], "type": { @@ -35587,9 +36346,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2071, + "line": 2060, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2060" } ], "type": { @@ -35621,9 +36380,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2073, + "line": 2062, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2073" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2062" } ], "type": { @@ -35648,9 +36407,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2059, + "line": 2048, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2059" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2048" } ], "type": { @@ -35677,9 +36436,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2077, + "line": 2066, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2077" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2066" } ], "type": { @@ -35699,9 +36458,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2049, + "line": 2038, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2049" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2038" } ] } @@ -35724,9 +36483,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2016, + "line": 2005, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2016" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2005" } ], "type": { @@ -35758,9 +36517,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2016, + "line": 2005, "character": 86, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2016" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2005" } ] } @@ -35787,9 +36546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2131, + "line": 2120, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2120" } ], "type": { @@ -35813,9 +36572,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -35839,9 +36598,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -35858,9 +36617,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -35883,9 +36642,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ] } @@ -35908,9 +36667,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2134, + "line": 2123, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2123" } ], "type": { @@ -35928,9 +36687,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2132, + "line": 2121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2121" } ] } @@ -35953,9 +36712,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2137, + "line": 2126, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2126" } ], "type": { @@ -35976,9 +36735,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2137, + "line": 2126, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2126" } ], "type": { @@ -35995,9 +36754,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2137, + "line": 2126, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2126" } ] } @@ -36012,14 +36771,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2138, + "line": 2127, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2127" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -36034,9 +36793,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2136, + "line": 2125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2125" } ] } @@ -36061,9 +36820,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2034, + "line": 2023, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2034" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2023" } ], "type": { @@ -36097,9 +36856,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2125, + "line": 2114, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2114" } ], "type": { @@ -36134,9 +36893,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2022, + "line": 2011, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2022" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2011" } ], "type": { @@ -36161,9 +36920,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2040, + "line": 2029, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2040" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2029" } ], "type": { @@ -36201,9 +36960,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2028, + "line": 2017, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2028" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2017" } ], "type": { @@ -36237,9 +36996,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2575, + "line": 2564, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2575" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2564" } ], "type": { @@ -36268,9 +37027,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2577, + "line": 2566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2577" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2566" } ], "type": { @@ -36297,9 +37056,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2581, + "line": 2570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2570" } ], "type": { @@ -36324,9 +37083,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2579, + "line": 2568, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2568" } ], "type": { @@ -36347,9 +37106,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2575, + "line": 2564, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2575" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2564" } ] } @@ -36380,9 +37139,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2534, + "line": 2523, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2523" } ], "type": { @@ -36411,9 +37170,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2536, + "line": 2525, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2525" } ], "type": { @@ -36431,9 +37190,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2534, + "line": 2523, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2523" } ] } @@ -36448,9 +37207,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 284, + "line": 273, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L284" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L273" } ], "type": { @@ -36474,9 +37233,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 286, + "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L275" } ], "type": { @@ -36497,9 +37256,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 287, + "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L276" } ], "type": { @@ -36518,9 +37277,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 288, + "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L277" } ], "type": { @@ -36538,9 +37297,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 286, + "line": 275, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L275" } ] } @@ -36555,9 +37314,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 290, + "line": 279, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L279" } ], "type": { @@ -36575,9 +37334,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 285, + "line": 274, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L274" } ] } @@ -36600,9 +37359,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 293, + "line": 282, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L282" } ], "type": { @@ -36623,9 +37382,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 294, + "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L283" } ], "type": { @@ -36644,9 +37403,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 295, + "line": 284, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L284" } ], "type": { @@ -36664,9 +37423,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 293, + "line": 282, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L282" } ] } @@ -36681,14 +37440,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 297, + "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L286" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -36703,9 +37462,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 292, + "line": 281, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L281" } ] } @@ -36730,9 +37489,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2223, + "line": 2212, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2223" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2212" } ], "type": { @@ -36761,9 +37520,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2227, + "line": 2216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2216" } ], "type": { @@ -36788,9 +37547,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2225, + "line": 2214, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2214" } ], "type": { @@ -36815,9 +37574,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2231, + "line": 2220, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2231" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2220" } ], "type": { @@ -36844,9 +37603,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2235, + "line": 2224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2224" } ], "type": { @@ -36873,9 +37632,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2243, + "line": 2232, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2232" } ], "type": { @@ -36905,9 +37664,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2239, + "line": 2228, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2228" } ], "type": { @@ -36937,9 +37696,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2237, + "line": 2226, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2226" } ], "type": { @@ -36969,9 +37728,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2241, + "line": 2230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2230" } ], "type": { @@ -36999,9 +37758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2229, + "line": 2218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2218" } ], "type": { @@ -37028,9 +37787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2233, + "line": 2222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2222" } ], "type": { @@ -37048,9 +37807,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2223, + "line": 2212, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2223" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2212" } ] } @@ -37065,9 +37824,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1842, + "line": 1831, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1831" } ], "type": { @@ -37098,9 +37857,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1844, + "line": 1833, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1844" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1833" } ], "type": { @@ -37127,9 +37886,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1846, + "line": 1835, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1835" } ], "type": { @@ -37147,9 +37906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1842, + "line": 1831, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1831" } ] } @@ -37164,9 +37923,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1835, + "line": 1824, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1835" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1824" } ], "type": { @@ -37187,9 +37946,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1838, + "line": 1827, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1838" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1827" } ], "type": { @@ -37206,9 +37965,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1837, + "line": 1826, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1837" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1826" } ], "type": { @@ -37234,9 +37993,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1839, + "line": 1828, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1839" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1828" } ], "type": { @@ -37254,9 +38013,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1835, + "line": 1824, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1835" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1824" } ], "indexSignatures": [ @@ -37269,9 +38028,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1836, + "line": 1825, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1836" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1825" } ], "parameters": [ @@ -37313,9 +38072,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2720, + "line": 2709, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2709" } ], "type": { @@ -37336,9 +38095,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2721, + "line": 2710, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2721" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2710" } ], "type": { @@ -37355,9 +38114,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2723, + "line": 2712, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2723" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2712" } ], "type": { @@ -37374,9 +38133,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2722, + "line": 2711, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2722" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2711" } ], "type": { @@ -37399,9 +38158,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2720, + "line": 2709, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2709" } ] } @@ -37424,9 +38183,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2727, + "line": 2716, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2716" } ], "type": { @@ -37447,9 +38206,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2728, + "line": 2717, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2728" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2717" } ], "type": { @@ -37466,9 +38225,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2729, + "line": 2718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2729" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2718" } ], "type": { @@ -37491,9 +38250,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2727, + "line": 2716, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2716" } ] } @@ -37508,9 +38267,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2782, + "line": 2771, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2771" } ], "type": { @@ -37539,9 +38298,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2784, + "line": 2773, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2784" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2773" } ], "type": { @@ -37559,9 +38318,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2782, + "line": 2771, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2771" } ] } @@ -37584,9 +38343,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2733, + "line": 2722, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2722" } ], "type": { @@ -37607,9 +38366,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2736, + "line": 2725, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2736" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2725" } ], "type": { @@ -37628,9 +38387,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2735, + "line": 2724, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2735" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2724" } ], "type": { @@ -37647,9 +38406,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2734, + "line": 2723, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2734" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2723" } ], "type": { @@ -37668,9 +38427,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2737, + "line": 2726, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2737" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2726" } ], "type": { @@ -37688,9 +38447,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2733, + "line": 2722, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2722" } ] } @@ -37713,9 +38472,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2713, + "line": 2702, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2702" } ], "type": { @@ -37736,9 +38495,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2716, + "line": 2705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2716" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2705" } ], "type": { @@ -37757,9 +38516,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2715, + "line": 2704, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2715" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2704" } ], "type": { @@ -37776,9 +38535,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2714, + "line": 2703, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2703" } ], "type": { @@ -37796,9 +38555,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2713, + "line": 2702, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2702" } ] } @@ -37821,9 +38580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2700, + "line": 2689, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2689" } ], "type": { @@ -37844,9 +38603,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2701, + "line": 2690, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2701" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2690" } ], "type": { @@ -37863,9 +38622,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2703, + "line": 2692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2703" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2692" } ], "type": { @@ -37882,9 +38641,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2702, + "line": 2691, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2702" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2691" } ], "type": { @@ -37907,9 +38666,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2700, + "line": 2689, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2689" } ] } @@ -37932,9 +38691,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2707, + "line": 2696, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2696" } ], "type": { @@ -37955,9 +38714,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2708, + "line": 2697, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2697" } ], "type": { @@ -37974,9 +38733,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2709, + "line": 2698, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2698" } ], "type": { @@ -37999,9 +38758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2707, + "line": 2696, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2696" } ] } @@ -38016,9 +38775,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2775, + "line": 2764, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2764" } ], "type": { @@ -38047,9 +38806,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2779, + "line": 2768, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2768" } ], "type": { @@ -38074,9 +38833,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2777, + "line": 2766, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2777" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2766" } ], "type": { @@ -38094,9 +38853,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2775, + "line": 2764, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2764" } ] } @@ -38119,9 +38878,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ], "typeParameters": [ @@ -38230,7 +38989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L24" } ], "type": { @@ -38389,9 +39148,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2749, + "line": 2738, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2738" } ], "type": { @@ -38414,9 +39173,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2750, + "line": 2739, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2739" } ], "type": { @@ -38439,9 +39198,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2751, + "line": 2740, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2751" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2740" } ], "type": { @@ -38464,9 +39223,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2750, + "line": 2739, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2739" } ] } @@ -38482,9 +39241,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2749, + "line": 2738, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2738" } ] } @@ -38507,9 +39266,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 230, + "line": 219, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L219" } ], "typeParameters": [ @@ -38537,7 +39296,7 @@ }, "default": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -38564,9 +39323,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -38586,9 +39345,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -38606,9 +39365,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 231, + "line": 220, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L220" } ] } @@ -38631,9 +39390,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -38650,9 +39409,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { @@ -38668,13 +39427,13 @@ }, "extendsType": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, "trueType": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -38697,9 +39456,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 235, + "line": 224, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L224" } ] } @@ -38729,9 +39488,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 244, + "line": 233, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L233" } ], "typeParameters": [ @@ -38764,9 +39523,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 245, + "line": 234, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L234" } ], "type": { @@ -38786,9 +39545,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 245, + "line": 234, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L234" } ], "type": { @@ -38806,9 +39565,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 245, + "line": 234, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L234" } ] } @@ -38831,9 +39590,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 247, + "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -38883,14 +39642,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 248, + "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -38905,9 +39664,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 246, + "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L235" } ] } @@ -38924,9 +39683,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1956, + "line": 1945, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1956" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1945" } ], "type": { @@ -38947,9 +39706,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1963, + "line": 1952, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1963" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1952" } ], "type": { @@ -38968,9 +39727,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1959, + "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1959" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -38999,9 +39758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1960, + "line": 1949, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1960" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1949" } ], "type": { @@ -39018,9 +39777,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1961, + "line": 1950, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1961" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1950" } ], "type": { @@ -39037,9 +39796,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1957, + "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1957" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -39056,9 +39815,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1962, + "line": 1951, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1962" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1951" } ], "type": { @@ -39075,9 +39834,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1964, + "line": 1953, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1964" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1953" } ], "type": { @@ -39094,9 +39853,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1958, + "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1958" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -39114,9 +39873,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1956, + "line": 1945, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1956" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1945" } ] } @@ -39138,9 +39897,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 871, + "line": 860, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L871" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L860" } ], "type": { @@ -39164,9 +39923,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 874, + "line": 863, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L863" } ], "type": { @@ -39185,9 +39944,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 875, + "line": 864, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L875" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L864" } ], "type": { @@ -39218,9 +39977,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 879, + "line": 868, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L879" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L868" } ], "type": { @@ -39247,9 +40006,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 877, + "line": 866, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L877" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L866" } ], "type": { @@ -39267,9 +40026,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 875, + "line": 864, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L875" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L864" } ] } @@ -39284,9 +40043,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 873, + "line": 862, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L873" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L862" } ], "type": { @@ -39330,9 +40089,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 872, + "line": 861, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L861" } ] } @@ -39357,9 +40116,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 885, + "line": 874, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L885" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L874" } ], "type": { @@ -39390,9 +40149,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 887, + "line": 876, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L876" } ], "type": { @@ -39410,9 +40169,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 885, + "line": 874, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L885" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L874" } ] } @@ -39427,9 +40186,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 884, + "line": 873, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L873" } ], "type": { @@ -39446,9 +40205,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 883, + "line": 872, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L883" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L872" } ], "type": { @@ -39492,9 +40251,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 882, + "line": 871, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L882" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L871" } ] } @@ -39511,9 +40270,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 626, + "line": 615, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L615" } ], "type": { @@ -39536,9 +40295,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 627, + "line": 616, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L616" } ], "type": { @@ -39569,9 +40328,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 635, + "line": 624, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L624" } ], "type": { @@ -39614,9 +40373,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 633, + "line": 622, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L622" } ], "type": { @@ -39634,9 +40393,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 627, + "line": 616, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L616" } ] } @@ -39652,9 +40411,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 626, + "line": 615, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L615" } ] } @@ -39669,9 +40428,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 712, + "line": 701, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L701" } ], "type": { @@ -39710,9 +40469,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 718, + "line": 707, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L718" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L707" } ], "type": { @@ -39747,9 +40506,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 720, + "line": 709, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L720" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L709" } ], "type": { @@ -39768,9 +40527,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 721, + "line": 710, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L710" } ], "type": { @@ -39801,9 +40560,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 723, + "line": 712, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L723" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L712" } ], "type": { @@ -39821,9 +40580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 721, + "line": 710, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L710" } ] } @@ -39910,9 +40669,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 714, + "line": 703, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L703" } ], "type": { @@ -39969,9 +40728,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 714, + "line": 703, "character": 97, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L703" } ] } @@ -40030,9 +40789,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 716, + "line": 705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L705" } ], "type": { @@ -40050,9 +40809,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 712, + "line": 701, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L701" } ] } @@ -40067,9 +40826,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 697, + "line": 686, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L686" } ], "type": { @@ -40092,9 +40851,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 700, + "line": 689, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L689" } ], "type": { @@ -40125,9 +40884,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 706, + "line": 695, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L695" } ], "type": { @@ -40141,9 +40900,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 706, + "line": 695, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L695" } ], "indexSignatures": [ @@ -40156,9 +40915,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 706, + "line": 695, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L695" } ], "parameters": [ @@ -40202,9 +40961,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 702, + "line": 691, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L702" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L691" } ], "type": { @@ -40231,9 +40990,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 704, + "line": 693, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L704" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L693" } ], "type": { @@ -40260,9 +41019,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 708, + "line": 697, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L697" } ], "type": { @@ -40280,9 +41039,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 700, + "line": 689, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L689" } ] } @@ -40305,9 +41064,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 699, + "line": 688, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L699" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L688" } ], "type": { @@ -40327,9 +41086,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 697, + "line": 686, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L686" } ] } @@ -40344,9 +41103,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2742, + "line": 2731, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2742" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2731" } ], "type": { @@ -40369,9 +41128,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2743, + "line": 2732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2743" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2732" } ], "type": { @@ -40394,9 +41153,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2744, + "line": 2733, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2744" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2733" } ], "type": { @@ -40415,9 +41174,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2745, + "line": 2734, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2745" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2734" } ], "type": { @@ -40440,9 +41199,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2743, + "line": 2732, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2743" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2732" } ] } @@ -40458,9 +41217,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2742, + "line": 2731, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2742" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2731" } ] } @@ -40475,9 +41234,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 652, + "line": 641, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L641" } ], "type": { @@ -40512,9 +41271,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 653, + "line": 642, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L642" } ], "type": { @@ -40537,9 +41296,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 654, + "line": 643, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L643" } ], "type": { @@ -40557,9 +41316,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 653, + "line": 642, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L642" } ] } @@ -40575,9 +41334,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 652, + "line": 641, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L641" } ] } @@ -40594,9 +41353,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 658, + "line": 647, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L647" } ], "type": { @@ -40628,9 +41387,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 661, + "line": 650, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L661" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L650" } ], "type": { @@ -40649,9 +41408,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 662, + "line": 651, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L651" } ], "type": { @@ -40682,9 +41441,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 674, + "line": 663, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L663" } ], "type": { @@ -40727,9 +41486,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 672, + "line": 661, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L672" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L661" } ], "type": { @@ -40756,9 +41515,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 664, + "line": 653, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L653" } ], "type": { @@ -40785,9 +41544,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 666, + "line": 655, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L655" } ], "type": { @@ -40805,9 +41564,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 662, + "line": 651, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L651" } ] } @@ -40823,9 +41582,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 659, + "line": 648, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L659" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L648" } ] } @@ -40850,9 +41609,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 680, + "line": 669, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L669" } ], "type": { @@ -40883,9 +41642,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 690, + "line": 679, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L690" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L679" } ], "type": { @@ -40912,9 +41671,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 692, + "line": 681, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L681" } ], "type": { @@ -40966,9 +41725,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 688, + "line": 677, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L688" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L677" } ], "type": { @@ -40995,9 +41754,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 682, + "line": 671, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L671" } ], "type": { @@ -41015,9 +41774,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 680, + "line": 669, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L669" } ] } @@ -41040,9 +41799,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 679, + "line": 668, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L668" } ], "type": { @@ -41060,9 +41819,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 677, + "line": 666, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L666" } ] } @@ -41079,9 +41838,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 891, + "line": 880, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L880" } ], "type": { @@ -41107,9 +41866,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 896, + "line": 885, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L896" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L885" } ], "type": { @@ -41140,9 +41899,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 900, + "line": 889, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L900" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L889" } ], "type": { @@ -41169,9 +41928,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 898, + "line": 887, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L898" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L887" } ], "type": { @@ -41198,9 +41957,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 906, + "line": 895, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L906" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L895" } ], "type": { @@ -41218,9 +41977,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 896, + "line": 885, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L896" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L885" } ] } @@ -41243,9 +42002,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 894, + "line": 883, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L894" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L883" } ], "type": { @@ -41263,9 +42022,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 892, + "line": 881, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L881" } ] } @@ -41296,9 +42055,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 911, + "line": 900, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L911" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L900" } ], "type": { @@ -41317,9 +42076,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 913, + "line": 902, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L913" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L902" } ], "type": { @@ -41350,9 +42109,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 917, + "line": 906, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L906" } ], "type": { @@ -41379,9 +42138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 915, + "line": 904, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L915" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L904" } ], "type": { @@ -41408,9 +42167,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 923, + "line": 912, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L923" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -41428,9 +42187,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 913, + "line": 902, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L913" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L902" } ] } @@ -41446,9 +42205,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 909, + "line": 898, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L909" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L898" } ] } @@ -41465,9 +42224,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1849, + "line": 1838, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1838" } ], "type": { @@ -41498,9 +42257,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1860, + "line": 1849, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1860" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1849" } ], "type": { @@ -41531,9 +42290,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1849, + "line": 1838, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1838" } ] } @@ -41548,9 +42307,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2010, + "line": 1999, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1999" } ], "type": { @@ -41579,9 +42338,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 639, + "line": 628, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L628" } ], "type": { @@ -41616,9 +42375,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 640, + "line": 629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L629" } ], "type": { @@ -41641,9 +42400,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 643, + "line": 632, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L632" } ], "type": { @@ -41662,9 +42421,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 644, + "line": 633, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L644" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L633" } ], "type": { @@ -41692,9 +42451,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 642, + "line": 631, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L642" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L631" } ], "type": { @@ -41713,9 +42472,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 641, + "line": 630, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L641" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L630" } ], "type": { @@ -41733,9 +42492,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 640, + "line": 629, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L629" } ] } @@ -41751,9 +42510,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 639, + "line": 628, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L628" } ] } @@ -41770,9 +42529,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 727, + "line": 716, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L716" } ], "type": { @@ -41795,9 +42554,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 729, + "line": 718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L718" } ], "type": { @@ -41821,9 +42580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 730, + "line": 719, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L719" } ], "type": { @@ -41837,9 +42596,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 730, + "line": 719, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L719" } ], "signatures": [ @@ -41868,9 +42627,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 729, + "line": 718, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L718" } ] } @@ -41893,9 +42652,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 728, + "line": 717, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L717" } ], "type": { @@ -41909,9 +42668,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 728, + "line": 717, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L717" } ], "signatures": [ @@ -41997,9 +42756,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 733, + "line": 722, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L722" } ], "type": { @@ -42013,9 +42772,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 733, + "line": 722, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L722" } ], "signatures": [ @@ -42109,9 +42868,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 727, + "line": 716, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L716" } ] } @@ -42126,9 +42885,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 736, + "line": 725, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L736" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L725" } ], "type": { @@ -42152,9 +42911,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 738, + "line": 727, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L727" } ], "type": { @@ -42173,9 +42932,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 746, + "line": 735, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L735" } ], "type": { @@ -42206,9 +42965,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 751, + "line": 740, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L740" } ], "type": { @@ -42227,9 +42986,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 753, + "line": 742, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L753" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L742" } ], "type": { @@ -42308,9 +43067,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 748, + "line": 737, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L748" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L737" } ], "type": { @@ -42328,9 +43087,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 746, + "line": 735, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L735" } ] } @@ -42355,9 +43114,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 744, + "line": 733, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L744" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L733" } ], "type": { @@ -42392,9 +43151,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 741, + "line": 730, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L730" } ], "type": { @@ -42414,9 +43173,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 737, + "line": 726, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L737" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L726" } ] } @@ -42439,9 +43198,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 759, + "line": 748, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L748" } ], "type": { @@ -42490,9 +43249,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 762, + "line": 751, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L762" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L751" } ], "type": { @@ -42511,9 +43270,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 767, + "line": 756, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L756" } ], "type": { @@ -42544,9 +43303,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 769, + "line": 758, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L758" } ], "type": { @@ -42564,9 +43323,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 767, + "line": 756, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L756" } ] } @@ -42589,9 +43348,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 765, + "line": 754, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L754" } ], "type": { @@ -42614,9 +43373,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 758, + "line": 747, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L747" } ] } @@ -42633,9 +43392,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 300, + "line": 289, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L289" } ], "type": { @@ -42676,9 +43435,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 308, + "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L297" } ], "type": { @@ -42696,9 +43455,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 300, + "line": 289, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L289" } ] } @@ -42717,9 +43476,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2762, + "line": 2751, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2762" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2751" } ], "type": { @@ -42742,9 +43501,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2763, + "line": 2752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2752" } ], "type": { @@ -42767,9 +43526,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2764, + "line": 2753, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2764" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2753" } ], "type": { @@ -42787,9 +43546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2763, + "line": 2752, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2752" } ] } @@ -42805,9 +43564,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2762, + "line": 2751, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2762" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2751" } ] } @@ -42830,9 +43589,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 225, + "line": 214, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L214" } ], "typeParameters": [ @@ -42897,9 +43656,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1818, + "line": 1807, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1818" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1807" } ], "type": { @@ -42989,9 +43748,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1828, + "line": 1817, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1828" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1817" } ], "type": { @@ -43009,9 +43768,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1820, + "line": 1809, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1820" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1809" } ] } @@ -43052,9 +43811,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2345, + "line": 2334, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2345" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2334" } ], "type": { @@ -43085,9 +43844,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2353, + "line": 2342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2353" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2342" } ], "type": { @@ -43117,9 +43876,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2359, + "line": 2348, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2359" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2348" } ], "type": { @@ -43161,9 +43920,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2361, + "line": 2350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2350" } ], "type": { @@ -43205,9 +43964,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2373, + "line": 2362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2373" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2362" } ], "type": { @@ -43234,9 +43993,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2349, + "line": 2338, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2349" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2338" } ], "type": { @@ -43263,9 +44022,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2351, + "line": 2340, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2351" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2340" } ], "type": { @@ -43292,9 +44051,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2369, + "line": 2358, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2369" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2358" } ], "type": { @@ -43321,9 +44080,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2365, + "line": 2354, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2365" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2354" } ], "type": { @@ -43350,9 +44109,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2363, + "line": 2352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2352" } ], "type": { @@ -43379,9 +44138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2367, + "line": 2356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2367" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2356" } ], "type": { @@ -43408,9 +44167,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2379, + "line": 2368, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2379" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2368" } ], "type": { @@ -43437,9 +44196,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2347, + "line": 2336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2347" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2336" } ], "type": { @@ -43466,9 +44225,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2357, + "line": 2346, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2357" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2346" } ], "type": { @@ -43495,9 +44254,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2355, + "line": 2344, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2344" } ], "type": { @@ -43527,9 +44286,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2371, + "line": 2360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2371" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2360" } ], "type": { @@ -43556,9 +44315,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2375, + "line": 2364, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2364" } ], "type": { @@ -43585,9 +44344,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2377, + "line": 2366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2377" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2366" } ], "type": { @@ -43608,9 +44367,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2345, + "line": 2334, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2345" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2334" } ] } @@ -43633,9 +44392,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2106, + "line": 2095, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2095" } ], "type": { @@ -43666,9 +44425,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2108, + "line": 2097, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2097" } ], "type": { @@ -43695,9 +44454,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2110, + "line": 2099, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2110" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2099" } ], "type": { @@ -43724,9 +44483,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2116, + "line": 2105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2105" } ], "type": { @@ -43758,9 +44517,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2112, + "line": 2101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2112" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2101" } ], "type": { @@ -43787,9 +44546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2114, + "line": 2103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2103" } ], "type": { @@ -43819,9 +44578,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2118, + "line": 2107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2107" } ], "type": { @@ -43841,9 +44600,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2106, + "line": 2095, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2095" } ] } @@ -43858,9 +44617,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 311, + "line": 300, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L300" } ], "type": { @@ -43885,9 +44644,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 312, + "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L301" } ], "type": { @@ -43907,9 +44666,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 311, + "line": 300, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L300" } ] } @@ -43928,9 +44687,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 814, + "line": 803, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L814" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L803" } ], "type": { @@ -43966,9 +44725,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2768, + "line": 2757, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2768" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2757" } ], "type": { @@ -43997,9 +44756,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2770, + "line": 2759, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2770" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2759" } ], "type": { @@ -44024,9 +44783,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2772, + "line": 2761, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2761" } ], "type": { @@ -44049,9 +44808,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2768, + "line": 2757, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2768" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2757" } ] } @@ -44066,9 +44825,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2755, + "line": 2744, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2744" } ], "type": { @@ -44097,9 +44856,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2757, + "line": 2746, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2757" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2746" } ], "type": { @@ -44124,9 +44883,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2759, + "line": 2748, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2748" } ], "type": { @@ -44149,9 +44908,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2755, + "line": 2744, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2744" } ] } @@ -44166,9 +44925,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 209, + "line": 198, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L198" } ], "type": { @@ -44189,9 +44948,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 211, + "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L200" } ], "type": { @@ -44208,9 +44967,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 210, + "line": 199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L199" } ], "type": { @@ -44233,9 +44992,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 209, + "line": 198, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L198" } ] } @@ -44250,9 +45009,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 208, + "line": 197, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L197" } ], "type": { @@ -44285,9 +45044,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 812, + "line": 801, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L812" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L801" } ], "type": { @@ -44321,7 +45080,7 @@ "fileName": "packages/core/auth-js/src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/AuthAdminApi.ts#L3" } ], "type": { @@ -44348,14 +45107,14 @@ "fileName": "packages/core/auth-js/src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/AuthClient.ts#L3" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 139, + "target": 136, "name": "default", "package": "@supabase/auth-js" } @@ -44372,14 +45131,41 @@ }, "comment": { "summary": [], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Debug flag for " + }, + { + "kind": "code", + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " / " + }, + { + "kind": "code", + "text": "`processLock`" + }, + { + "kind": "text", + "text": ". The auth\nclient ignores both, so this has no client-side effect." + } + ] + } + ], "modifierTags": ["@experimental"] }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 6, + "line": 17, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L17" } ], "type": { @@ -44404,9 +45190,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 10, + "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L21" } ], "type": { @@ -44425,9 +45211,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 6, + "line": 17, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L17" } ] } @@ -44445,9 +45231,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2009, + "line": 1998, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2009" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1998" } ], "type": { @@ -44484,7 +45270,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L75" } ], "signatures": [ @@ -44499,7 +45285,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L75" } ], "parameters": [ @@ -44521,7 +45307,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1741, + "target": 1744, "name": "AuthApiError", "package": "@supabase/auth-js" } @@ -44540,7 +45326,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L50" } ], "signatures": [ @@ -44555,7 +45341,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L50" } ], "parameters": [ @@ -44577,7 +45363,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -44596,7 +45382,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L210" } ], "signatures": [ @@ -44611,7 +45397,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L210" } ], "parameters": [ @@ -44633,7 +45419,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1846, + "target": 1849, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" } @@ -44652,7 +45438,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L274" } ], "signatures": [ @@ -44667,7 +45453,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L274" } ], "parameters": [ @@ -44689,7 +45475,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1904, + "target": 1907, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" } @@ -44697,6 +45483,62 @@ } ] }, + { + "id": 1720, + "name": "isAuthRefreshDiscardedError", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 328, + "character": 16, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L328" + } + ], + "signatures": [ + { + "id": 1721, + "name": "isAuthRefreshDiscardedError", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 328, + "character": 16, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L328" + } + ], + "parameters": [ + { + "id": 1722, + "name": "error", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "unknown" + } + } + ], + "type": { + "type": "predicate", + "name": "error", + "asserts": false, + "targetType": { + "type": "reference", + "target": 1941, + "name": "AuthRefreshDiscardedError", + "package": "@supabase/auth-js" + } + } + } + ] + }, { "id": 1717, "name": "isAuthRetryableFetchError", @@ -44708,7 +45550,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L296" } ], "signatures": [ @@ -44723,7 +45565,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L296" } ], "parameters": [ @@ -44745,7 +45587,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1920, + "target": 1923, "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" } @@ -44764,7 +45606,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L140" } ], "signatures": [ @@ -44779,7 +45621,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L140" } ], "parameters": [ @@ -44801,7 +45643,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1797, + "target": 1800, "name": "AuthSessionMissingError", "package": "@supabase/auth-js" } @@ -44810,7 +45652,7 @@ ] }, { - "id": 1720, + "id": 1723, "name": "isAuthWeakPasswordError", "variant": "declaration", "kind": 64, @@ -44818,14 +45660,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 341, + "line": 373, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L373" } ], "signatures": [ { - "id": 1721, + "id": 1724, "name": "isAuthWeakPasswordError", "variant": "signature", "kind": 4096, @@ -44833,14 +45675,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 341, + "line": 373, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L373" } ], "parameters": [ { - "id": 1722, + "id": 1725, "name": "error", "variant": "param", "kind": 32768, @@ -44857,7 +45699,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1938, + "target": 1958, "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" } @@ -44874,9 +45716,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 96, + "line": 86, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L86" } ], "signatures": [ @@ -44896,7 +45738,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient", - "target": 139 + "target": 136 }, { "kind": "text", @@ -44937,214 +45779,19 @@ ], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ - { - "kind": "code", - "text": "```ts\nawait navigatorLock('sync-user', 1000, async () => {\n await refreshSession()\n})\n```" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 96, - "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L96" - } - ], - "typeParameters": [ - { - "id": 714, - "name": "R", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], - "parameters": [ - { - "id": 715, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the lock to be acquired." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 716, - "name": "acquireTimeout", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ { "kind": "text", - "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " }, { "kind": "code", - "text": "`isAcquireTimeout`" + "text": "`{ lock: navigatorLock }`" }, { "kind": "text", - "text": " set to true." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 717, - "name": "fn", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The operation to run once the lock is acquired." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 718, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 99, - "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L99" - } - ], - "signatures": [ - { - "id": 719, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 99, - "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L99" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 714, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 714, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 728, - "name": "processLock", - "variant": "declaration", - "kind": 64, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 330, - "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L330" - } - ], - "signatures": [ - { - "id": 729, - "name": "processLock", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " - }, - { - "kind": "inline-tag", - "tag": "@link", - "text": "#navigatorLock" - }, - { - "kind": "text", - "text": " in browser environments." - } - ], - "blockTags": [ - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + "text": "\nto it has no effect. You can safely drop the import from your client setup." } ] } @@ -45153,14 +45800,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 330, + "line": 86, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L86" } ], "typeParameters": [ { - "id": 730, + "id": 714, "name": "R", "variant": "typeParam", "kind": 131072, @@ -45169,7 +45816,7 @@ ], "parameters": [ { - "id": 731, + "id": 715, "name": "name", "variant": "param", "kind": 32768, @@ -45188,7 +45835,227 @@ } }, { - "id": 732, + "id": 716, + "name": "acquireTimeout", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + }, + { + "kind": "code", + "text": "`isAcquireTimeout`" + }, + { + "kind": "text", + "text": " set to true." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 717, + "name": "fn", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The operation to run once the lock is acquired." + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 718, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/locks.ts", + "line": 89, + "character": 6, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L89" + } + ], + "signatures": [ + { + "id": 719, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/locks.ts", + "line": 89, + "character": 6, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L89" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 714, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 714, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 728, + "name": "processLock", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/locks.ts", + "line": 325, + "character": 22, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L325" + } + ], + "signatures": [ + { + "id": 729, + "name": "processLock", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#navigatorLock" + }, + { + "kind": "text", + "text": " in browser environments." + } + ], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " + }, + { + "kind": "code", + "text": "`{ lock: processLock }`" + }, + { + "kind": "text", + "text": "\nto it has no effect. You can safely drop the import from your client setup." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/locks.ts", + "line": 325, + "character": 22, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L325" + } + ], + "typeParameters": [ + { + "id": 730, + "name": "R", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "parameters": [ + { + "id": 731, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the lock to be acquired." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 732, "name": "acquireTimeout", "variant": "param", "kind": 32768, @@ -45239,9 +46106,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 333, + "line": 328, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L328" } ], "signatures": [ @@ -45254,9 +46121,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 333, + "line": 328, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L328" } ], "type": { @@ -45309,7 +46176,8 @@ { "title": "Classes", "children": [ - 1741, 1723, 1846, 1829, 1959, 1813, 1904, 1875, 1920, 1797, 1759, 1938, 1777, 1, 139, 720 + 1744, 1726, 1849, 1832, 1979, 1816, 1907, 1878, 1941, 1923, 1800, 1762, 1958, 1780, 1, 136, + 720 ] }, { @@ -45340,7 +46208,7 @@ }, { "title": "Functions", - "children": [1705, 1702, 1711, 1714, 1717, 1708, 1720, 712, 728] + "children": [1705, 1702, 1711, 1714, 1720, 1717, 1708, 1723, 712, 728] } ], "packageName": "@supabase/auth-js", @@ -45660,846 +46528,854 @@ "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.passkey" }, - "41": { + "38": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.signOut" }, - "42": { + "39": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.signOut" }, - "43": { + "40": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "jwt" }, - "44": { + "41": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "scope" }, - "45": { + "42": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "46": { + "43": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "47": { + "44": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.error" }, - "48": { + "45": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.inviteUserByEmail" }, - "49": { + "46": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.inviteUserByEmail" }, - "50": { + "47": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "email" }, - "51": { + "48": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "options" }, - "52": { + "49": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "53": { + "50": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "54": { + "51": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.redirectTo" }, - "55": { + "52": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.generateLink" }, - "56": { + "53": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.generateLink" }, - "57": { + "54": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "params" }, - "58": { + "55": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.createUser" }, - "59": { + "56": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.createUser" }, - "60": { + "57": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "attributes" }, - "61": { + "58": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.listUsers" }, - "62": { + "59": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.listUsers" }, - "63": { + "60": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "params" }, - "64": { + "61": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "65": { + "62": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "66": { + "63": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "67": { + "64": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.users" }, - "68": { + "65": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.aud" }, - "69": { + "66": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.error" }, - "70": { + "67": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "71": { + "68": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "72": { + "69": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "73": { + "70": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.users" }, - "74": { + "71": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.error" }, - "75": { + "72": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.getUserById" }, - "76": { + "73": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.getUserById" }, - "77": { + "74": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "uid" }, - "78": { + "75": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.updateUserById" }, - "79": { + "76": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.updateUserById" }, - "80": { + "77": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "uid" }, - "81": { + "78": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "attributes" }, - "82": { + "79": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.deleteUser" }, - "83": { + "80": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.deleteUser" }, - "84": { + "81": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "id" }, - "85": { + "82": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "shouldSoftDelete" }, - "139": { + "136": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default" }, - "141": { + "138": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.__constructor" }, - "142": { + "139": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default" }, - "143": { + "140": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "145": { + "142": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.admin" }, - "146": { + "143": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.mfa" }, - "147": { + "144": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.oauth" }, - "148": { + "145": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.passkey" }, - "215": { + "213": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.isThrowOnErrorEnabled" }, - "216": { + "214": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.isThrowOnErrorEnabled" }, - "228": { + "226": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.initialize" }, - "229": { + "227": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.initialize" }, - "232": { + "230": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInAnonymously" }, - "233": { + "231": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInAnonymously" }, - "234": { + "232": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "235": { + "233": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signUp" }, - "236": { + "234": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signUp" }, - "237": { + "235": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "238": { + "236": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithPassword" }, - "239": { + "237": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithPassword" }, - "240": { + "238": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "241": { + "239": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOAuth" }, - "242": { + "240": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOAuth" }, - "243": { + "241": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "244": { + "242": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.exchangeCodeForSession" }, - "245": { + "243": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.exchangeCodeForSession" }, - "246": { + "244": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "authCode" }, - "247": { + "245": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithWeb3" }, - "248": { + "246": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithWeb3" }, - "249": { + "247": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "250": { + "248": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "251": { + "249": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "252": { + "250": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "253": { + "251": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "254": { + "252": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.user" }, - "255": { + "253": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "256": { + "254": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "257": { + "255": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "258": { + "256": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "259": { + "257": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "260": { + "258": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.user" }, - "261": { + "259": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "300": { + "298": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithIdToken" }, - "301": { + "299": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithIdToken" }, - "302": { + "300": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "303": { + "301": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOtp" }, - "304": { + "302": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOtp" }, - "305": { + "303": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "306": { + "304": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.verifyOtp" }, - "307": { + "305": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.verifyOtp" }, - "308": { + "306": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "params" }, - "309": { + "307": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithSSO" }, - "310": { + "308": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithSSO" }, - "311": { + "309": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "params" }, - "312": { + "310": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.reauthenticate" }, - "313": { + "311": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.reauthenticate" }, - "316": { + "314": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resend" }, - "317": { + "315": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resend" }, - "318": { + "316": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "319": { + "317": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getSession" }, - "320": { + "318": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getSession" }, - "321": { + "319": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "322": { + "320": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "323": { + "321": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "324": { + "322": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "325": { + "323": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "326": { + "324": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "327": { + "325": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "328": { + "326": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "329": { + "327": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "330": { + "328": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "331": { + "329": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "332": { + "330": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "333": { + "331": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "334": { + "332": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "335": { + "333": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "382": { + "380": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUser" }, - "383": { + "381": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUser" }, - "384": { + "382": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "jwt" }, - "388": { + "386": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.updateUser" }, - "389": { + "387": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.updateUser" }, - "390": { + "388": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "attributes" }, - "391": { + "389": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "392": { + "390": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "393": { + "391": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.emailRedirectTo" }, - "400": { + "398": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.setSession" }, - "401": { + "399": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.setSession" }, - "402": { + "400": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "currentSession" }, - "403": { + "401": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "404": { + "402": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.access_token" }, - "405": { + "403": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.refresh_token" }, - "412": { + "410": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.refreshSession" }, - "413": { + "411": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.refreshSession" }, - "414": { + "412": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "currentSession" }, - "415": { + "413": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "416": { + "414": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.refresh_token" }, - "453": { + "451": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signOut" }, - "454": { + "452": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signOut" }, - "455": { + "453": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "456": { + "454": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "457": { + "455": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "463": { + "461": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.onAuthStateChange" }, - "464": { + "462": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.onAuthStateChange" }, - "465": { + "463": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "callback" }, - "466": { + "464": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "467": { + "465": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "468": { + "466": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "event" }, - "469": { + "467": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "session" }, - "470": { + "468": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "471": { + "469": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "472": { + "470": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "473": { + "471": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.subscription" }, - "474": { + "472": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.onAuthStateChange" }, - "475": { + "473": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "callback" }, - "476": { + "474": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "477": { + "475": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "478": { + "476": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "event" }, - "479": { + "477": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "session" }, - "480": { + "478": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "481": { + "479": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "482": { + "480": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "483": { + "481": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.subscription" }, - "487": { + "485": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resetPasswordForEmail" }, - "488": { + "486": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resetPasswordForEmail" }, - "489": { + "487": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "email" }, - "490": { + "488": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "491": { + "489": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "492": { + "490": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.redirectTo" }, - "493": { + "491": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.captchaToken" }, - "494": { + "492": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "495": { + "493": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "496": { + "494": { "sourceFileName": "", "qualifiedName": "__type" }, - "497": { + "495": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "498": { + "496": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "499": { + "497": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "500": { + "498": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "501": { + "499": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUserIdentities" }, - "502": { + "500": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUserIdentities" }, - "503": { + "501": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "504": { + "502": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "505": { + "503": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "506": { + "504": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.identities" }, - "507": { + "505": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "508": { + "506": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "509": { + "507": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "510": { + "508": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "511": { + "509": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.linkIdentity" }, - "512": { + "510": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.linkIdentity" }, - "513": { + "511": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "514": { + "512": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.linkIdentity" }, - "515": { + "513": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "522": { + "520": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.unlinkIdentity" }, - "523": { + "521": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.unlinkIdentity" }, - "524": { + "522": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "identity" }, - "525": { + "523": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "526": { + "524": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "527": { + "525": { "sourceFileName": "", "qualifiedName": "__type" }, - "528": { + "526": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "529": { + "527": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "530": { + "528": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "531": { + "529": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "577": { + "575": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.startAutoRefresh" }, - "578": { + "576": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.startAutoRefresh" }, - "579": { + "577": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.stopAutoRefresh" }, - "580": { + "578": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.stopAutoRefresh" }, + "579": { + "sourceFileName": "src/GoTrueClient.ts", + "qualifiedName": "default.dispose" + }, + "580": { + "sourceFileName": "src/GoTrueClient.ts", + "qualifiedName": "default.dispose" + }, "662": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getClaims" @@ -50622,11 +51498,11 @@ }, "1720": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "isAuthRefreshDiscardedError" }, "1721": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "isAuthRefreshDiscardedError" }, "1722": { "sourceFileName": "src/lib/errors.ts", @@ -50634,961 +51510,1037 @@ }, "1723": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "isAuthWeakPasswordError" }, "1724": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError.__constructor" + "qualifiedName": "isAuthWeakPasswordError" }, "1725": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "error" }, "1726": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "message" + "qualifiedName": "AuthError" }, "1727": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "status" + "qualifiedName": "AuthError.__constructor" }, "1728": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "code" + "qualifiedName": "AuthError" }, "1729": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError.code" + "qualifiedName": "message" }, "1730": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "status" + }, + "1731": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "code" + }, + "1732": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.code" + }, + "1733": { "sourceFileName": "", "qualifiedName": "__type" }, - "1731": { + "1734": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "1733": { + "1736": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1734": { + "1737": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1735": { + "1738": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1736": { + "1739": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1737": { + "1740": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1738": { + "1741": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1739": { + "1742": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1740": { + "1743": { "sourceFileName": "", "qualifiedName": "__type" }, - "1741": { + "1744": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError" }, - "1742": { + "1745": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError.__constructor" }, - "1743": { + "1746": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError" }, - "1744": { + "1747": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1745": { + "1748": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1746": { + "1749": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "code" }, - "1747": { + "1750": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError.status" }, - "1748": { + "1751": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1749": { + "1752": { "sourceFileName": "", "qualifiedName": "__type" }, - "1751": { + "1754": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1752": { + "1755": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1753": { + "1756": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1754": { + "1757": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1755": { + "1758": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1756": { + "1759": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1757": { + "1760": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1758": { + "1761": { "sourceFileName": "", "qualifiedName": "__type" }, - "1759": { + "1762": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "1760": { + "1763": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError.__constructor" }, - "1761": { + "1764": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "1762": { + "1765": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1763": { + "1766": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "originalError" }, - "1764": { + "1767": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError.originalError" }, - "1765": { + "1768": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1766": { + "1769": { "sourceFileName": "", "qualifiedName": "__type" }, - "1767": { + "1770": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "1769": { + "1772": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1770": { + "1773": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1771": { + "1774": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1772": { + "1775": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1773": { + "1776": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1774": { + "1777": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1775": { + "1778": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1776": { + "1779": { "sourceFileName": "", "qualifiedName": "__type" }, - "1777": { + "1780": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "1778": { + "1781": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.__constructor" }, - "1779": { + "1782": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "1780": { + "1783": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1781": { + "1784": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "name" }, - "1782": { + "1785": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1783": { + "1786": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "code" }, - "1784": { + "1787": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1785": { + "1788": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1786": { + "1789": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1787": { + "1790": { "sourceFileName": "", "qualifiedName": "__type" }, - "1789": { + "1792": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1790": { + "1793": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1791": { + "1794": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1792": { + "1795": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1793": { + "1796": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1794": { + "1797": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1795": { + "1798": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1796": { + "1799": { "sourceFileName": "", "qualifiedName": "__type" }, - "1797": { + "1800": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "1798": { + "1801": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError.__constructor" }, - "1799": { + "1802": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "1800": { + "1803": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1801": { + "1804": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1802": { + "1805": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1803": { + "1806": { "sourceFileName": "", "qualifiedName": "__type" }, - "1805": { + "1808": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1806": { + "1809": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1807": { + "1810": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1808": { + "1811": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1809": { + "1812": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1810": { + "1813": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1811": { + "1814": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1812": { + "1815": { "sourceFileName": "", "qualifiedName": "__type" }, - "1813": { + "1816": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "1814": { + "1817": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError.__constructor" }, - "1815": { + "1818": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "1816": { + "1819": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1817": { + "1820": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1818": { + "1821": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1819": { + "1822": { "sourceFileName": "", "qualifiedName": "__type" }, - "1821": { + "1824": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1822": { + "1825": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1823": { + "1826": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1824": { + "1827": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1825": { + "1828": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1826": { + "1829": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1827": { + "1830": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1828": { + "1831": { "sourceFileName": "", "qualifiedName": "__type" }, - "1829": { + "1832": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "1830": { + "1833": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError.__constructor" }, - "1831": { + "1834": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "1832": { + "1835": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1833": { + "1836": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1834": { + "1837": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1835": { + "1838": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1836": { + "1839": { "sourceFileName": "", "qualifiedName": "__type" }, - "1838": { + "1841": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1839": { + "1842": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1840": { + "1843": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1841": { + "1844": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1842": { + "1845": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1843": { + "1846": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1844": { + "1847": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1845": { + "1848": { "sourceFileName": "", "qualifiedName": "__type" }, - "1846": { + "1849": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "1847": { + "1850": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.__constructor" }, - "1848": { + "1851": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "1849": { + "1852": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1850": { + "1853": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "details" }, - "1851": { + "1854": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1852": { + "1855": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1853": { + "1856": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1854": { + "1857": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.details" }, - "1855": { + "1858": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1856": { + "1859": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1857": { + "1860": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1858": { + "1861": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "1859": { + "1862": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "1860": { + "1863": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1861": { + "1864": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1862": { + "1865": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1863": { + "1866": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1864": { + "1867": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1865": { + "1868": { "sourceFileName": "", "qualifiedName": "__type" }, - "1866": { + "1869": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.details" }, - "1867": { + "1870": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1868": { + "1871": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1869": { + "1872": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1870": { + "1873": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1871": { + "1874": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1872": { + "1875": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1873": { + "1876": { "sourceFileName": "", "qualifiedName": "__type" }, - "1875": { + "1878": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "1876": { + "1879": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor" }, - "1877": { + "1880": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "1878": { + "1881": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1879": { + "1882": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "details" }, - "1880": { + "1883": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1881": { + "1884": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1882": { + "1885": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1883": { + "1886": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.details" }, - "1884": { + "1887": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1885": { + "1888": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1886": { + "1889": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1887": { + "1890": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "1888": { + "1891": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "1889": { + "1892": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1890": { + "1893": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1891": { + "1894": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1892": { + "1895": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1893": { + "1896": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1894": { + "1897": { "sourceFileName": "", "qualifiedName": "__type" }, - "1895": { + "1898": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.details" }, - "1896": { + "1899": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1897": { + "1900": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1898": { + "1901": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1899": { + "1902": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1900": { + "1903": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1901": { + "1904": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1902": { + "1905": { "sourceFileName": "", "qualifiedName": "__type" }, - "1904": { + "1907": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "1905": { + "1908": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor" }, - "1906": { + "1909": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "1907": { + "1910": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1908": { + "1911": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1909": { + "1912": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1910": { + "1913": { "sourceFileName": "", "qualifiedName": "__type" }, - "1912": { + "1915": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1913": { + "1916": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1914": { + "1917": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1915": { + "1918": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1916": { + "1919": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1917": { + "1920": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1918": { + "1921": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1919": { + "1922": { "sourceFileName": "", "qualifiedName": "__type" }, - "1920": { + "1923": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "1921": { + "1924": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError.__constructor" }, - "1922": { + "1925": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "1923": { + "1926": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1924": { + "1927": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1925": { + "1928": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1926": { + "1929": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1927": { + "1930": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1928": { + "1931": { "sourceFileName": "", "qualifiedName": "__type" }, - "1930": { + "1933": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1931": { + "1934": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1932": { + "1935": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1933": { + "1936": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1934": { + "1937": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1935": { + "1938": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1936": { + "1939": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1937": { + "1940": { "sourceFileName": "", "qualifiedName": "__type" }, - "1938": { + "1941": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "1942": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError.__constructor" + }, + "1943": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "1944": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "message" + }, + "1945": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "CustomAuthError.name" + }, + "1946": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "CustomAuthError.status" + }, + "1947": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.code" + }, + "1948": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "1950": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "1951": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "1952": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type" + }, + "1953": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.name" + }, + "1954": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.message" + }, + "1955": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.status" + }, + "1956": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.code" + }, + "1957": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "1958": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "1939": { + "1959": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.__constructor" }, - "1940": { + "1960": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "1941": { + "1961": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1942": { + "1962": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1943": { + "1963": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "reasons" }, - "1944": { + "1964": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.reasons" }, - "1945": { + "1965": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "1946": { + "1966": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "1947": { + "1967": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1948": { + "1968": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1949": { + "1969": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1950": { + "1970": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1951": { + "1971": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1952": { + "1972": { "sourceFileName": "", "qualifiedName": "__type" }, - "1953": { + "1973": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.reasons" }, - "1954": { + "1974": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1955": { + "1975": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1956": { + "1976": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1957": { + "1977": { "sourceFileName": "", "qualifiedName": "__type" }, - "1959": { + "1979": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "1960": { + "1980": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError.__constructor" }, - "1961": { + "1981": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "1962": { + "1982": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1963": { + "1983": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1964": { + "1984": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1965": { + "1985": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1966": { + "1986": { "sourceFileName": "", "qualifiedName": "__type" }, - "1968": { + "1988": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1969": { + "1989": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1970": { + "1990": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1971": { + "1991": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1972": { + "1992": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1973": { + "1993": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1974": { + "1994": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1975": { + "1995": { "sourceFileName": "", "qualifiedName": "__type" } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json index 847a52c07c54f..50e553a359d62 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json @@ -6,7 +6,7 @@ "flags": {}, "children": [ { - "id": 1741, + "id": 1744, "name": "AuthApiError", "variant": "declaration", "kind": 128, @@ -32,7 +32,7 @@ }, "children": [ { - "id": 1742, + "id": 1745, "name": "constructor", "variant": "declaration", "kind": 512, @@ -42,12 +42,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L67" } ], "signatures": [ { - "id": 1743, + "id": 1746, "name": "AuthApiError", "variant": "signature", "kind": 16384, @@ -57,12 +57,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L67" } ], "parameters": [ { - "id": 1744, + "id": 1747, "name": "message", "variant": "param", "kind": 32768, @@ -73,7 +73,7 @@ } }, { - "id": 1745, + "id": 1748, "name": "status", "variant": "param", "kind": 32768, @@ -84,7 +84,7 @@ } }, { - "id": 1746, + "id": 1749, "name": "code", "variant": "param", "kind": 32768, @@ -106,25 +106,25 @@ ], "type": { "type": "reference", - "target": 1741, + "target": 1744, "name": "AuthApiError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1725, + "target": 1728, "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1724, + "target": 1727, "name": "AuthError.constructor" } }, { - "id": 1748, + "id": 1751, "name": "code", "variant": "declaration", "kind": 1024, @@ -153,7 +153,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -173,7 +173,7 @@ { "type": "reflection", "declaration": { - "id": 1749, + "id": 1752, "name": "__type", "variant": "declaration", "kind": 65536, @@ -195,12 +195,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1729, + "target": 1732, "name": "AuthError.code" } }, { - "id": 1747, + "id": 1750, "name": "status", "variant": "declaration", "kind": 1024, @@ -218,7 +218,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L65" } ], "type": { @@ -227,12 +227,12 @@ }, "overwrites": { "type": "reference", - "target": 1731, + "target": 1734, "name": "AuthError.status" } }, { - "id": 1751, + "id": 1754, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -244,12 +244,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1752, + "id": 1755, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -261,20 +261,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1753, + "id": 1756, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1757, + "id": 1760, "name": "code", "variant": "declaration", "kind": 1024, @@ -284,7 +284,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -304,7 +304,7 @@ { "type": "reflection", "declaration": { - "id": 1758, + "id": 1761, "name": "__type", "variant": "declaration", "kind": 65536, @@ -326,7 +326,7 @@ } }, { - "id": 1755, + "id": 1758, "name": "message", "variant": "declaration", "kind": 1024, @@ -336,7 +336,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -345,7 +345,7 @@ } }, { - "id": 1754, + "id": 1757, "name": "name", "variant": "declaration", "kind": 1024, @@ -355,7 +355,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -364,7 +364,7 @@ } }, { - "id": 1756, + "id": 1759, "name": "status", "variant": "declaration", "kind": 1024, @@ -374,7 +374,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -395,7 +395,7 @@ "groups": [ { "title": "Properties", - "children": [1757, 1755, 1754, 1756] + "children": [1760, 1758, 1757, 1759] } ], "sources": [ @@ -403,21 +403,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1734, + "target": 1737, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1733, + "target": 1736, "name": "AuthError.toJSON" } } @@ -425,15 +425,15 @@ "groups": [ { "title": "Constructors", - "children": [1742] + "children": [1745] }, { "title": "Properties", - "children": [1748, 1747] + "children": [1751, 1750] }, { "title": "Methods", - "children": [1751] + "children": [1754] } ], "sources": [ @@ -441,20 +441,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 64, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L64" } ], "extendedTypes": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1723, + "id": 1726, "name": "AuthError", "variant": "declaration", "kind": 128, @@ -480,7 +480,7 @@ }, "children": [ { - "id": 1724, + "id": 1727, "name": "constructor", "variant": "declaration", "kind": 512, @@ -490,12 +490,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L28" } ], "signatures": [ { - "id": 1725, + "id": 1728, "name": "AuthError", "variant": "signature", "kind": 16384, @@ -505,12 +505,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L28" } ], "parameters": [ { - "id": 1726, + "id": 1729, "name": "message", "variant": "param", "kind": 32768, @@ -521,7 +521,7 @@ } }, { - "id": 1727, + "id": 1730, "name": "status", "variant": "param", "kind": 32768, @@ -534,7 +534,7 @@ } }, { - "id": 1728, + "id": 1731, "name": "code", "variant": "param", "kind": 32768, @@ -549,7 +549,7 @@ ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -567,7 +567,7 @@ } }, { - "id": 1729, + "id": 1732, "name": "code", "variant": "declaration", "kind": 1024, @@ -594,7 +594,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -614,7 +614,7 @@ { "type": "reflection", "declaration": { - "id": 1730, + "id": 1733, "name": "__type", "variant": "declaration", "kind": 65536, @@ -636,7 +636,7 @@ } }, { - "id": 1731, + "id": 1734, "name": "status", "variant": "declaration", "kind": 1024, @@ -654,7 +654,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -672,7 +672,7 @@ } }, { - "id": 1733, + "id": 1736, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -682,12 +682,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1734, + "id": 1737, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -697,20 +697,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1735, + "id": 1738, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1739, + "id": 1742, "name": "code", "variant": "declaration", "kind": 1024, @@ -720,7 +720,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -740,7 +740,7 @@ { "type": "reflection", "declaration": { - "id": 1740, + "id": 1743, "name": "__type", "variant": "declaration", "kind": 65536, @@ -762,7 +762,7 @@ } }, { - "id": 1737, + "id": 1740, "name": "message", "variant": "declaration", "kind": 1024, @@ -772,7 +772,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -781,7 +781,7 @@ } }, { - "id": 1736, + "id": 1739, "name": "name", "variant": "declaration", "kind": 1024, @@ -791,7 +791,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -800,7 +800,7 @@ } }, { - "id": 1738, + "id": 1741, "name": "status", "variant": "declaration", "kind": 1024, @@ -810,7 +810,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -831,7 +831,7 @@ "groups": [ { "title": "Properties", - "children": [1739, 1737, 1736, 1738] + "children": [1742, 1740, 1739, 1741] } ], "sources": [ @@ -839,7 +839,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } @@ -851,15 +851,15 @@ "groups": [ { "title": "Constructors", - "children": [1724] + "children": [1727] }, { "title": "Properties", - "children": [1729, 1731] + "children": [1732, 1734] }, { "title": "Methods", - "children": [1733] + "children": [1736] } ], "sources": [ @@ -867,7 +867,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 14, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -884,23 +884,23 @@ "extendedBy": [ { "type": "reference", - "target": 1741, + "target": 1744, "name": "AuthApiError" }, { "type": "reference", - "target": 1759, + "target": 1762, "name": "AuthUnknownError" }, { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError" } ] }, { - "id": 1846, + "id": 1849, "name": "AuthImplicitGrantRedirectError", "variant": "declaration", "kind": 128, @@ -926,7 +926,7 @@ }, "children": [ { - "id": 1847, + "id": 1850, "name": "constructor", "variant": "declaration", "kind": 512, @@ -936,12 +936,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "signatures": [ { - "id": 1848, + "id": 1851, "name": "AuthImplicitGrantRedirectError", "variant": "signature", "kind": 16384, @@ -951,12 +951,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "parameters": [ { - "id": 1849, + "id": 1852, "name": "message", "variant": "param", "kind": 32768, @@ -967,7 +967,7 @@ } }, { - "id": 1850, + "id": 1853, "name": "details", "variant": "param", "kind": 32768, @@ -982,14 +982,14 @@ { "type": "reflection", "declaration": { - "id": 1851, + "id": 1854, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1853, + "id": 1856, "name": "code", "variant": "declaration", "kind": 1024, @@ -999,7 +999,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -1008,7 +1008,7 @@ } }, { - "id": 1852, + "id": 1855, "name": "error", "variant": "declaration", "kind": 1024, @@ -1018,7 +1018,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ], "type": { @@ -1030,7 +1030,7 @@ "groups": [ { "title": "Properties", - "children": [1853, 1852] + "children": [1856, 1855] } ], "sources": [ @@ -1038,7 +1038,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 191, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L191" } ] } @@ -1050,25 +1050,25 @@ ], "type": { "type": "reference", - "target": 1846, + "target": 1849, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1872, + "id": 1875, "name": "code", "variant": "declaration", "kind": 1024, @@ -1097,7 +1097,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -1117,7 +1117,7 @@ { "type": "reflection", "declaration": { - "id": 1873, + "id": 1876, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1139,12 +1139,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1854, + "id": 1857, "name": "details", "variant": "declaration", "kind": 1024, @@ -1154,7 +1154,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -1167,14 +1167,14 @@ { "type": "reflection", "declaration": { - "id": 1855, + "id": 1858, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1857, + "id": 1860, "name": "code", "variant": "declaration", "kind": 1024, @@ -1184,7 +1184,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -1193,7 +1193,7 @@ } }, { - "id": 1856, + "id": 1859, "name": "error", "variant": "declaration", "kind": 1024, @@ -1203,7 +1203,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" } ], "type": { @@ -1215,7 +1215,7 @@ "groups": [ { "title": "Properties", - "children": [1857, 1856] + "children": [1860, 1859] } ], "sources": [ @@ -1223,7 +1223,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 190, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L190" } ] } @@ -1233,7 +1233,7 @@ "defaultValue": "null" }, { - "id": 1870, + "id": 1873, "name": "name", "variant": "declaration", "kind": 1024, @@ -1245,7 +1245,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -1254,12 +1254,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1871, + "id": 1874, "name": "status", "variant": "declaration", "kind": 1024, @@ -1279,7 +1279,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -1288,12 +1288,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1858, + "id": 1861, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1303,12 +1303,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L196" } ], "signatures": [ { - "id": 1859, + "id": 1862, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1318,20 +1318,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L196" } ], "type": { "type": "reflection", "declaration": { - "id": 1860, + "id": 1863, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1864, + "id": 1867, "name": "code", "variant": "declaration", "kind": 1024, @@ -1341,7 +1341,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 200, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L200" } ], "type": { @@ -1361,7 +1361,7 @@ { "type": "reflection", "declaration": { - "id": 1865, + "id": 1868, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1383,7 +1383,7 @@ } }, { - "id": 1866, + "id": 1869, "name": "details", "variant": "declaration", "kind": 1024, @@ -1393,7 +1393,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -1406,14 +1406,14 @@ { "type": "reflection", "declaration": { - "id": 1867, + "id": 1870, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1869, + "id": 1872, "name": "code", "variant": "declaration", "kind": 1024, @@ -1423,7 +1423,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -1432,7 +1432,7 @@ } }, { - "id": 1868, + "id": 1871, "name": "error", "variant": "declaration", "kind": 1024, @@ -1442,7 +1442,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" } ], "type": { @@ -1454,7 +1454,7 @@ "groups": [ { "title": "Properties", - "children": [1869, 1868] + "children": [1872, 1871] } ], "sources": [ @@ -1462,7 +1462,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 201, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L201" } ] } @@ -1471,7 +1471,7 @@ } }, { - "id": 1862, + "id": 1865, "name": "message", "variant": "declaration", "kind": 1024, @@ -1481,7 +1481,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 198, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L198" } ], "type": { @@ -1490,7 +1490,7 @@ } }, { - "id": 1861, + "id": 1864, "name": "name", "variant": "declaration", "kind": 1024, @@ -1500,7 +1500,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 197, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L197" } ], "type": { @@ -1509,7 +1509,7 @@ } }, { - "id": 1863, + "id": 1866, "name": "status", "variant": "declaration", "kind": 1024, @@ -1519,7 +1519,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 199, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L199" } ], "type": { @@ -1540,7 +1540,7 @@ "groups": [ { "title": "Properties", - "children": [1864, 1866, 1862, 1861, 1863] + "children": [1867, 1869, 1865, 1864, 1866] } ], "sources": [ @@ -1548,21 +1548,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 196, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L196" } ] } }, "overwrites": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -1570,15 +1570,15 @@ "groups": [ { "title": "Constructors", - "children": [1847] + "children": [1850] }, { "title": "Properties", - "children": [1872, 1854, 1870, 1871] + "children": [1875, 1857, 1873, 1874] }, { "title": "Methods", - "children": [1858] + "children": [1861] } ], "sources": [ @@ -1586,20 +1586,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 189, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L189" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1829, + "id": 1832, "name": "AuthInvalidCredentialsError", "variant": "declaration", "kind": 128, @@ -1625,7 +1625,7 @@ }, "children": [ { - "id": 1830, + "id": 1833, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1635,12 +1635,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L171" } ], "signatures": [ { - "id": 1831, + "id": 1834, "name": "AuthInvalidCredentialsError", "variant": "signature", "kind": 16384, @@ -1650,12 +1650,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L171" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L171" } ], "parameters": [ { - "id": 1832, + "id": 1835, "name": "message", "variant": "param", "kind": 32768, @@ -1668,25 +1668,25 @@ ], "type": { "type": "reference", - "target": 1829, + "target": 1832, "name": "AuthInvalidCredentialsError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1835, + "id": 1838, "name": "code", "variant": "declaration", "kind": 1024, @@ -1715,7 +1715,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -1735,7 +1735,7 @@ { "type": "reflection", "declaration": { - "id": 1836, + "id": 1839, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1757,12 +1757,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1833, + "id": 1836, "name": "name", "variant": "declaration", "kind": 1024, @@ -1774,7 +1774,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -1783,12 +1783,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1834, + "id": 1837, "name": "status", "variant": "declaration", "kind": 1024, @@ -1808,7 +1808,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -1817,12 +1817,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1838, + "id": 1841, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1834,12 +1834,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1839, + "id": 1842, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1851,20 +1851,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1840, + "id": 1843, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1844, + "id": 1847, "name": "code", "variant": "declaration", "kind": 1024, @@ -1874,7 +1874,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -1894,7 +1894,7 @@ { "type": "reflection", "declaration": { - "id": 1845, + "id": 1848, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1916,7 +1916,7 @@ } }, { - "id": 1842, + "id": 1845, "name": "message", "variant": "declaration", "kind": 1024, @@ -1926,7 +1926,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -1935,7 +1935,7 @@ } }, { - "id": 1841, + "id": 1844, "name": "name", "variant": "declaration", "kind": 1024, @@ -1945,7 +1945,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -1954,7 +1954,7 @@ } }, { - "id": 1843, + "id": 1846, "name": "status", "variant": "declaration", "kind": 1024, @@ -1964,7 +1964,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -1985,7 +1985,7 @@ "groups": [ { "title": "Properties", - "children": [1844, 1842, 1841, 1843] + "children": [1847, 1845, 1844, 1846] } ], "sources": [ @@ -1993,21 +1993,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -2015,15 +2015,15 @@ "groups": [ { "title": "Constructors", - "children": [1830] + "children": [1833] }, { "title": "Properties", - "children": [1835, 1833, 1834] + "children": [1838, 1836, 1837] }, { "title": "Methods", - "children": [1838] + "children": [1841] } ], "sources": [ @@ -2031,20 +2031,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 170, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L170" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1959, + "id": 1979, "name": "AuthInvalidJwtError", "variant": "declaration", "kind": 128, @@ -2070,7 +2070,7 @@ }, "children": [ { - "id": 1960, + "id": 1980, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2078,14 +2078,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 356, + "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L388" } ], "signatures": [ { - "id": 1961, + "id": 1981, "name": "AuthInvalidJwtError", "variant": "signature", "kind": 16384, @@ -2093,14 +2093,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 356, + "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L388" } ], "parameters": [ { - "id": 1962, + "id": 1982, "name": "message", "variant": "param", "kind": 32768, @@ -2113,25 +2113,25 @@ ], "type": { "type": "reference", - "target": 1959, + "target": 1979, "name": "AuthInvalidJwtError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1965, + "id": 1985, "name": "code", "variant": "declaration", "kind": 1024, @@ -2160,7 +2160,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -2180,7 +2180,7 @@ { "type": "reflection", "declaration": { - "id": 1966, + "id": 1986, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2202,12 +2202,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1963, + "id": 1983, "name": "name", "variant": "declaration", "kind": 1024, @@ -2219,7 +2219,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -2228,12 +2228,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1964, + "id": 1984, "name": "status", "variant": "declaration", "kind": 1024, @@ -2253,7 +2253,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -2262,12 +2262,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1968, + "id": 1988, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2279,12 +2279,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1969, + "id": 1989, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2296,20 +2296,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1970, + "id": 1990, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1974, + "id": 1994, "name": "code", "variant": "declaration", "kind": 1024, @@ -2319,7 +2319,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -2339,7 +2339,7 @@ { "type": "reflection", "declaration": { - "id": 1975, + "id": 1995, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2361,7 +2361,7 @@ } }, { - "id": 1972, + "id": 1992, "name": "message", "variant": "declaration", "kind": 1024, @@ -2371,7 +2371,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -2380,7 +2380,7 @@ } }, { - "id": 1971, + "id": 1991, "name": "name", "variant": "declaration", "kind": 1024, @@ -2390,7 +2390,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -2399,7 +2399,7 @@ } }, { - "id": 1973, + "id": 1993, "name": "status", "variant": "declaration", "kind": 1024, @@ -2409,7 +2409,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -2430,7 +2430,7 @@ "groups": [ { "title": "Properties", - "children": [1974, 1972, 1971, 1973] + "children": [1994, 1992, 1991, 1993] } ], "sources": [ @@ -2438,21 +2438,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -2460,36 +2460,36 @@ "groups": [ { "title": "Constructors", - "children": [1960] + "children": [1980] }, { "title": "Properties", - "children": [1965, 1963, 1964] + "children": [1985, 1983, 1984] }, { "title": "Methods", - "children": [1968] + "children": [1988] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 355, + "line": 387, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L387" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1813, + "id": 1816, "name": "AuthInvalidTokenResponseError", "variant": "declaration", "kind": 128, @@ -2515,7 +2515,7 @@ }, "children": [ { - "id": 1814, + "id": 1817, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2525,12 +2525,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L155" } ], "signatures": [ { - "id": 1815, + "id": 1818, "name": "AuthInvalidTokenResponseError", "variant": "signature", "kind": 16384, @@ -2540,30 +2540,30 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L155" } ], "type": { "type": "reference", - "target": 1813, + "target": 1816, "name": "AuthInvalidTokenResponseError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1818, + "id": 1821, "name": "code", "variant": "declaration", "kind": 1024, @@ -2592,7 +2592,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -2612,7 +2612,7 @@ { "type": "reflection", "declaration": { - "id": 1819, + "id": 1822, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2634,12 +2634,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1816, + "id": 1819, "name": "name", "variant": "declaration", "kind": 1024, @@ -2651,7 +2651,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -2660,12 +2660,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1817, + "id": 1820, "name": "status", "variant": "declaration", "kind": 1024, @@ -2685,7 +2685,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -2694,12 +2694,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1821, + "id": 1824, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2711,12 +2711,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1822, + "id": 1825, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2728,20 +2728,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1823, + "id": 1826, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1827, + "id": 1830, "name": "code", "variant": "declaration", "kind": 1024, @@ -2751,7 +2751,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -2771,7 +2771,7 @@ { "type": "reflection", "declaration": { - "id": 1828, + "id": 1831, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2793,7 +2793,7 @@ } }, { - "id": 1825, + "id": 1828, "name": "message", "variant": "declaration", "kind": 1024, @@ -2803,7 +2803,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -2812,7 +2812,7 @@ } }, { - "id": 1824, + "id": 1827, "name": "name", "variant": "declaration", "kind": 1024, @@ -2822,7 +2822,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -2831,7 +2831,7 @@ } }, { - "id": 1826, + "id": 1829, "name": "status", "variant": "declaration", "kind": 1024, @@ -2841,7 +2841,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -2862,7 +2862,7 @@ "groups": [ { "title": "Properties", - "children": [1827, 1825, 1824, 1826] + "children": [1830, 1828, 1827, 1829] } ], "sources": [ @@ -2870,21 +2870,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -2892,15 +2892,15 @@ "groups": [ { "title": "Constructors", - "children": [1814] + "children": [1817] }, { "title": "Properties", - "children": [1818, 1816, 1817] + "children": [1821, 1819, 1820] }, { "title": "Methods", - "children": [1821] + "children": [1824] } ], "sources": [ @@ -2908,20 +2908,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 154, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L154" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1904, + "id": 1907, "name": "AuthPKCECodeVerifierMissingError", "variant": "declaration", "kind": 128, @@ -2947,7 +2947,7 @@ }, "children": [ { - "id": 1905, + "id": 1908, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2957,12 +2957,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L261" } ], "signatures": [ { - "id": 1906, + "id": 1909, "name": "AuthPKCECodeVerifierMissingError", "variant": "signature", "kind": 16384, @@ -2972,30 +2972,30 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L261" } ], "type": { "type": "reference", - "target": 1904, + "target": 1907, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1909, + "id": 1912, "name": "code", "variant": "declaration", "kind": 1024, @@ -3024,7 +3024,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -3044,7 +3044,7 @@ { "type": "reflection", "declaration": { - "id": 1910, + "id": 1913, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3066,12 +3066,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1907, + "id": 1910, "name": "name", "variant": "declaration", "kind": 1024, @@ -3083,7 +3083,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -3092,12 +3092,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1908, + "id": 1911, "name": "status", "variant": "declaration", "kind": 1024, @@ -3117,7 +3117,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -3126,12 +3126,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1912, + "id": 1915, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3143,12 +3143,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1913, + "id": 1916, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3160,20 +3160,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1914, + "id": 1917, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1918, + "id": 1921, "name": "code", "variant": "declaration", "kind": 1024, @@ -3183,7 +3183,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -3203,7 +3203,7 @@ { "type": "reflection", "declaration": { - "id": 1919, + "id": 1922, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3225,7 +3225,7 @@ } }, { - "id": 1916, + "id": 1919, "name": "message", "variant": "declaration", "kind": 1024, @@ -3235,7 +3235,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -3244,7 +3244,7 @@ } }, { - "id": 1915, + "id": 1918, "name": "name", "variant": "declaration", "kind": 1024, @@ -3254,7 +3254,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -3263,7 +3263,7 @@ } }, { - "id": 1917, + "id": 1920, "name": "status", "variant": "declaration", "kind": 1024, @@ -3273,7 +3273,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -3294,7 +3294,7 @@ "groups": [ { "title": "Properties", - "children": [1918, 1916, 1915, 1917] + "children": [1921, 1919, 1918, 1920] } ], "sources": [ @@ -3302,21 +3302,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -3324,15 +3324,15 @@ "groups": [ { "title": "Constructors", - "children": [1905] + "children": [1908] }, { "title": "Properties", - "children": [1909, 1907, 1908] + "children": [1912, 1910, 1911] }, { "title": "Methods", - "children": [1912] + "children": [1915] } ], "sources": [ @@ -3340,20 +3340,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 260, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L260" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1875, + "id": 1878, "name": "AuthPKCEGrantCodeExchangeError", "variant": "declaration", "kind": 128, @@ -3379,7 +3379,7 @@ }, "children": [ { - "id": 1876, + "id": 1879, "name": "constructor", "variant": "declaration", "kind": 512, @@ -3389,12 +3389,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ], "signatures": [ { - "id": 1877, + "id": 1880, "name": "AuthPKCEGrantCodeExchangeError", "variant": "signature", "kind": 16384, @@ -3404,12 +3404,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ], "parameters": [ { - "id": 1878, + "id": 1881, "name": "message", "variant": "param", "kind": 32768, @@ -3420,7 +3420,7 @@ } }, { - "id": 1879, + "id": 1882, "name": "details", "variant": "param", "kind": 32768, @@ -3435,14 +3435,14 @@ { "type": "reflection", "declaration": { - "id": 1880, + "id": 1883, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1882, + "id": 1885, "name": "code", "variant": "declaration", "kind": 1024, @@ -3452,7 +3452,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -3461,7 +3461,7 @@ } }, { - "id": 1881, + "id": 1884, "name": "error", "variant": "declaration", "kind": 1024, @@ -3471,7 +3471,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ], "type": { @@ -3483,7 +3483,7 @@ "groups": [ { "title": "Properties", - "children": [1882, 1881] + "children": [1885, 1884] } ], "sources": [ @@ -3491,7 +3491,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 229, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L229" } ] } @@ -3503,25 +3503,25 @@ ], "type": { "type": "reference", - "target": 1875, + "target": 1878, "name": "AuthPKCEGrantCodeExchangeError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1901, + "id": 1904, "name": "code", "variant": "declaration", "kind": 1024, @@ -3550,7 +3550,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -3570,7 +3570,7 @@ { "type": "reflection", "declaration": { - "id": 1902, + "id": 1905, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3592,12 +3592,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1883, + "id": 1886, "name": "details", "variant": "declaration", "kind": 1024, @@ -3607,7 +3607,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -3620,14 +3620,14 @@ { "type": "reflection", "declaration": { - "id": 1884, + "id": 1887, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1886, + "id": 1889, "name": "code", "variant": "declaration", "kind": 1024, @@ -3637,7 +3637,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -3646,7 +3646,7 @@ } }, { - "id": 1885, + "id": 1888, "name": "error", "variant": "declaration", "kind": 1024, @@ -3656,7 +3656,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" } ], "type": { @@ -3668,7 +3668,7 @@ "groups": [ { "title": "Properties", - "children": [1886, 1885] + "children": [1889, 1888] } ], "sources": [ @@ -3676,7 +3676,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 227, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L227" } ] } @@ -3686,7 +3686,7 @@ "defaultValue": "null" }, { - "id": 1899, + "id": 1902, "name": "name", "variant": "declaration", "kind": 1024, @@ -3698,7 +3698,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -3707,12 +3707,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1900, + "id": 1903, "name": "status", "variant": "declaration", "kind": 1024, @@ -3732,7 +3732,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -3741,12 +3741,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1887, + "id": 1890, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3756,12 +3756,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L234" } ], "signatures": [ { - "id": 1888, + "id": 1891, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3771,20 +3771,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L234" } ], "type": { "type": "reflection", "declaration": { - "id": 1889, + "id": 1892, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1893, + "id": 1896, "name": "code", "variant": "declaration", "kind": 1024, @@ -3794,7 +3794,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 238, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L238" } ], "type": { @@ -3814,7 +3814,7 @@ { "type": "reflection", "declaration": { - "id": 1894, + "id": 1897, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3836,7 +3836,7 @@ } }, { - "id": 1895, + "id": 1898, "name": "details", "variant": "declaration", "kind": 1024, @@ -3846,7 +3846,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -3859,14 +3859,14 @@ { "type": "reflection", "declaration": { - "id": 1896, + "id": 1899, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1898, + "id": 1901, "name": "code", "variant": "declaration", "kind": 1024, @@ -3876,7 +3876,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -3885,7 +3885,7 @@ } }, { - "id": 1897, + "id": 1900, "name": "error", "variant": "declaration", "kind": 1024, @@ -3895,7 +3895,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" } ], "type": { @@ -3907,7 +3907,7 @@ "groups": [ { "title": "Properties", - "children": [1898, 1897] + "children": [1901, 1900] } ], "sources": [ @@ -3915,7 +3915,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 239, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L239" } ] } @@ -3924,7 +3924,7 @@ } }, { - "id": 1891, + "id": 1894, "name": "message", "variant": "declaration", "kind": 1024, @@ -3934,7 +3934,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 236, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L236" } ], "type": { @@ -3943,7 +3943,7 @@ } }, { - "id": 1890, + "id": 1893, "name": "name", "variant": "declaration", "kind": 1024, @@ -3953,7 +3953,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L235" } ], "type": { @@ -3962,7 +3962,7 @@ } }, { - "id": 1892, + "id": 1895, "name": "status", "variant": "declaration", "kind": 1024, @@ -3972,7 +3972,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 237, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L237" } ], "type": { @@ -3993,7 +3993,7 @@ "groups": [ { "title": "Properties", - "children": [1893, 1895, 1891, 1890, 1892] + "children": [1896, 1898, 1894, 1893, 1895] } ], "sources": [ @@ -4001,21 +4001,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 234, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L234" } ] } }, "overwrites": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -4023,15 +4023,15 @@ "groups": [ { "title": "Constructors", - "children": [1876] + "children": [1879] }, { "title": "Properties", - "children": [1901, 1883, 1899, 1900] + "children": [1904, 1886, 1902, 1903] }, { "title": "Methods", - "children": [1887] + "children": [1890] } ], "sources": [ @@ -4039,21 +4039,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 226, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L226" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1920, - "name": "AuthRetryableFetchError", + "id": 1941, + "name": "AuthRefreshDiscardedError", "variant": "declaration", "kind": 128, "flags": {}, @@ -4061,7 +4061,23 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a transient fetch issue occurs." + "text": "Returned when the server rotated a refresh token successfully but the\nclient chose not to persist the rotated tokens because the local session\nchanged mid-flight. Usually means a concurrent " + }, + { + "kind": "code", + "text": "`signOut`" + }, + { + "kind": "text", + "text": " cleared storage\nbetween when the refresh started and when it came back.\n\nSet on the " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " field of the refresh result so callers can tell \"we\ngot rotated tokens but threw them away\" apart from \"the refresh failed.\"\nThe rotated session on the server will be picked up on the next refresh\nvia GoTrue's parent-of-active path." } ], "blockTags": [ @@ -4070,7 +4086,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" + "text": "```ts\nimport { isAuthRefreshDiscardedError } from '@supabase/auth-js'\n\nif (isAuthRefreshDiscardedError(error)) {\n // Concurrent signOut/sign-in raced our refresh. Treat as a no-op.\n}\n```" } ] } @@ -4078,7 +4094,7 @@ }, "children": [ { - "id": 1921, + "id": 1942, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4086,29 +4102,29 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 291, + "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L321" } ], "signatures": [ { - "id": 1922, - "name": "AuthRetryableFetchError", + "id": 1943, + "name": "AuthRefreshDiscardedError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 291, + "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L321" } ], "parameters": [ { - "id": 1923, + "id": 1944, "name": "message", "variant": "param", "kind": 32768, @@ -4116,41 +4132,31 @@ "type": { "type": "intrinsic", "name": "string" - } - }, - { - "id": 1924, - "name": "status", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } + }, + "defaultValue": "'Refresh result discarded: session state changed mid-flight (e.g., concurrent signOut)'" } ], "type": { "type": "reference", - "target": 1920, - "name": "AuthRetryableFetchError", + "target": 1941, + "name": "AuthRefreshDiscardedError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1927, + "id": 1947, "name": "code", "variant": "declaration", "kind": 1024, @@ -4179,7 +4185,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -4199,7 +4205,7 @@ { "type": "reflection", "declaration": { - "id": 1928, + "id": 1948, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4221,12 +4227,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1925, + "id": 1945, "name": "name", "variant": "declaration", "kind": 1024, @@ -4238,7 +4244,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -4247,12 +4253,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1926, + "id": 1946, "name": "status", "variant": "declaration", "kind": 1024, @@ -4272,7 +4278,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -4281,12 +4287,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1930, + "id": 1950, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4298,12 +4304,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1931, + "id": 1951, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4315,20 +4321,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1932, + "id": 1952, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1936, + "id": 1956, "name": "code", "variant": "declaration", "kind": 1024, @@ -4338,7 +4344,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -4358,7 +4364,7 @@ { "type": "reflection", "declaration": { - "id": 1937, + "id": 1957, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4380,7 +4386,7 @@ } }, { - "id": 1934, + "id": 1954, "name": "message", "variant": "declaration", "kind": 1024, @@ -4390,7 +4396,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -4399,7 +4405,7 @@ } }, { - "id": 1933, + "id": 1953, "name": "name", "variant": "declaration", "kind": 1024, @@ -4409,7 +4415,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -4418,7 +4424,7 @@ } }, { - "id": 1935, + "id": 1955, "name": "status", "variant": "declaration", "kind": 1024, @@ -4428,7 +4434,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -4449,7 +4455,7 @@ "groups": [ { "title": "Properties", - "children": [1936, 1934, 1933, 1935] + "children": [1956, 1954, 1953, 1955] } ], "sources": [ @@ -4457,21 +4463,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -4479,37 +4485,37 @@ "groups": [ { "title": "Constructors", - "children": [1921] + "children": [1942] }, { "title": "Properties", - "children": [1927, 1925, 1926] + "children": [1947, 1945, 1946] }, { "title": "Methods", - "children": [1930] + "children": [1950] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 290, + "line": 320, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L320" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1797, - "name": "AuthSessionMissingError", + "id": 1923, + "name": "AuthRetryableFetchError", "variant": "declaration", "kind": 128, "flags": {}, @@ -4517,7 +4523,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when an operation requires a session but none is present." + "text": "Error thrown when a transient fetch issue occurs." } ], "blockTags": [ @@ -4526,7 +4532,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" + "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" } ] } @@ -4534,7 +4540,7 @@ }, "children": [ { - "id": 1798, + "id": 1924, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4542,47 +4548,71 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 135, + "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L291" } ], "signatures": [ { - "id": 1799, - "name": "AuthSessionMissingError", + "id": 1925, + "name": "AuthRetryableFetchError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 135, + "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L291" + } + ], + "parameters": [ + { + "id": 1926, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1927, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } } ], "type": { "type": "reference", - "target": 1797, - "name": "AuthSessionMissingError", + "target": 1923, + "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, + "target": 1782, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, + "target": 1781, "name": "CustomAuthError.constructor" } }, { - "id": 1802, + "id": 1930, "name": "code", "variant": "declaration", "kind": 1024, @@ -4611,7 +4641,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -4631,7 +4661,7 @@ { "type": "reflection", "declaration": { - "id": 1803, + "id": 1931, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4653,12 +4683,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, + "target": 1789, "name": "CustomAuthError.code" } }, { - "id": 1800, + "id": 1928, "name": "name", "variant": "declaration", "kind": 1024, @@ -4670,7 +4700,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { @@ -4679,12 +4709,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1784, + "target": 1787, "name": "CustomAuthError.name" } }, { - "id": 1801, + "id": 1929, "name": "status", "variant": "declaration", "kind": 1024, @@ -4704,7 +4734,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { @@ -4713,12 +4743,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1785, + "target": 1788, "name": "CustomAuthError.status" } }, { - "id": 1805, + "id": 1933, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4730,12 +4760,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1806, + "id": 1934, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4747,20 +4777,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1807, + "id": 1935, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1811, + "id": 1939, "name": "code", "variant": "declaration", "kind": 1024, @@ -4770,7 +4800,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -4790,7 +4820,7 @@ { "type": "reflection", "declaration": { - "id": 1812, + "id": 1940, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4812,7 +4842,7 @@ } }, { - "id": 1809, + "id": 1937, "name": "message", "variant": "declaration", "kind": 1024, @@ -4822,7 +4852,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -4831,7 +4861,7 @@ } }, { - "id": 1808, + "id": 1936, "name": "name", "variant": "declaration", "kind": 1024, @@ -4841,7 +4871,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -4850,7 +4880,7 @@ } }, { - "id": 1810, + "id": 1938, "name": "status", "variant": "declaration", "kind": 1024, @@ -4860,7 +4890,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -4881,7 +4911,7 @@ "groups": [ { "title": "Properties", - "children": [1811, 1809, 1808, 1810] + "children": [1939, 1937, 1936, 1938] } ], "sources": [ @@ -4889,21 +4919,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1790, + "target": 1793, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1789, + "target": 1792, "name": "CustomAuthError.toJSON" } } @@ -4911,37 +4941,37 @@ "groups": [ { "title": "Constructors", - "children": [1798] + "children": [1924] }, { "title": "Properties", - "children": [1802, 1800, 1801] + "children": [1930, 1928, 1929] }, { "title": "Methods", - "children": [1805] + "children": [1933] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 134, + "line": 290, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L290" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, + "target": 1780, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1759, - "name": "AuthUnknownError", + "id": 1800, + "name": "AuthSessionMissingError", "variant": "declaration", "kind": 128, "flags": {}, @@ -4949,7 +4979,7 @@ "summary": [ { "kind": "text", - "text": "Wraps non-standard errors so callers can inspect the root cause." + "text": "Error thrown when an operation requires a session but none is present." } ], "blockTags": [ @@ -4958,7 +4988,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" + "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" } ] } @@ -4966,7 +4996,7 @@ }, "children": [ { - "id": 1760, + "id": 1801, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4974,71 +5004,47 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 96, + "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L135" } ], "signatures": [ { - "id": 1761, - "name": "AuthUnknownError", + "id": 1802, + "name": "AuthSessionMissingError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 96, + "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L96" - } - ], - "parameters": [ - { - "id": 1762, - "name": "message", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1763, - "name": "originalError", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "unknown" - } + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L135" } ], "type": { "type": "reference", - "target": 1759, - "name": "AuthUnknownError", + "target": 1800, + "name": "AuthSessionMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1725, - "name": "AuthError.constructor" + "target": 1782, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1724, - "name": "AuthError.constructor" + "target": 1781, + "name": "CustomAuthError.constructor" } }, { - "id": 1765, + "id": 1805, "name": "code", "variant": "declaration", "kind": 1024, @@ -5067,7 +5073,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -5087,7 +5093,7 @@ { "type": "reflection", "declaration": { - "id": 1766, + "id": 1806, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5109,31 +5115,38 @@ }, "inheritedFrom": { "type": "reference", - "target": 1729, - "name": "AuthError.code" + "target": 1789, + "name": "CustomAuthError.code" } }, { - "id": 1764, - "name": "originalError", + "id": 1803, + "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 94, + "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { "type": "intrinsic", - "name": "unknown" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 1787, + "name": "CustomAuthError.name" } }, { - "id": 1767, + "id": 1804, "name": "status", "variant": "declaration", "kind": 1024, @@ -5151,32 +5164,23 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 24, + "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": 1731, - "name": "AuthError.status" + "target": 1788, + "name": "CustomAuthError.status" } }, { - "id": 1769, + "id": 1808, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -5188,12 +5192,12 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1770, + "id": 1809, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -5205,20 +5209,20 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1771, + "id": 1810, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1775, + "id": 1814, "name": "code", "variant": "declaration", "kind": 1024, @@ -5228,7 +5232,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -5248,7 +5252,7 @@ { "type": "reflection", "declaration": { - "id": 1776, + "id": 1815, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5270,7 +5274,7 @@ } }, { - "id": 1773, + "id": 1812, "name": "message", "variant": "declaration", "kind": 1024, @@ -5280,7 +5284,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -5289,7 +5293,7 @@ } }, { - "id": 1772, + "id": 1811, "name": "name", "variant": "declaration", "kind": 1024, @@ -5299,7 +5303,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -5308,7 +5312,7 @@ } }, { - "id": 1774, + "id": 1813, "name": "status", "variant": "declaration", "kind": 1024, @@ -5318,7 +5322,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -5339,7 +5343,7 @@ "groups": [ { "title": "Properties", - "children": [1775, 1773, 1772, 1774] + "children": [1814, 1812, 1811, 1813] } ], "sources": [ @@ -5347,59 +5351,59 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1734, - "name": "AuthError.toJSON" + "target": 1793, + "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1733, - "name": "AuthError.toJSON" + "target": 1792, + "name": "CustomAuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [1760] + "children": [1801] }, { "title": "Properties", - "children": [1765, 1764, 1767] + "children": [1805, 1803, 1804] }, { "title": "Methods", - "children": [1769] + "children": [1808] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 93, + "line": 134, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L134" } ], "extendedTypes": [ { "type": "reference", - "target": 1723, - "name": "AuthError", + "target": 1780, + "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1938, - "name": "AuthWeakPasswordError", + "id": 1762, + "name": "AuthUnknownError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5407,7 +5411,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a supplied password is considered weak." + "text": "Wraps non-standard errors so callers can inspect the root cause." } ], "blockTags": [ @@ -5416,7 +5420,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" + "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" } ] } @@ -5424,7 +5428,7 @@ }, "children": [ { - "id": 1939, + "id": 1763, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5432,29 +5436,29 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 321, + "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L96" } ], "signatures": [ { - "id": 1940, - "name": "AuthWeakPasswordError", + "id": 1764, + "name": "AuthUnknownError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 321, + "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L321" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L96" } ], "parameters": [ { - "id": 1941, + "id": 1765, "name": "message", "variant": "param", "kind": 32768, @@ -5465,65 +5469,38 @@ } }, { - "id": 1942, - "name": "status", + "id": 1766, + "name": "originalError", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1943, - "name": "reasons", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "name": "unknown" } } ], "type": { "type": "reference", - "target": 1938, - "name": "AuthWeakPasswordError", + "target": 1762, + "name": "AuthUnknownError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1779, - "name": "CustomAuthError.constructor" + "target": 1728, + "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1778, - "name": "CustomAuthError.constructor" + "target": 1727, + "name": "AuthError.constructor" } }, { - "id": 1956, + "id": 1768, "name": "code", "variant": "declaration", "kind": 1024, @@ -5552,7 +5529,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -5572,7 +5549,7 @@ { "type": "reflection", "declaration": { - "id": 1957, + "id": 1769, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5594,81 +5571,31 @@ }, "inheritedFrom": { "type": "reference", - "target": 1786, - "name": "CustomAuthError.code" - } - }, - { - "id": 1954, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 114, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 1784, - "name": "CustomAuthError.name" + "target": 1732, + "name": "AuthError.code" } }, { - "id": 1944, - "name": "reasons", + "id": 1767, + "name": "originalError", "variant": "declaration", "kind": 1024, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Reasons why the password is deemed weak." - } - ] - }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 319, + "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L94" } ], "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "type": "intrinsic", + "name": "unknown" } }, { - "id": 1955, + "id": 1770, "name": "status", "variant": "declaration", "kind": 1024, @@ -5686,61 +5613,74 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 115, + "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] }, "inheritedFrom": { "type": "reference", - "target": 1785, - "name": "CustomAuthError.status" + "target": 1734, + "name": "AuthError.status" } }, { - "id": 1945, + "id": 1772, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 327, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "signatures": [ { - "id": 1946, + "id": 1773, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 327, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ], "type": { "type": "reflection", "declaration": { - "id": 1947, + "id": 1774, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1951, + "id": 1778, "name": "code", "variant": "declaration", "kind": 1024, @@ -5748,9 +5688,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 331, + "line": 39, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" } ], "type": { @@ -5770,7 +5710,7 @@ { "type": "reflection", "declaration": { - "id": 1952, + "id": 1779, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5792,7 +5732,7 @@ } }, { - "id": 1949, + "id": 1776, "name": "message", "variant": "declaration", "kind": 1024, @@ -5800,9 +5740,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 329, + "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -5811,7 +5751,7 @@ } }, { - "id": 1948, + "id": 1775, "name": "name", "variant": "declaration", "kind": 1024, @@ -5819,9 +5759,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 328, + "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -5830,42 +5770,7 @@ } }, { - "id": 1953, - "name": "reasons", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 332, - "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L332" - } - ], - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } - } - }, - { - "id": 1950, + "id": 1777, "name": "status", "variant": "declaration", "kind": 1024, @@ -5873,9 +5778,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 330, + "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -5896,67 +5801,67 @@ "groups": [ { "title": "Properties", - "children": [1951, 1949, 1948, 1953, 1950] + "children": [1778, 1776, 1775, 1777] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 327, + "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1790, - "name": "CustomAuthError.toJSON" + "target": 1737, + "name": "AuthError.toJSON" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1789, - "name": "CustomAuthError.toJSON" + "target": 1736, + "name": "AuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [1939] + "children": [1763] }, { "title": "Properties", - "children": [1956, 1954, 1944, 1955] + "children": [1768, 1767, 1770] }, { "title": "Methods", - "children": [1945] + "children": [1772] } ], "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 315, + "line": 93, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L93" } ], "extendedTypes": [ { "type": "reference", - "target": 1777, - "name": "CustomAuthError", + "target": 1726, + "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 1777, - "name": "CustomAuthError", + "id": 1958, + "name": "AuthWeakPasswordError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5964,7 +5869,7 @@ "summary": [ { "kind": "text", - "text": "Flexible error class used to create named auth errors at runtime." + "text": "Error thrown when a supplied password is considered weak." } ], "blockTags": [ @@ -5973,7 +5878,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" } ] } @@ -5981,7 +5886,7 @@ }, "children": [ { - "id": 1778, + "id": 1959, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5989,29 +5894,29 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 117, + "line": 353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L353" } ], "signatures": [ { - "id": 1779, - "name": "CustomAuthError", + "id": 1960, + "name": "AuthWeakPasswordError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 117, + "line": 353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L353" } ], "parameters": [ { - "id": 1780, + "id": 1961, "name": "message", "variant": "param", "kind": 32768, @@ -6022,18 +5927,7 @@ } }, { - "id": 1781, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1782, + "id": 1962, "name": "status", "variant": "param", "kind": 32768, @@ -6044,47 +5938,54 @@ } }, { - "id": 1783, - "name": "code", + "id": 1963, + "name": "reasons", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } } } ], "type": { "type": "reference", - "target": 1777, - "name": "CustomAuthError", + "target": 1958, + "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 1725, - "name": "AuthError.constructor" + "target": 1782, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 1724, - "name": "AuthError.constructor" + "target": 1781, + "name": "CustomAuthError.constructor" } }, { - "id": 1786, + "id": 1976, "name": "code", "variant": "declaration", "kind": 1024, @@ -6113,7 +6014,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -6133,7 +6034,7 @@ { "type": "reflection", "declaration": { - "id": 1787, + "id": 1977, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6155,40 +6056,87 @@ }, "inheritedFrom": { "type": "reference", - "target": 1729, - "name": "AuthError.code" + "target": 1789, + "name": "CustomAuthError.code" } }, { - "id": 1784, + "id": 1974, "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" } ], "type": { "type": "intrinsic", "name": "string" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": -1, - "name": "AuthError.name" + "target": 1787, + "name": "CustomAuthError.name" } }, { - "id": 1785, - "name": "status", + "id": 1964, + "name": "reasons", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reasons why the password is deemed weak." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 351, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L351" + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 1975, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, "comment": { "summary": [ { @@ -6202,63 +6150,59 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" } ], "type": { "type": "intrinsic", "name": "number" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 1731, - "name": "AuthError.status" + "target": 1788, + "name": "CustomAuthError.status" } }, { - "id": 1789, + "id": 1965, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 35, + "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L359" } ], "signatures": [ { - "id": 1790, + "id": 1966, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 35, + "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L359" } ], "type": { "type": "reflection", "declaration": { - "id": 1791, + "id": 1967, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1795, + "id": 1971, "name": "code", "variant": "declaration", "kind": 1024, @@ -6266,9 +6210,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 39, + "line": 363, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L363" } ], "type": { @@ -6288,7 +6232,7 @@ { "type": "reflection", "declaration": { - "id": 1796, + "id": 1972, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6310,7 +6254,525 @@ } }, { - "id": 1793, + "id": 1969, + "name": "message", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 361, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L361" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1968, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 360, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L360" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1973, + "name": "reasons", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 364, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L364" + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 1970, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 362, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L362" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [1971, 1969, 1968, 1973, 1970] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 359, + "character": 12, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L359" + } + ] + } + }, + "overwrites": { + "type": "reference", + "target": 1793, + "name": "CustomAuthError.toJSON" + } + } + ], + "overwrites": { + "type": "reference", + "target": 1792, + "name": "CustomAuthError.toJSON" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [1959] + }, + { + "title": "Properties", + "children": [1976, 1974, 1964, 1975] + }, + { + "title": "Methods", + "children": [1965] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 347, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L347" + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 1780, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + } + ] + }, + { + "id": 1780, + "name": "CustomAuthError", + "variant": "declaration", + "kind": 128, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Flexible error class used to create named auth errors at runtime." + } + ], + "blockTags": [ + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + } + ] + } + ] + }, + "children": [ + { + "id": 1781, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 117, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L117" + } + ], + "signatures": [ + { + "id": 1782, + "name": "CustomAuthError", + "variant": "signature", + "kind": 16384, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 117, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L117" + } + ], + "parameters": [ + { + "id": 1783, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1784, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1785, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1786, + "name": "code", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "type": { + "type": "reference", + "target": 1780, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + }, + "overwrites": { + "type": "reference", + "target": 1728, + "name": "AuthError.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "target": 1727, + "name": "AuthError.constructor" + } + }, + { + "id": 1789, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#status" + }, + { + "kind": "text", + "text": " will also be undefined." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 21, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L21" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 1790, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 1732, + "name": "AuthError.code" + } + }, + { + "id": 1787, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 114, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L114" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "AuthError.name" + } + }, + { + "id": 1788, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP status code that caused the error." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 115, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L115" + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "overwrites": { + "type": "reference", + "target": 1734, + "name": "AuthError.status" + } + }, + { + "id": 1792, + "name": "toJSON", + "variant": "declaration", + "kind": 2048, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 35, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" + } + ], + "signatures": [ + { + "id": 1793, + "name": "toJSON", + "variant": "signature", + "kind": 4096, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 35, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1794, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 1798, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 39, + "character": 4, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L39" + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 1799, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + } + ] + } + }, + { + "id": 1796, "name": "message", "variant": "declaration", "kind": 1024, @@ -6320,7 +6782,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L37" } ], "type": { @@ -6329,7 +6791,7 @@ } }, { - "id": 1792, + "id": 1795, "name": "name", "variant": "declaration", "kind": 1024, @@ -6339,7 +6801,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L36" } ], "type": { @@ -6348,7 +6810,7 @@ } }, { - "id": 1794, + "id": 1797, "name": "status", "variant": "declaration", "kind": 1024, @@ -6358,7 +6820,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 38, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L38" } ], "type": { @@ -6379,7 +6841,7 @@ "groups": [ { "title": "Properties", - "children": [1795, 1793, 1792, 1794] + "children": [1798, 1796, 1795, 1797] } ], "sources": [ @@ -6387,21 +6849,21 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 35, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L35" } ] } }, "inheritedFrom": { "type": "reference", - "target": 1734, + "target": 1737, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 1733, + "target": 1736, "name": "AuthError.toJSON" } } @@ -6409,15 +6871,15 @@ "groups": [ { "title": "Constructors", - "children": [1778] + "children": [1781] }, { "title": "Properties", - "children": [1786, 1784, 1785] + "children": [1789, 1787, 1788] }, { "title": "Methods", - "children": [1789] + "children": [1792] } ], "sources": [ @@ -6425,13 +6887,13 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 113, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L113" } ], "extendedTypes": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -6439,47 +6901,52 @@ "extendedBy": [ { "type": "reference", - "target": 1797, + "target": 1800, "name": "AuthSessionMissingError" }, { "type": "reference", - "target": 1813, + "target": 1816, "name": "AuthInvalidTokenResponseError" }, { "type": "reference", - "target": 1829, + "target": 1832, "name": "AuthInvalidCredentialsError" }, { "type": "reference", - "target": 1846, + "target": 1849, "name": "AuthImplicitGrantRedirectError" }, { "type": "reference", - "target": 1875, + "target": 1878, "name": "AuthPKCEGrantCodeExchangeError" }, { "type": "reference", - "target": 1904, + "target": 1907, "name": "AuthPKCECodeVerifierMissingError" }, { "type": "reference", - "target": 1920, + "target": 1923, "name": "AuthRetryableFetchError" }, { "type": "reference", - "target": 1938, + "target": 1941, + "name": "AuthRefreshDiscardedError" + }, + { + "type": "reference", + "target": 1958, "name": "AuthWeakPasswordError" }, { "type": "reference", - "target": 1959, + "target": 1979, "name": "AuthInvalidJwtError" } ] @@ -6500,9 +6967,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 100, + "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "signatures": [ @@ -6545,9 +7012,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 100, + "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L92" } ], "parameters": [ @@ -6577,9 +7044,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 111, + "line": 103, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L103" } ], "type": { @@ -6600,9 +7067,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 110, + "line": 102, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L102" } ], "type": { @@ -6829,9 +7296,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 107, + "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "type": { @@ -6845,9 +7312,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 107, + "line": 99, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L99" } ], "indexSignatures": [ @@ -6860,9 +7327,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 108, + "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L100" } ], "parameters": [ @@ -6897,9 +7364,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 106, + "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L98" } ], "type": { @@ -6918,9 +7385,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 105, + "line": 97, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ] } @@ -6956,7 +7423,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L55" } ], "type": { @@ -6985,7 +7452,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L46" } ], "type": { @@ -7014,7 +7481,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L52" } ], "type": { @@ -7051,7 +7518,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L62" } ], "type": { @@ -7062,7 +7529,7 @@ } }, { - "id": 58, + "id": 55, "name": "createUser", "variant": "declaration", "kind": 2048, @@ -7070,14 +7537,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 493, + "line": 485, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L485" } ], "signatures": [ { - "id": 59, + "id": 56, "name": "createUser", "variant": "signature", "kind": 4096, @@ -7229,14 +7696,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 493, + "line": 485, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L485" } ], "parameters": [ { - "id": 60, + "id": 57, "name": "attributes", "variant": "param", "kind": 32768, @@ -7270,7 +7737,7 @@ ] }, { - "id": 82, + "id": 79, "name": "deleteUser", "variant": "declaration", "kind": 2048, @@ -7278,14 +7745,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 847, + "line": 839, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L839" } ], "signatures": [ { - "id": 83, + "id": 80, "name": "deleteUser", "variant": "signature", "kind": 4096, @@ -7377,14 +7844,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 847, + "line": 839, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L839" } ], "parameters": [ { - "id": 84, + "id": 81, "name": "id", "variant": "param", "kind": 32768, @@ -7403,7 +7870,7 @@ } }, { - "id": 85, + "id": 82, "name": "shouldSoftDelete", "variant": "param", "kind": 32768, @@ -7452,7 +7919,7 @@ ] }, { - "id": 55, + "id": 52, "name": "generateLink", "variant": "declaration", "kind": 2048, @@ -7460,14 +7927,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 383, + "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L375" } ], "signatures": [ { - "id": 56, + "id": 53, "name": "generateLink", "variant": "signature", "kind": 4096, @@ -7687,14 +8154,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 383, + "line": 375, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L375" } ], "parameters": [ { - "id": 57, + "id": 54, "name": "params", "variant": "param", "kind": 32768, @@ -7728,7 +8195,7 @@ ] }, { - "id": 75, + "id": 72, "name": "getUserById", "variant": "declaration", "kind": 2048, @@ -7736,14 +8203,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 636, + "line": 628, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L628" } ], "signatures": [ { - "id": 76, + "id": 73, "name": "getUserById", "variant": "signature", "kind": 4096, @@ -7827,14 +8294,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 636, + "line": 628, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L628" } ], "parameters": [ { - "id": 77, + "id": 74, "name": "uid", "variant": "param", "kind": 32768, @@ -7882,7 +8349,7 @@ ] }, { - "id": 48, + "id": 45, "name": "inviteUserByEmail", "variant": "declaration", "kind": 2048, @@ -7890,14 +8357,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 240, + "line": 232, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" } ], "signatures": [ { - "id": 49, + "id": 46, "name": "inviteUserByEmail", "variant": "signature", "kind": 4096, @@ -7981,14 +8448,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 240, + "line": 232, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L232" } ], "parameters": [ { - "id": 50, + "id": 47, "name": "email", "variant": "param", "kind": 32768, @@ -8007,7 +8474,7 @@ } }, { - "id": 51, + "id": 48, "name": "options", "variant": "param", "kind": 32768, @@ -8023,14 +8490,14 @@ "type": { "type": "reflection", "declaration": { - "id": 52, + "id": 49, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 53, + "id": 50, "name": "data", "variant": "declaration", "kind": 1024, @@ -8056,9 +8523,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 244, + "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L236" } ], "type": { @@ -8067,7 +8534,7 @@ } }, { - "id": 54, + "id": 51, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -8085,9 +8552,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 247, + "line": 239, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L239" } ], "type": { @@ -8099,15 +8566,15 @@ "groups": [ { "title": "Properties", - "children": [53, 54] + "children": [50, 51] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 242, + "line": 234, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L234" } ] } @@ -8136,7 +8603,7 @@ ] }, { - "id": 61, + "id": 58, "name": "listUsers", "variant": "declaration", "kind": 2048, @@ -8144,14 +8611,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 534, + "line": 526, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L526" } ], "signatures": [ { - "id": 62, + "id": 59, "name": "listUsers", "variant": "signature", "kind": 4096, @@ -8224,14 +8691,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 534, + "line": 526, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L526" } ], "parameters": [ { - "id": 63, + "id": 60, "name": "params", "variant": "param", "kind": 32768, @@ -8283,14 +8750,14 @@ { "type": "reflection", "declaration": { - "id": 64, + "id": 61, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 65, + "id": 62, "name": "data", "variant": "declaration", "kind": 1024, @@ -8298,9 +8765,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -8309,14 +8776,14 @@ { "type": "reflection", "declaration": { - "id": 66, + "id": 63, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 68, + "id": 65, "name": "aud", "variant": "declaration", "kind": 1024, @@ -8324,9 +8791,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -8335,7 +8802,7 @@ } }, { - "id": 67, + "id": 64, "name": "users", "variant": "declaration", "kind": 1024, @@ -8343,9 +8810,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -8362,15 +8829,15 @@ "groups": [ { "title": "Properties", - "children": [68, 67] + "children": [65, 64] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ] } @@ -8385,7 +8852,7 @@ } }, { - "id": 69, + "id": 66, "name": "error", "variant": "declaration", "kind": 1024, @@ -8393,9 +8860,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ], "type": { @@ -8407,15 +8874,15 @@ "groups": [ { "title": "Properties", - "children": [65, 69] + "children": [62, 66] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 537, + "line": 529, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L529" } ] } @@ -8423,14 +8890,14 @@ { "type": "reflection", "declaration": { - "id": 70, + "id": 67, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 71, + "id": 68, "name": "data", "variant": "declaration", "kind": 1024, @@ -8438,22 +8905,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ], "type": { "type": "reflection", "declaration": { - "id": 72, + "id": 69, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 73, + "id": 70, "name": "users", "variant": "declaration", "kind": 1024, @@ -8461,9 +8928,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ], "type": { @@ -8474,22 +8941,22 @@ "groups": [ { "title": "Properties", - "children": [73] + "children": [70] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ] } } }, { - "id": 74, + "id": 71, "name": "error", "variant": "declaration", "kind": 1024, @@ -8497,14 +8964,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -8513,15 +8980,15 @@ "groups": [ { "title": "Properties", - "children": [71, 74] + "children": [68, 71] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 538, + "line": 530, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L530" } ] } @@ -8536,7 +9003,7 @@ ] }, { - "id": 41, + "id": 38, "name": "signOut", "variant": "declaration", "kind": 2048, @@ -8544,14 +9011,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 150, + "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L142" } ], "signatures": [ { - "id": 42, + "id": 39, "name": "signOut", "variant": "signature", "kind": 4096, @@ -8587,14 +9054,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 150, + "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L142" } ], "parameters": [ { - "id": 43, + "id": 40, "name": "jwt", "variant": "param", "kind": 32768, @@ -8613,7 +9080,7 @@ } }, { - "id": 44, + "id": 41, "name": "scope", "variant": "param", "kind": 32768, @@ -8656,14 +9123,14 @@ { "type": "reflection", "declaration": { - "id": 45, + "id": 42, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 46, + "id": 43, "name": "data", "variant": "declaration", "kind": 1024, @@ -8671,9 +9138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 153, + "line": 145, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L145" } ], "type": { @@ -8682,7 +9149,7 @@ } }, { - "id": 47, + "id": 44, "name": "error", "variant": "declaration", "kind": 1024, @@ -8690,9 +9157,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 153, + "line": 145, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L145" } ], "type": { @@ -8704,7 +9171,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -8715,15 +9182,15 @@ "groups": [ { "title": "Properties", - "children": [46, 47] + "children": [43, 44] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 153, + "line": 145, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L145" } ] } @@ -8736,7 +9203,7 @@ ] }, { - "id": 78, + "id": 75, "name": "updateUserById", "variant": "declaration", "kind": 2048, @@ -8744,14 +9211,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 797, + "line": 789, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L789" } ], "signatures": [ { - "id": 79, + "id": 76, "name": "updateUserById", "variant": "signature", "kind": 4096, @@ -8817,7 +9284,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient.refreshSession", - "target": 412 + "target": 410 }, { "kind": "text", @@ -8835,7 +9302,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient.updateUser", - "target": 388 + "target": 386 }, { "kind": "text", @@ -8953,14 +9420,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", - "line": 797, + "line": 789, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L789" } ], "parameters": [ { - "id": 80, + "id": 77, "name": "uid", "variant": "param", "kind": 32768, @@ -8979,7 +9446,7 @@ } }, { - "id": 81, + "id": 78, "name": "attributes", "variant": "param", "kind": 32768, @@ -9040,13 +9507,13 @@ }, { "title": "Methods", - "children": [58, 82, 55, 75, 48, 61, 41, 78] + "children": [55, 79, 52, 72, 45, 58, 38, 75] } ], "categories": [ { "title": "Auth", - "children": [58, 82, 55, 75, 48, 61, 41, 78] + "children": [55, 79, 52, 72, 45, 58, 38, 75] }, { "title": "Other", @@ -9058,19 +9525,19 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 44, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueAdminApi.ts#L44" } ] }, { - "id": 139, + "id": 136, "name": "GoTrueClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 141, + "id": 138, "name": "constructor", "variant": "declaration", "kind": 512, @@ -9078,14 +9545,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 341, + "line": 366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L366" } ], "signatures": [ { - "id": 142, + "id": 139, "name": "GoTrueClient", "variant": "signature", "kind": 16384, @@ -9123,14 +9590,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 341, + "line": 366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L366" } ], "parameters": [ { - "id": 143, + "id": 140, "name": "options", "variant": "param", "kind": 32768, @@ -9145,7 +9612,7 @@ ], "type": { "type": "reference", - "target": 139, + "target": 136, "name": "GoTrueClient", "package": "@supabase/auth-js", "qualifiedName": "default" @@ -9154,7 +9621,7 @@ ] }, { - "id": 145, + "id": 142, "name": "admin", "variant": "declaration", "kind": 1024, @@ -9170,9 +9637,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 226, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L234" } ], "type": { @@ -9184,7 +9651,7 @@ } }, { - "id": 146, + "id": 143, "name": "mfa", "variant": "declaration", "kind": 1024, @@ -9200,9 +9667,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 230, + "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L238" } ], "type": { @@ -9213,7 +9680,7 @@ } }, { - "id": 147, + "id": 144, "name": "oauth", "variant": "declaration", "kind": 1024, @@ -9229,9 +9696,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 236, + "line": 244, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L244" } ], "type": { @@ -9242,7 +9709,7 @@ } }, { - "id": 148, + "id": 145, "name": "passkey", "variant": "declaration", "kind": 1024, @@ -9266,9 +9733,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 243, + "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L251" } ], "type": { @@ -9279,7 +9746,155 @@ } }, { - "id": 244, + "id": 579, + "name": "dispose", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/GoTrueClient.ts", + "line": 5189, + "character": 8, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5189" + } + ], + "signatures": [ + { + "id": 580, + "name": "dispose", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tears down the client's background work: stops the auto-refresh interval,\nremoves the " + }, + { + "kind": "code", + "text": "`visibilitychange`" + }, + { + "kind": "text", + "text": " listener, closes the cross-tab\n" + }, + { + "kind": "code", + "text": "`BroadcastChannel`" + }, + { + "kind": "text", + "text": ", and clears registered " + }, + { + "kind": "code", + "text": "`onAuthStateChange`" + }, + { + "kind": "text", + "text": " subscribers.\n\nCall this from cleanup hooks when the client is being replaced before\nits JS realm is destroyed. React Strict Mode and HMR are the common\ncases. Any in-flight " + }, + { + "kind": "code", + "text": "`fetch`" + }, + { + "kind": "text", + "text": " calls continue to completion and may still\nwrite to storage; dispose doesn't abort them or erase storage.\n\nLifecycle caveat: because in-flight refreshes are not aborted, a\ndisposed instance can still persist a rotated session to storage after\n" + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " returns. A subsequent " + }, + { + "kind": "code", + "text": "`createClient`" + }, + { + "kind": "text", + "text": " against the same\n" + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " will pick up that session on its next read. If you need\nstrict isolation between client lifecycles, await any pending auth\noperation before calling " + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " (or change the " + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " for\nthe replacement client).\n\nSafe to call repeatedly." + } + ], + "blockTags": [ + { + "tag": "@category", + "content": [ + { + "kind": "text", + "text": "Auth" + } + ] + }, + { + "tag": "@example", + "name": "Cleanup on React unmount", + "content": [ + { + "kind": "code", + "text": "```ts\nuseEffect(() => {\n const client = createClient(...)\n return () => { client.auth.dispose() }\n}, [])\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/GoTrueClient.ts", + "line": 5189, + "character": 8, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5189" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 242, "name": "exchangeCodeForSession", "variant": "declaration", "kind": 2048, @@ -9287,14 +9902,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1405, + "line": 1453, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1453" } ], "signatures": [ { - "id": 245, + "id": 243, "name": "exchangeCodeForSession", "variant": "signature", "kind": 4096, @@ -9369,14 +9984,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1405, + "line": 1453, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1453" } ], "parameters": [ { - "id": 246, + "id": 244, "name": "authCode", "variant": "param", "kind": 32768, @@ -9416,9 +10031,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5868, + "line": 6145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5868" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6145" } ], "signatures": [ @@ -9524,9 +10139,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5868, + "line": 6145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5868" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6145" } ], "parameters": [ @@ -9618,9 +10233,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5877, + "line": 6154, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5877" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6154" } ], "type": { @@ -9647,9 +10262,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5880, + "line": 6157, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5880" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6157" } ], "type": { @@ -9670,9 +10285,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5880, + "line": 6157, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5880" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6157" } ], "type": { @@ -9695,9 +10310,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5880, + "line": 6157, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5880" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6157" } ] } @@ -9728,9 +10343,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5874, + "line": 6151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6151" } ], "type": { @@ -9753,9 +10368,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5870, + "line": 6147, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5870" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6147" } ] } @@ -9791,9 +10406,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -9814,9 +10429,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -9835,9 +10450,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -9856,9 +10471,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ], "type": { @@ -9881,9 +10496,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5884, + "line": 6161, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6161" } ] } @@ -9898,9 +10513,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5885, + "line": 6162, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5885" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6162" } ], "type": { @@ -9918,9 +10533,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5883, + "line": 6160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5883" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6160" } ] } @@ -9943,9 +10558,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5887, + "line": 6164, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6164" } ], "type": { @@ -9962,14 +10577,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5887, + "line": 6164, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6164" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -9984,9 +10599,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5887, + "line": 6164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6164" } ] } @@ -10009,9 +10624,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5888, + "line": 6165, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5888" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6165" } ], "type": { @@ -10028,9 +10643,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5888, + "line": 6165, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5888" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6165" } ], "type": { @@ -10048,9 +10663,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5888, + "line": 6165, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5888" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6165" } ] } @@ -10065,7 +10680,7 @@ ] }, { - "id": 319, + "id": 317, "name": "getSession", "variant": "declaration", "kind": 2048, @@ -10073,14 +10688,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2661, + "line": 2719, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2719" } ], "signatures": [ { - "id": 320, + "id": 318, "name": "getSession", "variant": "signature", "kind": 4096, @@ -10156,15 +10771,7 @@ }, { "kind": "text", - "text": " to fetch the user object directly from the Auth server for this purpose.\n- When using in a browser, this function is synchronized across 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 " - }, - { - "kind": "code", - "text": "`lock`" - }, - { - "kind": "text", - "text": " property, if necessary, to make sure there are no race conditions while the session is being refreshed." + "text": " to fetch the user object directly from the Auth server for this purpose.\n- Cross-tab refresh races are handled by the GoTrue server (the rotated token from the first tab is returned to subsequent tabs via the parent-of-active mechanism), so no client-side serialization is needed." } ] }, @@ -10196,9 +10803,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2661, + "line": 2719, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2661" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2719" } ], "type": { @@ -10214,14 +10821,14 @@ { "type": "reflection", "declaration": { - "id": 321, + "id": 319, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 322, + "id": 320, "name": "data", "variant": "declaration", "kind": 1024, @@ -10229,22 +10836,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2754, + "line": 2820, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2820" } ], "type": { "type": "reflection", "declaration": { - "id": 323, + "id": 321, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 324, + "id": 322, "name": "session", "variant": "declaration", "kind": 1024, @@ -10252,9 +10859,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2755, + "line": 2821, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2821" } ], "type": { @@ -10268,22 +10875,22 @@ "groups": [ { "title": "Properties", - "children": [324] + "children": [322] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2754, + "line": 2820, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2754" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2820" } ] } } }, { - "id": 325, + "id": 323, "name": "error", "variant": "declaration", "kind": 1024, @@ -10291,9 +10898,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2757, + "line": 2823, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2757" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2823" } ], "type": { @@ -10305,15 +10912,15 @@ "groups": [ { "title": "Properties", - "children": [322, 325] + "children": [320, 323] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2753, + "line": 2819, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2753" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2819" } ] } @@ -10321,14 +10928,14 @@ { "type": "reflection", "declaration": { - "id": 326, + "id": 324, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 327, + "id": 325, "name": "data", "variant": "declaration", "kind": 1024, @@ -10336,22 +10943,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2760, + "line": 2826, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2826" } ], "type": { "type": "reflection", "declaration": { - "id": 328, + "id": 326, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 329, + "id": 327, "name": "session", "variant": "declaration", "kind": 1024, @@ -10359,9 +10966,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2761, + "line": 2827, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2761" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2827" } ], "type": { @@ -10373,22 +10980,22 @@ "groups": [ { "title": "Properties", - "children": [329] + "children": [327] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2760, + "line": 2826, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2760" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2826" } ] } } }, { - "id": 330, + "id": 328, "name": "error", "variant": "declaration", "kind": 1024, @@ -10396,14 +11003,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2763, + "line": 2829, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2829" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -10412,15 +11019,15 @@ "groups": [ { "title": "Properties", - "children": [327, 330] + "children": [325, 328] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2759, + "line": 2825, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2825" } ] } @@ -10428,14 +11035,14 @@ { "type": "reflection", "declaration": { - "id": 331, + "id": 329, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 332, + "id": 330, "name": "data", "variant": "declaration", "kind": 1024, @@ -10443,22 +11050,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2766, + "line": 2832, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2832" } ], "type": { "type": "reflection", "declaration": { - "id": 333, + "id": 331, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 334, + "id": 332, "name": "session", "variant": "declaration", "kind": 1024, @@ -10466,9 +11073,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2767, + "line": 2833, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2767" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2833" } ], "type": { @@ -10480,22 +11087,22 @@ "groups": [ { "title": "Properties", - "children": [334] + "children": [332] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2766, + "line": 2832, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2766" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2832" } ] } } }, { - "id": 335, + "id": 333, "name": "error", "variant": "declaration", "kind": 1024, @@ -10503,9 +11110,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2769, + "line": 2835, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2835" } ], "type": { @@ -10517,15 +11124,15 @@ "groups": [ { "title": "Properties", - "children": [332, 335] + "children": [330, 333] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2765, + "line": 2831, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2831" } ] } @@ -10540,7 +11147,7 @@ ] }, { - "id": 382, + "id": 380, "name": "getUser", "variant": "declaration", "kind": 2048, @@ -10548,14 +11155,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2972, + "line": 3042, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3042" } ], "signatures": [ { - "id": 383, + "id": 381, "name": "getUser", "variant": "signature", "kind": 4096, @@ -10640,14 +11247,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2972, + "line": 3042, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2972" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3042" } ], "parameters": [ { - "id": 384, + "id": 382, "name": "jwt", "variant": "param", "kind": 32768, @@ -10689,7 +11296,7 @@ ] }, { - "id": 501, + "id": 499, "name": "getUserIdentities", "variant": "declaration", "kind": 2048, @@ -10697,14 +11304,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4241, + "line": 4337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4337" } ], "signatures": [ { - "id": 502, + "id": 500, "name": "getUserIdentities", "variant": "signature", "kind": 4096, @@ -10771,9 +11378,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4241, + "line": 4337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4337" } ], "type": { @@ -10789,14 +11396,14 @@ { "type": "reflection", "declaration": { - "id": 503, + "id": 501, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 504, + "id": 502, "name": "data", "variant": "declaration", "kind": 1024, @@ -10804,22 +11411,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4243, + "line": 4339, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4339" } ], "type": { "type": "reflection", "declaration": { - "id": 505, + "id": 503, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 506, + "id": 504, "name": "identities", "variant": "declaration", "kind": 1024, @@ -10827,9 +11434,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4244, + "line": 4340, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4244" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4340" } ], "type": { @@ -10846,22 +11453,22 @@ "groups": [ { "title": "Properties", - "children": [506] + "children": [504] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4243, + "line": 4339, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4339" } ] } } }, { - "id": 507, + "id": 505, "name": "error", "variant": "declaration", "kind": 1024, @@ -10869,9 +11476,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4246, + "line": 4342, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4342" } ], "type": { @@ -10883,15 +11490,15 @@ "groups": [ { "title": "Properties", - "children": [504, 507] + "children": [502, 505] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4242, + "line": 4338, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4338" } ] } @@ -10899,14 +11506,14 @@ { "type": "reflection", "declaration": { - "id": 508, + "id": 506, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 509, + "id": 507, "name": "data", "variant": "declaration", "kind": 1024, @@ -10914,9 +11521,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4248, + "line": 4344, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4344" } ], "type": { @@ -10925,7 +11532,7 @@ } }, { - "id": 510, + "id": 508, "name": "error", "variant": "declaration", "kind": 1024, @@ -10933,14 +11540,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4248, + "line": 4344, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4344" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -10949,15 +11556,15 @@ "groups": [ { "title": "Properties", - "children": [509, 510] + "children": [507, 508] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4248, + "line": 4344, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4344" } ] } @@ -10972,7 +11579,7 @@ ] }, { - "id": 228, + "id": 226, "name": "initialize", "variant": "declaration", "kind": 2048, @@ -10980,14 +11587,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 515, + "line": 544, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L544" } ], "signatures": [ { - "id": 229, + "id": 227, "name": "initialize", "variant": "signature", "kind": 4096, @@ -11014,9 +11621,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 515, + "line": 544, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L544" } ], "type": { @@ -11040,7 +11647,7 @@ ] }, { - "id": 215, + "id": 213, "name": "isThrowOnErrorEnabled", "variant": "declaration", "kind": 2048, @@ -11050,14 +11657,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 477, + "line": 506, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L506" } ], "signatures": [ { - "id": 216, + "id": 214, "name": "isThrowOnErrorEnabled", "variant": "signature", "kind": 4096, @@ -11073,9 +11680,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 477, + "line": 506, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L506" } ], "type": { @@ -11086,7 +11693,7 @@ ] }, { - "id": 511, + "id": 509, "name": "linkIdentity", "variant": "declaration", "kind": 2048, @@ -11164,26 +11771,26 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4266, + "line": 4362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4266" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4362" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4271, + "line": 4367, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4367" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4300, + "line": 4396, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4396" } ], "signatures": [ { - "id": 512, + "id": 510, "name": "linkIdentity", "variant": "signature", "kind": 4096, @@ -11199,14 +11806,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4266, + "line": 4362, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4266" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4362" } ], "parameters": [ { - "id": 513, + "id": 511, "name": "credentials", "variant": "param", "kind": 32768, @@ -11238,7 +11845,7 @@ } }, { - "id": 514, + "id": 512, "name": "linkIdentity", "variant": "signature", "kind": 4096, @@ -11254,14 +11861,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4271, + "line": 4367, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4367" } ], "parameters": [ { - "id": 515, + "id": 513, "name": "credentials", "variant": "param", "kind": 32768, @@ -11295,7 +11902,7 @@ ] }, { - "id": 463, + "id": 461, "name": "onAuthStateChange", "variant": "declaration", "kind": 2048, @@ -11317,23 +11924,7 @@ "content": [ { "kind": "text", - "text": "- Subscribes to important events occurring on the user's session.\n- Use on the frontend/client. It is less useful on the server.\n- Events are emitted across tabs to keep your application's UI up-to-date. Some events can fire very frequently, based on the number of tabs open. Use a quick and efficient callback function, and defer or debounce as many operations as you can to be performed outside of the callback.\n- **Important:** A callback can be an " - }, - { - "kind": "code", - "text": "`async`" - }, - { - "kind": "text", - "text": " function and it runs synchronously during the processing of the changes causing the event. You can easily create a dead-lock by using " - }, - { - "kind": "code", - "text": "`await`" - }, - { - "kind": "text", - "text": " on a call to another method of the Supabase library.\n - Avoid using " + "text": "- Subscribes to important events occurring on the user's session.\n- Use on the frontend/client. It is less useful on the server.\n- Events are emitted across tabs to keep your application's UI up-to-date. Some events can fire very frequently, based on the number of tabs open. Use a quick and efficient callback function, and defer or debounce as many operations as you can to be performed outside of the callback.\n- Callbacks can be " }, { "kind": "code", @@ -11341,31 +11932,23 @@ }, { "kind": "text", - "text": " functions as callbacks.\n - Limit the number of " + "text": " and can safely call other Supabase auth methods (" }, { "kind": "code", - "text": "`await`" + "text": "`getUser`" }, { "kind": "text", - "text": " calls in " - }, - { - "kind": "code", - "text": "`async`" - }, - { - "kind": "text", - "text": " callbacks.\n - Do not use other Supabase functions in the callback function. If you must, dispatch the functions once the callback has finished executing. Use this as a quick way to achieve this:\n " + "text": ", " }, { "kind": "code", - "text": "```js\n supabase.auth.onAuthStateChange((event, session) => {\n setTimeout(async () => {\n // await on other Supabase function here\n // this runs right after the callback has finished\n }, 0)\n })\n ```" + "text": "`setSession`" }, { "kind": "text", - "text": "\n- Emitted events:\n - " + "text": ", etc.) from inside the callback.\n- Keep callbacks quick. Events are awaited in order, so a slow callback delays subsequent events to subscribers in this tab.\n- Emitted events:\n - " }, { "kind": "code", @@ -11593,26 +12176,26 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4037, + "line": 4128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4037" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4128" } ], "signatures": [ { - "id": 464, + "id": 462, "name": "onAuthStateChange", "variant": "signature", "kind": 4096, @@ -11628,14 +12211,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ], "parameters": [ { - "id": 465, + "id": 463, "name": "callback", "variant": "param", "kind": 32768, @@ -11651,7 +12234,7 @@ "type": { "type": "reflection", "declaration": { - "id": 466, + "id": 464, "name": "__type", "variant": "declaration", "kind": 65536, @@ -11659,14 +12242,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ], "signatures": [ { - "id": 467, + "id": 465, "name": "__type", "variant": "signature", "kind": 4096, @@ -11674,14 +12257,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ], "parameters": [ { - "id": 468, + "id": 466, "name": "event", "variant": "param", "kind": 32768, @@ -11694,7 +12277,7 @@ } }, { - "id": 469, + "id": 467, "name": "session", "variant": "param", "kind": 32768, @@ -11729,14 +12312,14 @@ "type": { "type": "reflection", "declaration": { - "id": 470, + "id": 468, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 471, + "id": 469, "name": "data", "variant": "declaration", "kind": 1024, @@ -11744,22 +12327,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3831, + "line": 3929, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3929" } ], "type": { "type": "reflection", "declaration": { - "id": 472, + "id": 470, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 473, + "id": 471, "name": "subscription", "variant": "declaration", "kind": 1024, @@ -11767,9 +12350,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3831, + "line": 3929, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3929" } ], "type": { @@ -11783,15 +12366,15 @@ "groups": [ { "title": "Properties", - "children": [473] + "children": [471] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3831, + "line": 3929, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3929" } ] } @@ -11801,22 +12384,22 @@ "groups": [ { "title": "Properties", - "children": [471] + "children": [469] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3830, + "line": 3928, "character": 90, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3830" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3928" } ] } } }, { - "id": 474, + "id": 472, "name": "onAuthStateChange", "variant": "signature", "kind": 4096, @@ -11825,15 +12408,63 @@ "summary": [ { "kind": "text", - "text": "Avoid using an async function inside " + "text": "Receive a notification every time an auth event happens. Common reentry\npatterns (" }, { "kind": "code", - "text": "`onAuthStateChange`" + "text": "`getUser`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`setSession`" + }, + { + "kind": "text", + "text": ", reading the session from inside a\nhandler) complete normally. One hazard remains: calling " + }, + { + "kind": "code", + "text": "`refreshSession`" + }, + { + "kind": "text", + "text": "\n(or anything that routes through " + }, + { + "kind": "code", + "text": "`_callRefreshToken`" + }, + { + "kind": "text", + "text": ") from inside a\n" + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " handler. " + }, + { + "kind": "code", + "text": "`refreshingDeferred`" }, { "kind": "text", - "text": " as you might end\nup with a deadlock. The callback function runs inside an exclusive lock,\nso calling other Supabase Client APIs that also try to acquire the\nexclusive lock, might cause a deadlock. This behavior is observable across\ntabs. In the next major library version, this behavior will not be supported.\n\nReceive a notification every time an auth event happens." + "text": " resolves only after\n" + }, + { + "kind": "code", + "text": "`_notifyAllSubscribers`" + }, + { + "kind": "text", + "text": " returns, so the inner refresh dedupes onto the\nouter's unresolved promise and the two wait on each other." } ], "blockTags": [ @@ -11842,7 +12473,15 @@ "content": [ { "kind": "text", - "text": "Due to the possibility of deadlocks with async functions as callbacks, use the version without an async function." + "text": "Async callbacks can deadlock when they trigger a nested\nrefresh from a " + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " event. Prefer the sync overload, or move\nrefresh-triggering work outside the callback." } ] } @@ -11851,14 +12490,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ], "parameters": [ { - "id": 475, + "id": 473, "name": "callback", "variant": "param", "kind": 32768, @@ -11874,7 +12513,7 @@ "type": { "type": "reflection", "declaration": { - "id": 476, + "id": 474, "name": "__type", "variant": "declaration", "kind": 65536, @@ -11882,14 +12521,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ], "signatures": [ { - "id": 477, + "id": 475, "name": "__type", "variant": "signature", "kind": 4096, @@ -11897,14 +12536,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ], "parameters": [ { - "id": 478, + "id": 476, "name": "event", "variant": "param", "kind": 32768, @@ -11917,7 +12556,7 @@ } }, { - "id": 479, + "id": 477, "name": "session", "variant": "param", "kind": 32768, @@ -11963,14 +12602,14 @@ "type": { "type": "reflection", "declaration": { - "id": 480, + "id": 478, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 481, + "id": 479, "name": "data", "variant": "declaration", "kind": 1024, @@ -11978,22 +12617,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3847, + "line": 3948, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3948" } ], "type": { "type": "reflection", "declaration": { - "id": 482, + "id": 480, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 483, + "id": 481, "name": "subscription", "variant": "declaration", "kind": 1024, @@ -12001,9 +12640,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3847, + "line": 3948, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3948" } ], "type": { @@ -12017,15 +12656,15 @@ "groups": [ { "title": "Properties", - "children": [483] + "children": [481] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3847, + "line": 3948, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3948" } ] } @@ -12035,15 +12674,15 @@ "groups": [ { "title": "Properties", - "children": [481] + "children": [479] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3846, + "line": 3947, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3947" } ] } @@ -12052,7 +12691,7 @@ ] }, { - "id": 312, + "id": 310, "name": "reauthenticate", "variant": "declaration", "kind": 2048, @@ -12060,14 +12699,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2444, + "line": 2497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2497" } ], "signatures": [ { - "id": 313, + "id": 311, "name": "reauthenticate", "variant": "signature", "kind": 4096, @@ -12146,9 +12785,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2444, + "line": 2497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2444" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2497" } ], "type": { @@ -12172,7 +12811,7 @@ ] }, { - "id": 412, + "id": 410, "name": "refreshSession", "variant": "declaration", "kind": 2048, @@ -12180,14 +12819,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ], "signatures": [ { - "id": 413, + "id": 411, "name": "refreshSession", "variant": "signature", "kind": 4096, @@ -12256,14 +12895,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ], "parameters": [ { - "id": 414, + "id": 412, "name": "currentSession", "variant": "param", "kind": 32768, @@ -12281,14 +12920,14 @@ "type": { "type": "reflection", "declaration": { - "id": 415, + "id": 413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 416, + "id": 414, "name": "refresh_token", "variant": "declaration", "kind": 1024, @@ -12296,9 +12935,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ], "type": { @@ -12310,15 +12949,15 @@ "groups": [ { "title": "Properties", - "children": [416] + "children": [414] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3533, + "line": 3619, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3619" } ] } @@ -12354,9 +12993,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6043, + "line": 6325, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L6043" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6325" } ], "signatures": [ @@ -12396,9 +13035,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 6043, + "line": 6325, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L6043" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6325" } ], "parameters": [ @@ -12439,7 +13078,7 @@ ] }, { - "id": 316, + "id": 314, "name": "resend", "variant": "declaration", "kind": 2048, @@ -12447,14 +13086,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2535, + "line": 2593, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2593" } ], "signatures": [ { - "id": 317, + "id": 315, "name": "resend", "variant": "signature", "kind": 4096, @@ -12598,14 +13237,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2535, + "line": 2593, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2593" } ], "parameters": [ { - "id": 318, + "id": 316, "name": "credentials", "variant": "param", "kind": 32768, @@ -12639,7 +13278,7 @@ ] }, { - "id": 487, + "id": 485, "name": "resetPasswordForEmail", "variant": "declaration", "kind": 2048, @@ -12647,14 +13286,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4253, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4253" } ], "signatures": [ { - "id": 488, + "id": 486, "name": "resetPasswordForEmail", "variant": "signature", "kind": 4096, @@ -12775,14 +13414,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4157, + "line": 4253, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4253" } ], "parameters": [ { - "id": 489, + "id": 487, "name": "email", "variant": "param", "kind": 32768, @@ -12801,7 +13440,7 @@ } }, { - "id": 490, + "id": 488, "name": "options", "variant": "param", "kind": 32768, @@ -12809,14 +13448,14 @@ "type": { "type": "reflection", "declaration": { - "id": 491, + "id": 489, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 493, + "id": 491, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -12834,9 +13473,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4161, + "line": 4257, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4257" } ], "type": { @@ -12845,7 +13484,7 @@ } }, { - "id": 492, + "id": 490, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -12863,9 +13502,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4160, + "line": 4256, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4160" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4256" } ], "type": { @@ -12877,15 +13516,15 @@ "groups": [ { "title": "Properties", - "children": [493, 492] + "children": [491, 490] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4159, + "line": 4255, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4159" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4255" } ] } @@ -12906,14 +13545,14 @@ { "type": "reflection", "declaration": { - "id": 494, + "id": 492, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 495, + "id": 493, "name": "data", "variant": "declaration", "kind": 1024, @@ -12921,15 +13560,15 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4165, + "line": 4261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4165" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4261" } ], "type": { "type": "reflection", "declaration": { - "id": 496, + "id": 494, "name": "__type", "variant": "declaration", "kind": 65536, @@ -12938,7 +13577,7 @@ } }, { - "id": 497, + "id": 495, "name": "error", "variant": "declaration", "kind": 1024, @@ -12946,9 +13585,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4166, + "line": 4262, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4262" } ], "type": { @@ -12960,15 +13599,15 @@ "groups": [ { "title": "Properties", - "children": [495, 497] + "children": [493, 495] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4164, + "line": 4260, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4260" } ] } @@ -12976,14 +13615,14 @@ { "type": "reflection", "declaration": { - "id": 498, + "id": 496, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 499, + "id": 497, "name": "data", "variant": "declaration", "kind": 1024, @@ -12991,9 +13630,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4168, + "line": 4264, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4264" } ], "type": { @@ -13002,7 +13641,7 @@ } }, { - "id": 500, + "id": 498, "name": "error", "variant": "declaration", "kind": 1024, @@ -13010,14 +13649,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4168, + "line": 4264, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4264" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -13026,15 +13665,15 @@ "groups": [ { "title": "Properties", - "children": [499, 500] + "children": [497, 498] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4168, + "line": 4264, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4264" } ] } @@ -13049,7 +13688,7 @@ ] }, { - "id": 400, + "id": 398, "name": "setSession", "variant": "declaration", "kind": 2048, @@ -13057,14 +13696,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3339, + "line": 3420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3420" } ], "signatures": [ { - "id": 401, + "id": 399, "name": "setSession", "variant": "signature", "kind": 4096, @@ -13156,14 +13795,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3339, + "line": 3420, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3420" } ], "parameters": [ { - "id": 402, + "id": 400, "name": "currentSession", "variant": "param", "kind": 32768, @@ -13179,14 +13818,14 @@ "type": { "type": "reflection", "declaration": { - "id": 403, + "id": 401, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 404, + "id": 402, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -13194,9 +13833,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3340, + "line": 3421, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3340" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3421" } ], "type": { @@ -13205,7 +13844,7 @@ } }, { - "id": 405, + "id": 403, "name": "refresh_token", "variant": "declaration", "kind": 1024, @@ -13213,9 +13852,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3341, + "line": 3422, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3422" } ], "type": { @@ -13227,15 +13866,15 @@ "groups": [ { "title": "Properties", - "children": [404, 405] + "children": [402, 403] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3339, + "line": 3420, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3420" } ] } @@ -13263,7 +13902,7 @@ ] }, { - "id": 232, + "id": 230, "name": "signInAnonymously", "variant": "declaration", "kind": 2048, @@ -13271,14 +13910,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 689, + "line": 722, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L722" } ], "signatures": [ { - "id": 233, + "id": 231, "name": "signInAnonymously", "variant": "signature", "kind": 4096, @@ -13364,14 +14003,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 689, + "line": 722, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L722" } ], "parameters": [ { - "id": 234, + "id": 232, "name": "credentials", "variant": "param", "kind": 32768, @@ -13407,7 +14046,7 @@ ] }, { - "id": 300, + "id": 298, "name": "signInWithIdToken", "variant": "declaration", "kind": 2048, @@ -13415,14 +14054,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1977, + "line": 2030, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2030" } ], "signatures": [ { - "id": 301, + "id": 299, "name": "signInWithIdToken", "variant": "signature", "kind": 4096, @@ -13481,14 +14120,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1977, + "line": 2030, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2030" } ], "parameters": [ { - "id": 302, + "id": 300, "name": "credentials", "variant": "param", "kind": 32768, @@ -13522,7 +14161,7 @@ ] }, { - "id": 241, + "id": 239, "name": "signInWithOAuth", "variant": "declaration", "kind": 2048, @@ -13530,14 +14169,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1226, + "line": 1274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1274" } ], "signatures": [ { - "id": 242, + "id": 240, "name": "signInWithOAuth", "variant": "signature", "kind": 4096, @@ -13698,14 +14337,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1226, + "line": 1274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1274" } ], "parameters": [ { - "id": 243, + "id": 241, "name": "credentials", "variant": "param", "kind": 32768, @@ -13739,7 +14378,7 @@ ] }, { - "id": 303, + "id": 301, "name": "signInWithOtp", "variant": "declaration", "kind": 2048, @@ -13747,14 +14386,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2090, + "line": 2143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2143" } ], "signatures": [ { - "id": 304, + "id": 302, "name": "signInWithOtp", "variant": "signature", "kind": 4096, @@ -13932,14 +14571,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2090, + "line": 2143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2143" } ], "parameters": [ { - "id": 305, + "id": 303, "name": "credentials", "variant": "param", "kind": 32768, @@ -13981,9 +14620,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5985, + "line": 6267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5985" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6267" } ], "signatures": [ @@ -14023,9 +14662,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 5985, + "line": 6267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L5985" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L6267" } ], "parameters": [ @@ -14066,7 +14705,7 @@ ] }, { - "id": 238, + "id": 236, "name": "signInWithPassword", "variant": "declaration", "kind": 2048, @@ -14074,14 +14713,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1087, + "line": 1135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1135" } ], "signatures": [ { - "id": 239, + "id": 237, "name": "signInWithPassword", "variant": "signature", "kind": 4096, @@ -14144,20 +14783,103 @@ "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n phone: '+13334445555',\n password: 'some-password',\n})\n```" } ] + }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nLog the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so fields like " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": ", and " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": " aren't hidden. The " + }, + { + "kind": "code", + "text": "`error.code`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`'invalid_credentials'`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`'email_not_confirmed'`" + }, + { + "kind": "text", + "text": ") is often more useful for branching than " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": ", and the full object surfaces both." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n email: 'example@email.com',\n password: 'example-password',\n})\nif (error) {\n console.error(error)\n return\n}\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1087, + "line": 1135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1087" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1135" } ], "parameters": [ { - "id": 240, + "id": 238, "name": "credentials", "variant": "param", "kind": 32768, @@ -14191,7 +14913,7 @@ ] }, { - "id": 309, + "id": 307, "name": "signInWithSSO", "variant": "declaration", "kind": 2048, @@ -14199,14 +14921,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2381, + "line": 2434, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2434" } ], "signatures": [ { - "id": 310, + "id": 308, "name": "signInWithSSO", "variant": "signature", "kind": 4096, @@ -14278,14 +15000,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2381, + "line": 2434, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2434" } ], "parameters": [ { - "id": 311, + "id": 309, "name": "params", "variant": "param", "kind": 32768, @@ -14319,7 +15041,7 @@ ] }, { - "id": 247, + "id": 245, "name": "signInWithWeb3", "variant": "declaration", "kind": 2048, @@ -14327,14 +15049,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1501, + "line": 1554, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1554" } ], "signatures": [ { - "id": 248, + "id": 246, "name": "signInWithWeb3", "variant": "signature", "kind": 4096, @@ -14419,14 +15141,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1501, + "line": 1554, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1554" } ], "parameters": [ { - "id": 249, + "id": 247, "name": "credentials", "variant": "param", "kind": 32768, @@ -14452,14 +15174,14 @@ { "type": "reflection", "declaration": { - "id": 250, + "id": 248, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 251, + "id": 249, "name": "data", "variant": "declaration", "kind": 1024, @@ -14467,22 +15189,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ], "type": { "type": "reflection", "declaration": { - "id": 252, + "id": 250, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 253, + "id": 251, "name": "session", "variant": "declaration", "kind": 1024, @@ -14490,9 +15212,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ], "type": { @@ -14503,7 +15225,7 @@ } }, { - "id": 254, + "id": 252, "name": "user", "variant": "declaration", "kind": 1024, @@ -14511,9 +15233,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ], "type": { @@ -14527,22 +15249,22 @@ "groups": [ { "title": "Properties", - "children": [253, 254] + "children": [251, 252] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1503, + "line": 1556, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ] } } }, { - "id": 255, + "id": 253, "name": "error", "variant": "declaration", "kind": 1024, @@ -14550,9 +15272,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1504, + "line": 1557, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1504" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1557" } ], "type": { @@ -14564,15 +15286,15 @@ "groups": [ { "title": "Properties", - "children": [251, 255] + "children": [249, 253] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1502, + "line": 1555, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1555" } ] } @@ -14580,14 +15302,14 @@ { "type": "reflection", "declaration": { - "id": 256, + "id": 254, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 257, + "id": 255, "name": "data", "variant": "declaration", "kind": 1024, @@ -14595,22 +15317,22 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { "type": "reflection", "declaration": { - "id": 258, + "id": 256, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 259, + "id": 257, "name": "session", "variant": "declaration", "kind": 1024, @@ -14618,9 +15340,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { @@ -14629,7 +15351,7 @@ } }, { - "id": 260, + "id": 258, "name": "user", "variant": "declaration", "kind": 1024, @@ -14637,9 +15359,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { @@ -14651,22 +15373,22 @@ "groups": [ { "title": "Properties", - "children": [259, 260] + "children": [257, 258] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ] } } }, { - "id": 261, + "id": 259, "name": "error", "variant": "declaration", "kind": 1024, @@ -14674,14 +15396,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14690,15 +15412,15 @@ "groups": [ { "title": "Properties", - "children": [257, 261] + "children": [255, 259] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 1506, + "line": 1559, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L1559" } ] } @@ -14713,7 +15435,7 @@ ] }, { - "id": 453, + "id": 451, "name": "signOut", "variant": "declaration", "kind": 2048, @@ -14721,14 +15443,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ], "signatures": [ { - "id": 454, + "id": 452, "name": "signOut", "variant": "signature", "kind": 4096, @@ -14882,14 +15604,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ], "parameters": [ { - "id": 455, + "id": 453, "name": "options", "variant": "param", "kind": 32768, @@ -14913,14 +15635,14 @@ { "type": "reflection", "declaration": { - "id": 456, + "id": 454, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 457, + "id": 455, "name": "error", "variant": "declaration", "kind": 1024, @@ -14928,9 +15650,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ], "type": { @@ -14942,7 +15664,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14953,15 +15675,15 @@ "groups": [ { "title": "Properties", - "children": [457] + "children": [455] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3783, + "line": 3876, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3876" } ] } @@ -14974,7 +15696,7 @@ ] }, { - "id": 235, + "id": 233, "name": "signUp", "variant": "declaration", "kind": 2048, @@ -14982,14 +15704,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 899, + "line": 932, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L932" } ], "signatures": [ { - "id": 236, + "id": 234, "name": "signUp", "variant": "signature", "kind": 4096, @@ -15188,14 +15910,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 899, + "line": 932, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L899" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L932" } ], "parameters": [ { - "id": 237, + "id": 235, "name": "credentials", "variant": "param", "kind": 32768, @@ -15229,7 +15951,7 @@ ] }, { - "id": 577, + "id": 575, "name": "startAutoRefresh", "variant": "declaration", "kind": 2048, @@ -15237,14 +15959,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4941, + "line": 5119, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5119" } ], "signatures": [ { - "id": 578, + "id": 576, "name": "startAutoRefresh", "variant": "signature", "kind": 4096, @@ -15313,9 +16035,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4941, + "line": 5119, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5119" } ], "type": { @@ -15337,7 +16059,7 @@ ] }, { - "id": 579, + "id": 577, "name": "stopAutoRefresh", "variant": "declaration", "kind": 2048, @@ -15345,14 +16067,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4976, + "line": 5154, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5154" } ], "signatures": [ { - "id": 580, + "id": 578, "name": "stopAutoRefresh", "variant": "signature", "kind": 4096, @@ -15407,9 +16129,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4976, + "line": 5154, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L5154" } ], "type": { @@ -15431,7 +16153,7 @@ ] }, { - "id": 522, + "id": 520, "name": "unlinkIdentity", "variant": "declaration", "kind": 2048, @@ -15439,14 +16161,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4420, + "line": 4516, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4516" } ], "signatures": [ { - "id": 523, + "id": 521, "name": "unlinkIdentity", "variant": "signature", "kind": 4096, @@ -15500,14 +16222,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4420, + "line": 4516, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4516" } ], "parameters": [ { - "id": 524, + "id": 522, "name": "identity", "variant": "param", "kind": 32768, @@ -15533,14 +16255,14 @@ { "type": "reflection", "declaration": { - "id": 525, + "id": 523, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 526, + "id": 524, "name": "data", "variant": "declaration", "kind": 1024, @@ -15548,15 +16270,15 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4422, + "line": 4518, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4422" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4518" } ], "type": { "type": "reflection", "declaration": { - "id": 527, + "id": 525, "name": "__type", "variant": "declaration", "kind": 65536, @@ -15565,7 +16287,7 @@ } }, { - "id": 528, + "id": 526, "name": "error", "variant": "declaration", "kind": 1024, @@ -15573,9 +16295,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4423, + "line": 4519, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4519" } ], "type": { @@ -15587,15 +16309,15 @@ "groups": [ { "title": "Properties", - "children": [526, 528] + "children": [524, 526] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4421, + "line": 4517, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4421" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4517" } ] } @@ -15603,14 +16325,14 @@ { "type": "reflection", "declaration": { - "id": 529, + "id": 527, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 530, + "id": 528, "name": "data", "variant": "declaration", "kind": 1024, @@ -15618,9 +16340,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4425, + "line": 4521, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4521" } ], "type": { @@ -15629,7 +16351,7 @@ } }, { - "id": 531, + "id": 529, "name": "error", "variant": "declaration", "kind": 1024, @@ -15637,14 +16359,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4425, + "line": 4521, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4521" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -15653,15 +16375,15 @@ "groups": [ { "title": "Properties", - "children": [530, 531] + "children": [528, 529] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 4425, + "line": 4521, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L4425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L4521" } ] } @@ -15676,7 +16398,7 @@ ] }, { - "id": 388, + "id": 386, "name": "updateUser", "variant": "declaration", "kind": 2048, @@ -15684,14 +16406,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3148, + "line": 3224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3224" } ], "signatures": [ { - "id": 389, + "id": 387, "name": "updateUser", "variant": "signature", "kind": 4096, @@ -15866,14 +16588,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3148, + "line": 3224, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3148" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3224" } ], "parameters": [ { - "id": 390, + "id": 388, "name": "attributes", "variant": "param", "kind": 32768, @@ -15886,7 +16608,7 @@ } }, { - "id": 391, + "id": 389, "name": "options", "variant": "param", "kind": 32768, @@ -15894,14 +16616,14 @@ "type": { "type": "reflection", "declaration": { - "id": 392, + "id": 390, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 393, + "id": 391, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -15911,9 +16633,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3151, + "line": 3227, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3227" } ], "type": { @@ -15925,15 +16647,15 @@ "groups": [ { "title": "Properties", - "children": [393] + "children": [391] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 3150, + "line": 3226, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L3150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L3226" } ] } @@ -15962,7 +16684,7 @@ ] }, { - "id": 306, + "id": 304, "name": "verifyOtp", "variant": "declaration", "kind": 2048, @@ -15970,14 +16692,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2281, + "line": 2334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2334" } ], "signatures": [ { - "id": 307, + "id": 305, "name": "verifyOtp", "variant": "signature", "kind": 4096, @@ -16144,14 +16866,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 2281, + "line": 2334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L2334" } ], "parameters": [ { - "id": 308, + "id": 306, "name": "params", "variant": "param", "kind": 32768, @@ -16188,17 +16910,17 @@ "groups": [ { "title": "Constructors", - "children": [141] + "children": [138] }, { "title": "Properties", - "children": [145, 146, 147, 148] + "children": [142, 143, 144, 145] }, { "title": "Methods", "children": [ - 244, 662, 319, 382, 501, 228, 215, 511, 463, 312, 412, 688, 316, 487, 400, 232, 300, - 241, 303, 685, 238, 309, 247, 453, 235, 577, 579, 522, 388, 306 + 579, 242, 662, 317, 380, 499, 226, 213, 509, 461, 310, 410, 688, 314, 485, 398, 230, + 298, 239, 301, 685, 236, 307, 245, 451, 233, 575, 577, 520, 386, 304 ] } ], @@ -16206,21 +16928,21 @@ { "title": "Auth", "children": [ - 244, 662, 319, 382, 501, 228, 511, 463, 312, 412, 688, 316, 487, 400, 232, 300, 241, - 303, 685, 238, 309, 247, 453, 235, 577, 579, 522, 388, 306 + 579, 242, 662, 317, 380, 499, 226, 509, 461, 310, 410, 688, 314, 485, 398, 230, 298, + 239, 301, 685, 236, 307, 245, 451, 233, 575, 577, 520, 386, 304 ] }, { "title": "Other", - "children": [141, 145, 146, 147, 148, 215] + "children": [138, 142, 143, 144, 145, 213] } ], "sources": [ { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", - "line": 217, + "line": 225, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/GoTrueClient.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/GoTrueClient.ts#L225" } ] }, @@ -16231,19 +16953,38 @@ "kind": 128, "flags": {}, "comment": { - "summary": [ - { - "kind": "text", - "text": "Error thrown when the browser Navigator Lock API fails to acquire a lock." - } - ], + "summary": [], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "The auth client doesn't call " + }, + { + "kind": "code", + "text": "`navigator.locks`" + }, + { + "kind": "text", + "text": ", so this error\nnever originates from " + }, { "kind": "code", - "text": "```ts\nimport { NavigatorLockAcquireTimeoutError } from '@supabase/auth-js'\n\nthrow new NavigatorLockAcquireTimeoutError('Lock timed out')\n```" + "text": "`supabase.auth.*`" + }, + { + "kind": "text", + "text": " calls. Direct callers of\n" + }, + { + "kind": "code", + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " still receive it on acquire timeout." } ] } @@ -16259,9 +17000,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 37, + "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L39" } ], "signatures": [ @@ -16274,9 +17015,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 37, + "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L39" } ], "parameters": [ @@ -16324,9 +17065,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 35, + "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L37" } ], "type": { @@ -16354,9 +17095,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 52, + "line": 49, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L49" } ], "extendedTypes": [ @@ -16413,9 +17154,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 555, + "line": 544, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L544" } ], "type": { @@ -16442,9 +17183,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 581, + "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L570" } ], "type": { @@ -16472,9 +17213,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 501, + "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L490" } ], "type": { @@ -16507,9 +17248,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 506, + "line": 495, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L495" } ], "type": { @@ -16541,9 +17282,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 562, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L551" } ], "type": { @@ -16586,9 +17327,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 606, + "line": 595, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L595" } ], "type": { @@ -16616,9 +17357,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 523, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L512" } ], "type": { @@ -16651,9 +17392,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 516, + "line": 505, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L505" } ], "type": { @@ -16693,9 +17434,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 599, + "line": 588, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L599" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L588" } ], "type": { @@ -16723,9 +17464,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 511, + "line": 500, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L500" } ], "type": { @@ -16757,9 +17498,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 569, + "line": 558, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L558" } ], "type": { @@ -16818,9 +17559,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 590, + "line": 579, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L579" } ], "type": { @@ -16863,9 +17604,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 545, + "line": 534, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L534" } ], "type": { @@ -16883,9 +17624,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 534, + "line": 523, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L523" } ], "extendedTypes": [ @@ -16961,9 +17702,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 380, + "line": 369, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L369" } ], "type": { @@ -16990,9 +17731,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 386, + "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L375" } ], "type": { @@ -17010,9 +17751,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 378, + "line": 367, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L367" } ] }, @@ -17040,9 +17781,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2644, + "line": 2633, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2644" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2633" } ], "signatures": [ @@ -17092,9 +17833,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2644, + "line": 2633, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2644" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2633" } ], "parameters": [ @@ -17161,9 +17902,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2646, + "line": 2635, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2646" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2635" } ], "type": { @@ -17181,9 +17922,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2646, + "line": 2635, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2646" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2635" } ] } @@ -17219,9 +17960,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2664, + "line": 2653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2653" } ], "signatures": [ @@ -17271,9 +18012,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2664, + "line": 2653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2653" } ], "parameters": [ @@ -17340,9 +18081,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2666, + "line": 2655, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2655" } ], "type": { @@ -17360,9 +18101,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2666, + "line": 2655, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2655" } ] } @@ -17398,9 +18139,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2627, + "line": 2616, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2616" } ], "signatures": [ @@ -17470,9 +18211,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2627, + "line": 2616, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2616" } ], "parameters": [ @@ -17525,9 +18266,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2678, + "line": 2667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2667" } ], "signatures": [ @@ -17577,9 +18318,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2678, + "line": 2667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2678" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2667" } ], "type": { @@ -17611,9 +18352,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ], "signatures": [ @@ -17663,9 +18404,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ], "parameters": [ @@ -17709,9 +18450,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ], "type": { @@ -17729,9 +18470,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2694, + "line": 2683, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2694" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2683" } ] } @@ -17774,9 +18515,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2602, + "line": 2591, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2602" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2591" } ] }, @@ -17812,9 +18553,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2894, + "line": 2883, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2894" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2883" } ], "signatures": [ @@ -17855,9 +18596,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2894, + "line": 2883, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2894" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2883" } ], "parameters": [ @@ -17904,9 +18645,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2878, + "line": 2867, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2867" } ], "signatures": [ @@ -17947,9 +18688,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2878, + "line": 2867, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2867" } ], "type": { @@ -17981,9 +18722,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2856, + "line": 2845, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2856" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2845" } ], "signatures": [ @@ -18032,9 +18773,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2856, + "line": 2845, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2856" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2845" } ], "parameters": [ @@ -18083,9 +18824,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2833, + "line": 2822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2833" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2822" } ], "signatures": [ @@ -18134,9 +18875,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2833, + "line": 2822, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2833" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2822" } ], "type": { @@ -18168,9 +18909,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2886, + "line": 2875, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2886" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2875" } ], "signatures": [ @@ -18211,9 +18952,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2886, + "line": 2875, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2886" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2875" } ], "parameters": [ @@ -18260,9 +19001,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2867, + "line": 2856, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2867" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2856" } ], "signatures": [ @@ -18303,9 +19044,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2867, + "line": 2856, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2867" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2856" } ], "parameters": [ @@ -18352,9 +19093,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2842, + "line": 2831, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2831" } ], "signatures": [ @@ -18395,9 +19136,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2842, + "line": 2831, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2831" } ], "parameters": [ @@ -18451,9 +19192,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2822, + "line": 2811, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2822" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2811" } ] }, @@ -18499,9 +19240,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 965, + "line": 954, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L965" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L954" } ], "type": { @@ -18528,9 +19269,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 967, + "line": 956, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L956" } ], "type": { @@ -18548,9 +19289,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 959, + "line": 948, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L948" } ] }, @@ -18578,9 +19319,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2436, + "line": 2425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2425" } ], "signatures": [ @@ -18645,9 +19386,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2436, + "line": 2425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2425" } ], "parameters": [ @@ -18694,9 +19435,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "signatures": [ @@ -18745,9 +19486,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "parameters": [ @@ -18788,9 +19529,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "type": { @@ -18807,9 +19548,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ], "type": { @@ -18821,7 +19562,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -18838,9 +19579,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2474, + "line": 2463, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2463" } ] } @@ -18861,9 +19602,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2446, + "line": 2435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2435" } ], "signatures": [ @@ -18912,9 +19653,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2446, + "line": 2435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2435" } ], "parameters": [ @@ -18959,9 +19700,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2420, + "line": 2409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2409" } ], "signatures": [ @@ -19010,9 +19751,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2420, + "line": 2409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2409" } ], "parameters": [ @@ -19061,9 +19802,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2461, + "line": 2450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2450" } ], "signatures": [ @@ -19136,9 +19877,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2461, + "line": 2450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2450" } ], "parameters": [ @@ -19203,9 +19944,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2411, + "line": 2400, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2400" } ] }, @@ -19239,9 +19980,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1806, + "line": 1795, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1795" } ], "signatures": [ @@ -19320,9 +20061,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1806, + "line": 1795, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1795" } ], "parameters": [ @@ -19369,9 +20110,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1775, + "line": 1764, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1764" } ], "signatures": [ @@ -19435,9 +20176,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1775, + "line": 1764, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1764" } ], "parameters": [ @@ -19491,9 +20232,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1743, + "line": 1732, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1743" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1732" } ] }, @@ -19521,9 +20262,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2166, + "line": 2155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2155" } ], "signatures": [ @@ -19572,9 +20313,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2166, + "line": 2155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2155" } ], "parameters": [ @@ -19621,9 +20362,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "signatures": [ @@ -19672,9 +20413,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "parameters": [ @@ -19715,9 +20456,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "type": { @@ -19734,9 +20475,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ], "type": { @@ -19748,7 +20489,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -19765,9 +20506,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2199, + "line": 2188, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2188" } ] } @@ -19788,9 +20529,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2177, + "line": 2166, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2166" } ], "signatures": [ @@ -19839,9 +20580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2177, + "line": 2166, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2166" } ], "parameters": [ @@ -19886,9 +20627,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2155, + "line": 2144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2144" } ], "signatures": [ @@ -19937,9 +20678,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2155, + "line": 2144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2144" } ], "parameters": [ @@ -19988,9 +20729,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2210, + "line": 2199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2199" } ], "signatures": [ @@ -20039,9 +20780,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2210, + "line": 2199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2199" } ], "parameters": [ @@ -20086,9 +20827,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2188, + "line": 2177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2177" } ], "signatures": [ @@ -20137,9 +20878,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2188, + "line": 2177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2177" } ], "parameters": [ @@ -20204,9 +20945,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2145, + "line": 2134, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2145" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2134" } ] }, @@ -20226,9 +20967,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2916, + "line": 2905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2916" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2905" } ], "signatures": [ @@ -20277,9 +21018,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2916, + "line": 2905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2916" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2905" } ], "parameters": [ @@ -20326,9 +21067,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2906, + "line": 2895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2906" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2895" } ], "signatures": [ @@ -20377,9 +21118,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2906, + "line": 2895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2906" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2895" } ], "parameters": [ @@ -20433,9 +21174,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2897, + "line": 2886, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2897" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2886" } ] }, @@ -20463,9 +21204,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1701, + "line": 1690, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1701" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1690" } ], "type": { @@ -20487,27 +21228,27 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1434, + "line": 1423, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1434" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1423" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1435, + "line": 1424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1424" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1436, + "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1425" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1437, + "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1437" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1426" } ], "signatures": [ @@ -20642,9 +21383,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1434, + "line": 1423, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1434" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1423" } ], "parameters": [ @@ -20693,9 +21434,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -20712,14 +21453,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -20734,9 +21475,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -20759,9 +21500,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -20783,9 +21524,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -20803,9 +21544,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -20826,9 +21567,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1435, + "line": 1424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1424" } ], "parameters": [ @@ -20874,9 +21615,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -20893,14 +21634,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -20915,9 +21656,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -20940,9 +21681,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -20964,9 +21705,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -20984,9 +21725,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -21007,9 +21748,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1436, + "line": 1425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1425" } ], "parameters": [ @@ -21055,9 +21796,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -21074,14 +21815,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -21096,9 +21837,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -21121,9 +21862,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -21165,9 +21906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -21185,9 +21926,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ] } @@ -21208,9 +21949,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1437, + "line": 1426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1437" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1426" } ], "parameters": [ @@ -21257,9 +21998,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1629, + "line": 1618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1618" } ], "signatures": [ @@ -21356,9 +22097,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1629, + "line": 1618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1618" } ], "parameters": [ @@ -21408,27 +22149,27 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1360, + "line": 1349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1360" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1349" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1361, + "line": 1350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1350" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1362, + "line": 1351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1362" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1351" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1363, + "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1352" } ], "signatures": [ @@ -21628,9 +22369,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1360, + "line": 1349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1360" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1349" } ], "parameters": [ @@ -21675,9 +22416,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1361, + "line": 1350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1350" } ], "parameters": [ @@ -21722,9 +22463,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1362, + "line": 1351, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1362" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1351" } ], "parameters": [ @@ -21772,9 +22513,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1363, + "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1352" } ], "parameters": [ @@ -21821,9 +22562,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1696, + "line": 1685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1685" } ], "signatures": [ @@ -21978,9 +22719,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1696, + "line": 1685, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1685" } ], "parameters": [ @@ -22035,9 +22776,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1642, + "line": 1631, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1642" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1631" } ], "signatures": [ @@ -22094,7 +22835,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient#getUser", - "target": 382 + "target": 380 }, { "kind": "text", @@ -22125,9 +22866,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1642, + "line": 1631, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1642" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1631" } ], "type": { @@ -22182,9 +22923,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1547, + "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1536" } ], "signatures": [ @@ -22264,9 +23005,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1547, + "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1536" } ], "parameters": [ @@ -22313,27 +23054,27 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1518, + "line": 1507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1507" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1519, + "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1508" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1520, + "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1520" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1509" }, { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1521, + "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1510" } ], "signatures": [ @@ -22406,9 +23147,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1518, + "line": 1507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1507" } ], "parameters": [ @@ -22453,9 +23194,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1519, + "line": 1508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1508" } ], "parameters": [ @@ -22500,9 +23241,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1520, + "line": 1509, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1520" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1509" } ], "parameters": [ @@ -22547,9 +23288,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1521, + "line": 1510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1510" } ], "parameters": [ @@ -22611,9 +23352,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1278, + "line": 1267, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1267" } ] }, @@ -22635,9 +23376,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2004, + "line": 1993, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2004" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1993" } ], "type": { @@ -22654,9 +23395,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2003, + "line": 1992, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1992" } ], "type": { @@ -22678,9 +23419,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2005, + "line": 1994, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2005" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1994" } ], "type": { @@ -22697,9 +23438,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2002, + "line": 1991, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2002" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1991" } ], "type": { @@ -22749,9 +23490,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2001, + "line": 1990, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2001" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1990" } ], "indexSignatures": [ @@ -22764,9 +23505,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2006, + "line": 1995, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2006" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1995" } ], "parameters": [ @@ -22826,9 +23567,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1963, + "line": 1952, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1963" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1952" } ], "type": { @@ -22862,9 +23603,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1992, + "line": 1981, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1992" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1981" } ], "type": { @@ -22900,9 +23641,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1984, + "line": 1973, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1984" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1973" } ], "type": { @@ -22923,9 +23664,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1959, + "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1959" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -22961,9 +23702,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1977, + "line": 1966, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1966" } ], "type": { @@ -22982,9 +23723,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1960, + "line": 1949, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1960" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1949" } ], "type": { @@ -23008,9 +23749,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1961, + "line": 1950, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1961" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1950" } ], "type": { @@ -23034,9 +23775,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1979, + "line": 1968, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1979" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1968" } ], "type": { @@ -23055,9 +23796,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1957, + "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1957" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -23081,9 +23822,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1982, + "line": 1971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1982" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1971" } ], "type": { @@ -23102,9 +23843,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1983, + "line": 1972, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1983" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1972" } ], "type": { @@ -23123,9 +23864,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1978, + "line": 1967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1978" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1967" } ], "type": { @@ -23144,9 +23885,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1995, + "line": 1984, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1995" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1984" } ], "type": { @@ -23165,9 +23906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1962, + "line": 1951, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1962" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1951" } ], "type": { @@ -23191,9 +23932,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1964, + "line": 1953, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1964" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1953" } ], "type": { @@ -23217,9 +23958,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1958, + "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1958" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -23243,9 +23984,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1985, + "line": 1974, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1985" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1974" } ], "type": { @@ -23268,9 +24009,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1975, + "line": 1964, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1975" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1964" } ], "indexSignatures": [ @@ -23283,9 +24024,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1998, + "line": 1987, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1998" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1987" } ], "parameters": [ @@ -23340,9 +24081,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 328, + "line": 317, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L328" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L317" } ], "type": { @@ -23369,9 +24110,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 340, + "line": 329, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L340" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L329" } ], "type": { @@ -23396,9 +24137,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 336, + "line": 325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L325" } ], "type": { @@ -23425,9 +24166,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 324, + "line": 313, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L313" } ], "type": { @@ -23463,9 +24204,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 319, + "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L308" } ], "type": { @@ -23499,9 +24240,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 332, + "line": 321, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L321" } ], "type": { @@ -23518,9 +24259,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 341, + "line": 330, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L330" } ], "type": { @@ -23545,9 +24286,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 346, + "line": 335, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L335" } ], "type": { @@ -23567,9 +24308,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 315, + "line": 304, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L304" } ] }, @@ -23597,9 +24338,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 619, + "line": 608, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L608" } ], "type": { @@ -23613,9 +24354,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 619, + "line": 608, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L608" } ], "signatures": [ @@ -23628,9 +24369,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 619, + "line": 608, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L608" } ], "parameters": [ @@ -23696,9 +24437,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 615, + "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L604" } ], "type": { @@ -23732,9 +24473,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 623, + "line": 612, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L612" } ], "type": { @@ -23748,9 +24489,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 623, + "line": 612, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L612" } ], "signatures": [ @@ -23763,9 +24504,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 623, + "line": 612, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L623" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L612" } ], "type": { @@ -23787,9 +24528,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 609, + "line": 598, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L598" } ] }, @@ -23811,9 +24552,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 475, + "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L464" } ], "type": { @@ -23830,9 +24571,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 466, + "line": 455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L455" } ], "type": { @@ -23851,9 +24592,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 468, + "line": 457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L457" } ], "type": { @@ -23872,9 +24613,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 490, + "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L479" } ], "type": { @@ -23893,9 +24634,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 469, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L458" } ], "type": { @@ -23914,9 +24655,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 479, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L468" } ], "type": { @@ -23933,9 +24674,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 478, + "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L467" } ], "type": { @@ -23954,9 +24695,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 489, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L478" } ], "type": { @@ -23975,9 +24716,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 476, + "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L465" } ], "type": { @@ -23996,9 +24737,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 471, + "line": 460, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L460" } ], "type": { @@ -24017,9 +24758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 480, + "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L469" } ], "type": { @@ -24038,9 +24779,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 488, + "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L477" } ], "type": { @@ -24119,9 +24860,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 465, + "line": 454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L454" } ], "type": { @@ -24140,9 +24881,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 485, + "line": 474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L474" } ], "type": { @@ -24166,9 +24907,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 474, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L463" } ], "type": { @@ -24187,9 +24928,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 486, + "line": 475, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L475" } ], "type": { @@ -24208,9 +24949,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 487, + "line": 476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L487" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L476" } ], "type": { @@ -24229,9 +24970,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 482, + "line": 471, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L471" } ], "type": { @@ -24250,9 +24991,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 472, + "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L461" } ], "type": { @@ -24271,9 +25012,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 473, + "line": 462, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L462" } ], "type": { @@ -24292,9 +25033,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 477, + "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L466" } ], "type": { @@ -24313,9 +25054,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 481, + "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L470" } ], "type": { @@ -24334,9 +25075,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 470, + "line": 459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L459" } ], "type": { @@ -24355,9 +25096,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 483, + "line": 472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L472" } ], "type": { @@ -24376,9 +25117,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 484, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L484" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L473" } ], "type": { @@ -24395,9 +25136,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 467, + "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L456" } ], "type": { @@ -24420,9 +25161,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 464, + "line": 453, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L453" } ] }, @@ -24452,9 +25193,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 452, + "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L441" } ], "type": { @@ -24481,9 +25222,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 456, + "line": 445, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L445" } ], "type": { @@ -24504,9 +25245,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 448, + "line": 437, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L437" } ], "indexSignatures": [ @@ -24519,9 +25260,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 457, + "line": 446, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L446" } ], "parameters": [ @@ -24570,9 +25311,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 501, + "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L490" } ], "type": { @@ -24615,9 +25356,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 531, + "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L520" } ], "type": { @@ -24644,9 +25385,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 506, + "line": 495, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L495" } ], "type": { @@ -24673,9 +25414,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 523, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L523" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L512" } ], "type": { @@ -24702,9 +25443,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 516, + "line": 505, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L505" } ], "type": { @@ -24731,9 +25472,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 511, + "line": 500, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L500" } ], "type": { @@ -24751,9 +25492,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 493, + "line": 482, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L482" } ] }, @@ -24775,9 +25516,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 397, + "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L386" } ], "type": { @@ -24794,9 +25535,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 390, + "line": 379, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L379" } ], "type": { @@ -24815,9 +25556,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 392, + "line": 381, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L381" } ], "type": { @@ -24831,9 +25572,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 392, + "line": 381, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L381" } ], "indexSignatures": [ @@ -24846,9 +25587,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 393, + "line": 382, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L382" } ], "parameters": [ @@ -24882,9 +25623,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 395, + "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L395" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L384" } ], "type": { @@ -24903,9 +25644,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 398, + "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L398" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L387" } ], "type": { @@ -24922,9 +25663,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 396, + "line": 385, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L385" } ], "type": { @@ -24943,9 +25684,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 399, + "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L399" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L388" } ], "type": { @@ -24962,9 +25703,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 391, + "line": 380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L380" } ], "type": { @@ -24982,9 +25723,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 389, + "line": 378, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L378" } ] }, @@ -24997,9 +25738,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 460, + "line": 449, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L449" } ], "indexSignatures": [ @@ -25012,9 +25753,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 461, + "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L450" } ], "parameters": [ @@ -25061,9 +25802,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 836, + "line": 825, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L836" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L825" } ], "type": { @@ -25082,9 +25823,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 841, + "line": 830, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L830" } ], "type": { @@ -25121,9 +25862,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 849, + "line": 838, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L838" } ], "type": { @@ -25150,9 +25891,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 843, + "line": 832, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L832" } ], "type": { @@ -25170,9 +25911,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 841, + "line": 830, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L830" } ] } @@ -25195,9 +25936,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 838, + "line": 827, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L827" } ], "type": { @@ -25222,9 +25963,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 840, + "line": 829, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L840" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L829" } ], "type": { @@ -25244,9 +25985,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 834, + "line": 823, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L834" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L823" } ] }, @@ -25268,9 +26009,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 822, + "line": 811, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L811" } ], "type": { @@ -25307,9 +26048,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 831, + "line": 820, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L820" } ], "type": { @@ -25336,9 +26077,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 824, + "line": 813, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L813" } ], "type": { @@ -25356,9 +26097,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 822, + "line": 811, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L822" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L811" } ] } @@ -25381,9 +26122,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 817, + "line": 806, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L806" } ], "type": { @@ -25408,9 +26149,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 819, + "line": 808, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L819" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L808" } ], "type": { @@ -25435,9 +26176,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 821, + "line": 810, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L821" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L810" } ], "type": { @@ -25457,9 +26198,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 815, + "line": 804, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L815" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L804" } ] }, @@ -25487,9 +26228,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 855, + "line": 844, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L844" } ], "type": { @@ -25514,9 +26255,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 858, + "line": 847, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L847" } ], "type": { @@ -25536,9 +26277,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 853, + "line": 842, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L842" } ] }, @@ -25551,9 +26292,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 364, + "line": 353, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L353" } ], "type": { @@ -25597,9 +26338,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 364, + "line": 353, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L364" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L353" } ] } @@ -25620,7 +26361,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L54" } ], "type": { @@ -25670,7 +26411,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 52, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L52" } ], "type": { @@ -25687,9 +26428,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1248, + "line": 1237, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1237" } ], "type": { @@ -25721,9 +26462,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1248, + "line": 1237, "character": 71, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1237" } ] } @@ -25742,9 +26483,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 696, + "line": 685, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L685" } ], "type": { @@ -25776,9 +26517,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 696, + "line": 685, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L685" } ] } @@ -25806,9 +26547,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1714, + "line": 1703, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1703" } ], "type": { @@ -25837,9 +26578,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1716, + "line": 1705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1716" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1705" } ], "type": { @@ -25864,9 +26605,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1719, + "line": 1708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1708" } ], "type": { @@ -25884,9 +26625,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1714, + "line": 1703, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1703" } ] } @@ -25910,9 +26651,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1707, + "line": 1696, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1696" } ], "type": { @@ -25945,9 +26686,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1709, + "line": 1698, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1698" } ], "type": { @@ -25965,9 +26706,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1707, + "line": 1696, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1696" } ] } @@ -25995,9 +26736,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1733, + "line": 1722, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1722" } ], "type": { @@ -26026,9 +26767,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1735, + "line": 1724, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1735" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1724" } ], "type": { @@ -26046,9 +26787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1733, + "line": 1722, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1722" } ] } @@ -26072,9 +26813,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1725, + "line": 1714, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1725" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1714" } ], "type": { @@ -26107,9 +26848,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1727, + "line": 1716, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1716" } ], "type": { @@ -26132,9 +26873,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1725, + "line": 1714, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1725" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1714" } ] } @@ -26153,9 +26894,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1179, + "line": 1168, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1168" } ], "type": { @@ -26205,9 +26946,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1230, + "line": 1219, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1219" } ], "type": { @@ -26243,9 +26984,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1171, + "line": 1160, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1171" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1160" } ], "type": { @@ -26316,9 +27057,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1200, + "line": 1189, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1189" } ], "type": { @@ -26376,9 +27117,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1220, + "line": 1209, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1220" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1209" } ], "type": { @@ -26428,9 +27169,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1227, + "line": 1216, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1216" } ], "type": { @@ -26457,9 +27198,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1933, + "line": 1922, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1933" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1922" } ], "type": { @@ -26509,9 +27250,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1146, + "line": 1135, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1135" } ], "type": { @@ -26547,9 +27288,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1924, + "line": 1913, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1924" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1913" } ], "type": { @@ -26620,9 +27361,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1946, + "line": 1935, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1946" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1935" } ], "type": { @@ -26672,9 +27413,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1250, + "line": 1239, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1250" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1239" } ], "type": { @@ -26707,9 +27448,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1271, + "line": 1260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1260" } ], "type": { @@ -26751,9 +27492,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1252, + "line": 1241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1252" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1241" } ], "type": { @@ -26802,9 +27543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1260, + "line": 1249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1260" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1249" } ], "type": { @@ -26833,9 +27574,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1250, + "line": 1239, "character": 74, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1250" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1239" } ] } @@ -26862,9 +27603,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1236, + "line": 1225, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1225" } ], "typeParameters": [ @@ -26935,9 +27676,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1240, + "line": 1229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1229" } ], "type": { @@ -26960,9 +27701,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1238, + "line": 1227, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1227" } ] } @@ -27026,9 +27767,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1151, + "line": 1140, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1140" } ], "type": { @@ -27061,9 +27802,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1153, + "line": 1142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1142" } ], "type": { @@ -27081,9 +27822,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1151, + "line": 1140, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1140" } ] } @@ -27110,9 +27851,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1144, + "line": 1133, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1133" } ], "type": { @@ -27147,9 +27888,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1123, + "line": 1112, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1112" } ], "type": { @@ -27178,9 +27919,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1125, + "line": 1114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1114" } ], "type": { @@ -27205,9 +27946,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1131, + "line": 1120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1120" } ], "type": { @@ -27232,9 +27973,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1134, + "line": 1123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1123" } ], "type": { @@ -27267,9 +28008,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1128, + "line": 1117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1117" } ], "type": { @@ -27294,9 +28035,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1137, + "line": 1126, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1126" } ], "type": { @@ -27316,9 +28057,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1123, + "line": 1112, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1112" } ] } @@ -27352,9 +28093,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2561, + "line": 2550, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2561" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2550" } ], "type": { @@ -27400,9 +28141,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2569, + "line": 2558, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2569" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2558" } ], "type": { @@ -27437,9 +28178,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2588, + "line": 2577, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2588" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2577" } ], "type": { @@ -27477,9 +28218,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2594, + "line": 2583, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2594" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2583" } ], "type": { @@ -27497,9 +28238,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2594, + "line": 2583, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2594" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2583" } ] } @@ -27531,9 +28272,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 267, + "line": 256, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L256" } ], "type": { @@ -27560,9 +28301,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 270, + "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L259" } ], "type": { @@ -27588,9 +28329,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 269, + "line": 258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L258" } ], "type": { @@ -27607,9 +28348,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 268, + "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L268" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L257" } ], "type": { @@ -27627,9 +28368,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 267, + "line": 256, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L256" } ] } @@ -27648,9 +28389,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2811, + "line": 2800, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2811" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2800" } ], "type": { @@ -27671,9 +28412,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2813, + "line": 2802, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2813" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2802" } ], "type": { @@ -27690,9 +28431,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2812, + "line": 2801, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2812" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2801" } ], "type": { @@ -27710,9 +28451,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2811, + "line": 2800, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2811" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2800" } ] } @@ -27727,9 +28468,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2807, + "line": 2796, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2807" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2796" } ], "type": { @@ -27750,9 +28491,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2808, + "line": 2797, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2808" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2797" } ], "type": { @@ -27770,9 +28511,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2807, + "line": 2796, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2807" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2796" } ] } @@ -27787,9 +28528,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2795, + "line": 2784, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2795" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2784" } ], "type": { @@ -27816,9 +28557,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2797, + "line": 2786, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2786" } ], "type": { @@ -27843,9 +28584,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2798, + "line": 2787, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2787" } ], "type": { @@ -27873,9 +28614,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2798, + "line": 2787, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2787" } ], "type": { @@ -27904,9 +28645,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2798, + "line": 2787, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2787" } ] } @@ -27925,7 +28666,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -27945,9 +28686,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2803, + "line": 2792, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2803" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2792" } ], "type": { @@ -27972,9 +28713,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2801, + "line": 2790, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2790" } ], "type": { @@ -28004,9 +28745,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2789, + "line": 2778, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2789" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2778" } ], "type": { @@ -28033,9 +28774,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2791, + "line": 2780, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2791" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2780" } ], "type": { @@ -28062,7 +28803,7 @@ }, { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -28082,9 +28823,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2802, + "line": 2791, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2802" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2791" } ], "type": { @@ -28111,9 +28852,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 251, + "line": 240, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L240" } ], "type": { @@ -28138,9 +28879,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 253, + "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L242" } ], "type": { @@ -28168,9 +28909,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 252, + "line": 241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L241" } ], "type": { @@ -28199,9 +28940,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 251, + "line": 240, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L240" } ] } @@ -28220,9 +28961,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 256, + "line": 245, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L245" } ], "type": { @@ -28247,9 +28988,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 258, + "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L258" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L247" } ], "type": { @@ -28277,9 +29018,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 257, + "line": 246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L246" } ], "type": { @@ -28309,9 +29050,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 259, + "line": 248, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L248" } ], "type": { @@ -28340,9 +29081,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 256, + "line": 245, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L245" } ] } @@ -28361,9 +29102,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 273, + "line": 262, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L262" } ], "type": { @@ -28388,9 +29129,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 275, + "line": 264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L264" } ], "type": { @@ -28409,9 +29150,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 274, + "line": 263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L263" } ], "type": { @@ -28431,9 +29172,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 273, + "line": 262, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L262" } ] } @@ -28452,9 +29193,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 278, + "line": 267, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L267" } ], "type": { @@ -28479,9 +29220,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 280, + "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L269" } ], "type": { @@ -28500,9 +29241,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 279, + "line": 268, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L268" } ], "type": { @@ -28523,9 +29264,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 281, + "line": 270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L270" } ], "type": { @@ -28545,9 +29286,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 278, + "line": 267, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L267" } ] } @@ -28566,9 +29307,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1833, + "line": 1822, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1822" } ], "type": { @@ -28603,9 +29344,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2299, + "line": 2288, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2299" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2288" } ], "type": { @@ -28636,9 +29377,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2311, + "line": 2300, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2300" } ], "type": { @@ -28668,9 +29409,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2317, + "line": 2306, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2317" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2306" } ], "type": { @@ -28712,9 +29453,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2319, + "line": 2308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2308" } ], "type": { @@ -28756,9 +29497,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2331, + "line": 2320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2320" } ], "type": { @@ -28783,9 +29524,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2307, + "line": 2296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2296" } ], "type": { @@ -28810,9 +29551,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2309, + "line": 2298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2309" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2298" } ], "type": { @@ -28839,9 +29580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2327, + "line": 2316, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2327" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2316" } ], "type": { @@ -28868,9 +29609,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2323, + "line": 2312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2323" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2312" } ], "type": { @@ -28897,9 +29638,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2321, + "line": 2310, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2321" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2310" } ], "type": { @@ -28932,9 +29673,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2303, + "line": 2292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2303" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2292" } ], "type": { @@ -28961,9 +29702,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2325, + "line": 2314, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2325" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2314" } ], "type": { @@ -28990,9 +29731,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2337, + "line": 2326, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2337" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2326" } ], "type": { @@ -29017,9 +29758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2305, + "line": 2294, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2305" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2294" } ], "type": { @@ -29046,9 +29787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2315, + "line": 2304, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2304" } ], "type": { @@ -29073,9 +29814,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2301, + "line": 2290, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2290" } ], "type": { @@ -29104,9 +29845,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2313, + "line": 2302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2313" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2302" } ], "type": { @@ -29136,9 +29877,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2329, + "line": 2318, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2329" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2318" } ], "type": { @@ -29165,9 +29906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2333, + "line": 2322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2322" } ], "type": { @@ -29194,9 +29935,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2335, + "line": 2324, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2335" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2324" } ], "type": { @@ -29217,9 +29958,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2299, + "line": 2288, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2299" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2288" } ] } @@ -29242,9 +29983,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2084, + "line": 2073, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2084" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2073" } ], "type": { @@ -29273,9 +30014,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2086, + "line": 2075, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2086" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2075" } ], "type": { @@ -29302,9 +30043,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2088, + "line": 2077, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2088" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2077" } ], "type": { @@ -29331,9 +30072,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2092, + "line": 2081, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2092" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2081" } ], "type": { @@ -29363,9 +30104,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2090, + "line": 2079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2090" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2079" } ], "type": { @@ -29395,9 +30136,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2094, + "line": 2083, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2094" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2083" } ], "type": { @@ -29429,9 +30170,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2096, + "line": 2085, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2096" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2085" } ], "type": { @@ -29458,9 +30199,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2098, + "line": 2087, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2098" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2087" } ], "type": { @@ -29480,9 +30221,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2084, + "line": 2073, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2084" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2073" } ] } @@ -29505,9 +30246,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2249, + "line": 2238, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2249" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2238" } ], "type": { @@ -29538,9 +30279,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2261, + "line": 2250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2250" } ], "type": { @@ -29570,9 +30311,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2267, + "line": 2256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2256" } ], "type": { @@ -29614,9 +30355,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2269, + "line": 2258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2258" } ], "type": { @@ -29658,9 +30399,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2281, + "line": 2270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2270" } ], "type": { @@ -29685,9 +30426,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2259, + "line": 2248, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2248" } ], "type": { @@ -29712,9 +30453,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2291, + "line": 2280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2291" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2280" } ], "type": { @@ -29741,9 +30482,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2289, + "line": 2278, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2278" } ], "type": { @@ -29781,9 +30522,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2277, + "line": 2266, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2266" } ], "type": { @@ -29810,9 +30551,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2273, + "line": 2262, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2262" } ], "type": { @@ -29839,9 +30580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2271, + "line": 2260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2260" } ], "type": { @@ -29866,9 +30607,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2251, + "line": 2240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2240" } ], "type": { @@ -29901,9 +30642,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2255, + "line": 2244, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2255" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2244" } ], "type": { @@ -29930,9 +30671,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2275, + "line": 2264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2264" } ], "type": { @@ -29959,9 +30700,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2287, + "line": 2276, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2287" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2276" } ], "type": { @@ -29986,9 +30727,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2257, + "line": 2246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2257" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2246" } ], "type": { @@ -30015,9 +30756,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2265, + "line": 2254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2265" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2254" } ], "type": { @@ -30042,9 +30783,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2253, + "line": 2242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2253" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2242" } ], "type": { @@ -30073,9 +30814,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2263, + "line": 2252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2252" } ], "type": { @@ -30105,9 +30846,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2279, + "line": 2268, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2268" } ], "type": { @@ -30134,9 +30875,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2283, + "line": 2272, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2283" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2272" } ], "type": { @@ -30161,9 +30902,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2293, + "line": 2282, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2282" } ], "type": { @@ -30190,9 +30931,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2285, + "line": 2274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2285" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2274" } ], "type": { @@ -30213,9 +30954,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2249, + "line": 2238, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2249" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2238" } ] } @@ -30238,9 +30979,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2398, + "line": 2387, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2398" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2387" } ], "type": { @@ -30264,9 +31005,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2400, + "line": 2389, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2389" } ], "type": { @@ -30287,9 +31028,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2400, + "line": 2389, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2389" } ], "type": { @@ -30312,9 +31053,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2400, + "line": 2389, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2389" } ] } @@ -30329,9 +31070,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2401, + "line": 2390, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2390" } ], "type": { @@ -30349,9 +31090,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2399, + "line": 2388, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2399" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2388" } ] } @@ -30374,9 +31115,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2404, + "line": 2393, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2404" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2393" } ], "type": { @@ -30397,9 +31138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2404, + "line": 2393, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2404" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2393" } ], "type": { @@ -30416,9 +31157,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2404, + "line": 2393, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2404" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2393" } ] } @@ -30433,14 +31174,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2405, + "line": 2394, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2394" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -30455,9 +31196,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2403, + "line": 2392, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2403" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2392" } ] } @@ -30482,9 +31223,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2393, + "line": 2382, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2393" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2382" } ], "type": { @@ -30519,9 +31260,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2216, + "line": 2205, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2216" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2205" } ], "type": { @@ -30547,9 +31288,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 862, + "line": 851, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L851" } ], "type": { @@ -30597,9 +31338,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 869, + "line": 858, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L869" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L858" } ] } @@ -30618,9 +31359,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 773, + "line": 762, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L773" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L762" } ], "type": { @@ -30642,9 +31383,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 775, + "line": 764, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L764" } ], "type": { @@ -30668,9 +31409,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 777, + "line": 766, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L777" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L766" } ], "type": { @@ -30689,9 +31430,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 785, + "line": 774, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L774" } ], "type": { @@ -30722,9 +31463,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 790, + "line": 779, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L790" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L779" } ], "type": { @@ -30743,9 +31484,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 792, + "line": 781, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L792" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L781" } ], "type": { @@ -30820,9 +31561,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 787, + "line": 776, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L787" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L776" } ], "type": { @@ -30840,9 +31581,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 785, + "line": 774, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L785" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L774" } ] } @@ -30867,9 +31608,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 783, + "line": 772, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L783" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L772" } ], "type": { @@ -30904,9 +31645,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 780, + "line": 769, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L780" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L769" } ], "type": { @@ -30926,9 +31667,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 776, + "line": 765, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L776" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L765" } ] } @@ -30951,9 +31692,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 798, + "line": 787, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L798" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L787" } ], "type": { @@ -31002,9 +31743,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 801, + "line": 790, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L790" } ], "type": { @@ -31023,9 +31764,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 806, + "line": 795, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L795" } ], "type": { @@ -31056,9 +31797,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 808, + "line": 797, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L808" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L797" } ], "type": { @@ -31076,9 +31817,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 806, + "line": 795, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L806" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L795" } ] } @@ -31101,9 +31842,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 804, + "line": 793, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L804" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L793" } ], "type": { @@ -31126,9 +31867,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 797, + "line": 786, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L797" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L786" } ] } @@ -31145,9 +31886,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 193, + "line": 182, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L182" } ], "type": { @@ -31218,9 +31959,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 203, + "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L192" } ], "type": { @@ -31238,9 +31979,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 193, + "line": 182, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L182" } ] } @@ -31311,9 +32052,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 423, + "line": 412, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L412" } ], "typeParameters": [ @@ -31391,9 +32132,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 443, + "line": 432, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L432" } ], "type": { @@ -31434,9 +32175,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 436, + "line": 425, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L425" } ], "type": { @@ -31466,9 +32207,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 431, + "line": 420, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L420" } ], "type": { @@ -31493,9 +32234,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 428, + "line": 417, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L417" } ], "type": { @@ -31514,9 +32255,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 445, + "line": 434, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L434" } ], "type": { @@ -31569,9 +32310,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 441, + "line": 430, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L430" } ], "type": { @@ -31591,9 +32332,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 444, + "line": 433, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L433" } ], "type": { @@ -31611,9 +32352,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 426, + "line": 415, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L415" } ] } @@ -31652,9 +32393,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 407, + "line": 396, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L396" } ], "type": { @@ -31687,9 +32428,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 948, + "line": 937, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L948" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L937" } ], "type": { @@ -31718,9 +32459,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 951, + "line": 940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L951" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L940" } ], "type": { @@ -31745,9 +32486,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 955, + "line": 944, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L955" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L944" } ], "type": { @@ -31766,9 +32507,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 956, + "line": 945, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L956" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L945" } ], "type": { @@ -31802,9 +32543,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 949, + "line": 938, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L949" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L938" } ], "type": { @@ -31831,9 +32572,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 948, + "line": 937, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L948" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L937" } ] } @@ -31848,9 +32589,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 934, + "line": 923, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L923" } ], "type": { @@ -31879,9 +32620,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 937, + "line": 926, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L937" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L926" } ], "type": { @@ -31900,9 +32641,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 938, + "line": 927, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L938" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L927" } ], "type": { @@ -31945,9 +32686,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 935, + "line": 924, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L935" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L924" } ], "type": { @@ -31974,9 +32715,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 934, + "line": 923, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L923" } ] } @@ -31991,9 +32732,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 970, + "line": 959, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L959" } ], "type": { @@ -32043,9 +32784,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 982, + "line": 971, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L971" } ], "type": { @@ -32074,9 +32815,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 987, + "line": 976, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L987" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L976" } ], "type": { @@ -32101,9 +32842,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 992, + "line": 981, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L992" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L981" } ], "type": { @@ -32128,9 +32869,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 996, + "line": 985, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L996" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L985" } ], "type": { @@ -32155,9 +32896,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 998, + "line": 987, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L998" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L987" } ], "type": { @@ -32182,9 +32923,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1000, + "line": 989, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1000" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L989" } ], "type": { @@ -32204,9 +32945,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 982, + "line": 971, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L971" } ] } @@ -32221,9 +32962,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 976, + "line": 965, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L965" } ], "type": { @@ -32248,9 +32989,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 977, + "line": 966, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L977" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L966" } ], "type": { @@ -32269,9 +33010,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 978, + "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L978" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L967" } ], "type": { @@ -32291,9 +33032,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 976, + "line": 965, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L976" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L965" } ] } @@ -32312,9 +33053,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1003, + "line": 992, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L992" } ], "type": { @@ -32356,9 +33097,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 941, + "line": 930, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L930" } ], "type": { @@ -32387,9 +33128,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 944, + "line": 933, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L944" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L933" } ], "type": { @@ -32408,9 +33149,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 945, + "line": 934, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L945" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L934" } ], "type": { @@ -32444,9 +33185,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 942, + "line": 931, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L942" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L931" } ], "type": { @@ -32464,9 +33205,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 941, + "line": 930, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L941" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L930" } ] } @@ -32481,9 +33222,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 927, + "line": 916, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L916" } ], "type": { @@ -32504,9 +33245,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 929, + "line": 918, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L918" } ], "type": { @@ -32525,9 +33266,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 931, + "line": 920, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L931" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L920" } ], "type": { @@ -32570,9 +33311,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 930, + "line": 919, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L930" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L919" } ], "type": { @@ -32589,9 +33330,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 928, + "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -32609,9 +33350,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 927, + "line": 916, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L927" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L916" } ] } @@ -32628,7 +33369,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L80" } ], "type": { @@ -32653,7 +33394,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L109" } ], "type": { @@ -32674,7 +33415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L127" } ], "type": { @@ -32697,7 +33438,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 127, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L127" } ], "signatures": [ @@ -32779,7 +33520,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "type": { @@ -32802,7 +33543,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "signatures": [ @@ -32848,7 +33589,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "indexSignatures": [ @@ -32863,7 +33604,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 107, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L107" } ], "parameters": [ @@ -32920,9 +33661,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 190, + "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L179" } ], "type": { @@ -32945,7 +33686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L123" } ], "type": { @@ -32971,7 +33712,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L125" } ], "type": { @@ -33001,9 +33742,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 141, + "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L146" } ], "type": { @@ -33024,7 +33765,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L84" } ], "type": { @@ -33040,7 +33781,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L84" } ], "indexSignatures": [ @@ -33055,7 +33796,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L84" } ], "parameters": [ @@ -33092,33 +33833,43 @@ "summary": [ { "kind": "text", - "text": "Provide your own locking mechanism based on the environment. By default,\n" + "text": "Provide your own locking mechanism based on the environment. By default\nthe client coordinates refreshes itself (single-flight via\n" }, { "kind": "code", - "text": "`navigatorLock`" + "text": "`refreshingDeferred`" }, { "kind": "text", - "text": " (Web Locks API) is used in browser environments when\n" + "text": " + commit guard) and relies on the GoTrue server to\nresolve cross-tab refresh races. Passing a custom lock opts into a\nlegacy path that wraps every auth operation in your supplied lock — this\npath is preserved for backwards compatibility (typically React Native\n" }, { "kind": "code", - "text": "`persistSession`" + "text": "`processLock`" }, { "kind": "text", - "text": " is true. Falls back to an in-process lock for non-browser\nenvironments (e.g. React Native)." + "text": " or Node multi-process setups)." } ], - "modifierTags": ["@experimental"] + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Custom locks still work in v2.x for backwards compatibility.\nThe legacy lock path will be removed in v3 — drop this option from your\nconstructor options before upgrading." + } + ] + } + ] }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 136, + "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L141" } ], "type": { @@ -33140,23 +33891,23 @@ "summary": [ { "kind": "text", - "text": "The maximum time in milliseconds to wait for acquiring a cross-tab synchronization lock.\n\nWhen multiple browser tabs or windows use the auth client simultaneously, they coordinate\nvia the Web Locks API to prevent race conditions during session refresh and other operations.\nThis timeout controls how long to wait before attempting lock recovery.\n\n- **Positive value**: Wait up to this many milliseconds. If the lock is still held, attempt\n automatic recovery by stealing it (the previous holder is evicted, its callback continues\n to completion without exclusive access). This recovers from orphaned locks caused by\n React Strict Mode double-mount, storage API hangs, or aborted operations.\n- **Zero (0)**: Fail immediately if the lock is unavailable; throws " + "text": "The maximum time in milliseconds to wait for acquiring the custom lock\nsupplied via the " }, { "kind": "code", - "text": "`LockAcquireTimeoutError`" + "text": "`lock`" }, { "kind": "text", - "text": "\n (check " + "text": " option. Only consulted when a custom " }, { "kind": "code", - "text": "`error.isAcquireTimeout === true`" + "text": "`lock`" }, { "kind": "text", - "text": ").\n- **Negative value**: Wait indefinitely — can cause permanent deadlocks if the lock is orphaned." + "text": " is\npassed — the default lockless path doesn't use this timeout." } ], "blockTags": [ @@ -33170,11 +33921,19 @@ ] }, { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "Only used by the legacy lock path. Will be removed in v3\nalong with the " + }, { "kind": "code", - "text": "```ts\nconst client = createClient(url, key, {\n auth: {\n lockAcquireTimeout: 5000, // 5 seconds, then steal orphaned lock\n },\n})\n```" + "text": "`lock`" + }, + { + "kind": "text", + "text": " option." } ] } @@ -33183,9 +33942,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 173, + "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L162" } ], "type": { @@ -33206,7 +33965,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L111" } ], "type": { @@ -33244,9 +34003,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 182, + "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L171" } ], "type": { @@ -33267,7 +34026,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L113" } ], "type": { @@ -33290,7 +34049,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L86" } ], "type": { @@ -33317,9 +34076,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 146, + "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L151" } ], "type": { @@ -33340,7 +34099,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L82" } ], "type": { @@ -33410,7 +34169,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L121" } ], "type": { @@ -33434,7 +34193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L80" } ] } @@ -33449,9 +34208,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1831, + "line": 1820, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1820" } ], "type": { @@ -33472,9 +34231,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1831, + "line": 1820, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1820" } ], "type": { @@ -33482,7 +34241,7 @@ "types": [ { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -33503,9 +34262,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1831, + "line": 1820, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1831" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1820" } ] } @@ -33520,9 +34279,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1950, + "line": 1939, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1950" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1939" } ], "type": { @@ -33543,9 +34302,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1951, + "line": 1940, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1951" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1940" } ], "type": { @@ -33581,9 +34340,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1951, + "line": 1940, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1951" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1940" } ] } @@ -33602,9 +34361,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1952, + "line": 1941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1952" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1941" } ], "type": { @@ -33621,9 +34380,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1953, + "line": 1942, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1953" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1942" } ], "type": { @@ -33641,9 +34400,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1950, + "line": 1939, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1950" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1939" } ] } @@ -33666,9 +34425,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2385, + "line": 2374, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2374" } ], "type": { @@ -33699,9 +34458,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2387, + "line": 2376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2387" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2376" } ], "type": { @@ -33721,9 +34480,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2385, + "line": 2374, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2374" } ] } @@ -33757,7 +34516,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L78" } ], "type": { @@ -33773,7 +34532,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -33866,7 +34625,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L78" } ], "signatures": [ @@ -33932,9 +34691,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1117, + "line": 1106, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1106" } ], "type": { @@ -33956,9 +34715,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1105, + "line": 1094, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1105" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1094" } ], "type": { @@ -33994,9 +34753,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1086, + "line": 1075, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1075" } ], "type": { @@ -34032,9 +34791,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1079, + "line": 1068, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1079" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1068" } ], "type": { @@ -34077,9 +34836,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1103, + "line": 1092, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1103" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1092" } ], "type": { @@ -34115,9 +34874,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1011, + "line": 1000, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1011" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1000" } ], "type": { @@ -34153,9 +34912,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1881, + "line": 1870, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1881" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1870" } ], "type": { @@ -34197,9 +34956,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1875, + "line": 1864, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1875" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1864" } ], "type": { @@ -34262,9 +35021,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1892, + "line": 1881, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1892" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1881" } ], "type": { @@ -34306,9 +35065,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1077, + "line": 1066, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1077" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1066" } ], "type": { @@ -34341,9 +35100,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1013, + "line": 1002, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1013" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1002" } ], "type": { @@ -34372,9 +35131,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1015, + "line": 1004, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1015" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1004" } ], "type": { @@ -34392,9 +35151,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1013, + "line": 1002, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1013" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1002" } ] } @@ -34409,9 +35168,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1069, + "line": 1058, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1069" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1058" } ], "type": { @@ -34447,9 +35206,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1034, + "line": 1023, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1034" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1023" } ], "type": { @@ -34485,9 +35244,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1030, + "line": 1019, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1030" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1019" } ], "type": { @@ -34531,9 +35290,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1056, + "line": 1045, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1045" } ], "typeParameters": [ @@ -34597,9 +35356,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1057, + "line": 1046, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1046" } ], "type": { @@ -34645,9 +35404,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1056, + "line": 1045, "character": 98, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1045" } ] } @@ -34683,9 +35442,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1066, + "line": 1055, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1066" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1055" } ], "typeParameters": [ @@ -34770,9 +35529,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 861, + "line": 850, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L850" } ], "type": { @@ -34804,9 +35563,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 861, + "line": 850, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L850" } ] } @@ -34833,9 +35592,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2481, + "line": 2470, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2470" } ], "type": { @@ -34864,9 +35623,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2483, + "line": 2472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2483" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2472" } ], "type": { @@ -34891,9 +35650,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2489, + "line": 2478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2478" } ], "type": { @@ -34918,9 +35677,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2485, + "line": 2474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2485" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2474" } ], "type": { @@ -34945,9 +35704,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2487, + "line": 2476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2487" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2476" } ], "type": { @@ -34965,9 +35724,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2481, + "line": 2470, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2470" } ] } @@ -35006,9 +35765,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2503, + "line": 2492, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2492" } ], "type": { @@ -35037,9 +35796,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2505, + "line": 2494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2494" } ], "type": { @@ -35064,9 +35823,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2509, + "line": 2498, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2509" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2498" } ], "type": { @@ -35093,9 +35852,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2507, + "line": 2496, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2507" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2496" } ], "type": { @@ -35120,9 +35879,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2518, + "line": 2507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2507" } ], "type": { @@ -35147,9 +35906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2511, + "line": 2500, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2500" } ], "type": { @@ -35178,9 +35937,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2515, + "line": 2504, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2504" } ], "type": { @@ -35205,9 +35964,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2513, + "line": 2502, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2513" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2502" } ], "type": { @@ -35225,9 +35984,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2511, + "line": 2500, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2511" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2500" } ] } @@ -35243,9 +36002,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2503, + "line": 2492, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2503" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2492" } ] } @@ -35268,9 +36027,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2049, + "line": 2038, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2049" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2038" } ], "type": { @@ -35299,9 +36058,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2051, + "line": 2040, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2051" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2040" } ], "type": { @@ -35326,9 +36085,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2053, + "line": 2042, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2053" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2042" } ], "type": { @@ -35355,9 +36114,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2055, + "line": 2044, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2055" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2044" } ], "type": { @@ -35382,9 +36141,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2057, + "line": 2046, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2046" } ], "type": { @@ -35413,9 +36172,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2063, + "line": 2052, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2063" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2052" } ], "type": { @@ -35440,9 +36199,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2075, + "line": 2064, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2075" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2064" } ], "type": { @@ -35467,9 +36226,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2069, + "line": 2058, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2069" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2058" } ], "type": { @@ -35501,9 +36260,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2065, + "line": 2054, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2065" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2054" } ], "type": { @@ -35528,9 +36287,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2067, + "line": 2056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2067" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2056" } ], "type": { @@ -35558,9 +36317,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2061, + "line": 2050, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2061" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2050" } ], "type": { @@ -35587,9 +36346,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2071, + "line": 2060, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2060" } ], "type": { @@ -35621,9 +36380,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2073, + "line": 2062, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2073" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2062" } ], "type": { @@ -35648,9 +36407,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2059, + "line": 2048, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2059" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2048" } ], "type": { @@ -35677,9 +36436,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2077, + "line": 2066, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2077" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2066" } ], "type": { @@ -35699,9 +36458,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2049, + "line": 2038, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2049" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2038" } ] } @@ -35724,9 +36483,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2016, + "line": 2005, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2016" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2005" } ], "type": { @@ -35758,9 +36517,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2016, + "line": 2005, "character": 86, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2016" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2005" } ] } @@ -35787,9 +36546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2131, + "line": 2120, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2120" } ], "type": { @@ -35813,9 +36572,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -35839,9 +36598,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -35858,9 +36617,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ], "type": { @@ -35883,9 +36642,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2133, + "line": 2122, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2122" } ] } @@ -35908,9 +36667,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2134, + "line": 2123, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2123" } ], "type": { @@ -35928,9 +36687,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2132, + "line": 2121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2121" } ] } @@ -35953,9 +36712,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2137, + "line": 2126, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2126" } ], "type": { @@ -35976,9 +36735,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2137, + "line": 2126, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2126" } ], "type": { @@ -35995,9 +36754,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2137, + "line": 2126, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2126" } ] } @@ -36012,14 +36771,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2138, + "line": 2127, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2127" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -36034,9 +36793,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2136, + "line": 2125, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2125" } ] } @@ -36061,9 +36820,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2034, + "line": 2023, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2034" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2023" } ], "type": { @@ -36097,9 +36856,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2125, + "line": 2114, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2114" } ], "type": { @@ -36134,9 +36893,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2022, + "line": 2011, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2022" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2011" } ], "type": { @@ -36161,9 +36920,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2040, + "line": 2029, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2040" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2029" } ], "type": { @@ -36201,9 +36960,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2028, + "line": 2017, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2028" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2017" } ], "type": { @@ -36237,9 +36996,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2575, + "line": 2564, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2575" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2564" } ], "type": { @@ -36268,9 +37027,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2577, + "line": 2566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2577" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2566" } ], "type": { @@ -36297,9 +37056,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2581, + "line": 2570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2570" } ], "type": { @@ -36324,9 +37083,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2579, + "line": 2568, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2568" } ], "type": { @@ -36347,9 +37106,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2575, + "line": 2564, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2575" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2564" } ] } @@ -36380,9 +37139,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2534, + "line": 2523, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2523" } ], "type": { @@ -36411,9 +37170,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2536, + "line": 2525, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2525" } ], "type": { @@ -36431,9 +37190,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2534, + "line": 2523, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2534" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2523" } ] } @@ -36448,9 +37207,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 284, + "line": 273, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L284" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L273" } ], "type": { @@ -36474,9 +37233,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 286, + "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L275" } ], "type": { @@ -36497,9 +37256,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 287, + "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L276" } ], "type": { @@ -36518,9 +37277,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 288, + "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L277" } ], "type": { @@ -36538,9 +37297,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 286, + "line": 275, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L275" } ] } @@ -36555,9 +37314,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 290, + "line": 279, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L279" } ], "type": { @@ -36575,9 +37334,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 285, + "line": 274, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L274" } ] } @@ -36600,9 +37359,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 293, + "line": 282, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L282" } ], "type": { @@ -36623,9 +37382,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 294, + "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L283" } ], "type": { @@ -36644,9 +37403,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 295, + "line": 284, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L284" } ], "type": { @@ -36664,9 +37423,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 293, + "line": 282, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L282" } ] } @@ -36681,14 +37440,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 297, + "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L286" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -36703,9 +37462,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 292, + "line": 281, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L281" } ] } @@ -36730,9 +37489,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2223, + "line": 2212, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2223" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2212" } ], "type": { @@ -36761,9 +37520,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2227, + "line": 2216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2216" } ], "type": { @@ -36788,9 +37547,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2225, + "line": 2214, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2214" } ], "type": { @@ -36815,9 +37574,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2231, + "line": 2220, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2231" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2220" } ], "type": { @@ -36844,9 +37603,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2235, + "line": 2224, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2224" } ], "type": { @@ -36873,9 +37632,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2243, + "line": 2232, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2243" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2232" } ], "type": { @@ -36905,9 +37664,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2239, + "line": 2228, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2228" } ], "type": { @@ -36937,9 +37696,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2237, + "line": 2226, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2226" } ], "type": { @@ -36969,9 +37728,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2241, + "line": 2230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2230" } ], "type": { @@ -36999,9 +37758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2229, + "line": 2218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2218" } ], "type": { @@ -37028,9 +37787,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2233, + "line": 2222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2222" } ], "type": { @@ -37048,9 +37807,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2223, + "line": 2212, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2223" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2212" } ] } @@ -37065,9 +37824,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1842, + "line": 1831, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1831" } ], "type": { @@ -37098,9 +37857,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1844, + "line": 1833, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1844" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1833" } ], "type": { @@ -37127,9 +37886,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1846, + "line": 1835, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1835" } ], "type": { @@ -37147,9 +37906,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1842, + "line": 1831, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1842" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1831" } ] } @@ -37164,9 +37923,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1835, + "line": 1824, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1835" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1824" } ], "type": { @@ -37187,9 +37946,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1838, + "line": 1827, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1838" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1827" } ], "type": { @@ -37206,9 +37965,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1837, + "line": 1826, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1837" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1826" } ], "type": { @@ -37234,9 +37993,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1839, + "line": 1828, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1839" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1828" } ], "type": { @@ -37254,9 +38013,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1835, + "line": 1824, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1835" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1824" } ], "indexSignatures": [ @@ -37269,9 +38028,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1836, + "line": 1825, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1836" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1825" } ], "parameters": [ @@ -37313,9 +38072,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2720, + "line": 2709, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2709" } ], "type": { @@ -37336,9 +38095,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2721, + "line": 2710, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2721" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2710" } ], "type": { @@ -37355,9 +38114,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2723, + "line": 2712, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2723" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2712" } ], "type": { @@ -37374,9 +38133,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2722, + "line": 2711, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2722" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2711" } ], "type": { @@ -37399,9 +38158,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2720, + "line": 2709, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2720" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2709" } ] } @@ -37424,9 +38183,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2727, + "line": 2716, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2716" } ], "type": { @@ -37447,9 +38206,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2728, + "line": 2717, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2728" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2717" } ], "type": { @@ -37466,9 +38225,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2729, + "line": 2718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2729" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2718" } ], "type": { @@ -37491,9 +38250,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2727, + "line": 2716, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2716" } ] } @@ -37508,9 +38267,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2782, + "line": 2771, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2771" } ], "type": { @@ -37539,9 +38298,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2784, + "line": 2773, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2784" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2773" } ], "type": { @@ -37559,9 +38318,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2782, + "line": 2771, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2782" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2771" } ] } @@ -37584,9 +38343,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2733, + "line": 2722, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2722" } ], "type": { @@ -37607,9 +38366,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2736, + "line": 2725, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2736" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2725" } ], "type": { @@ -37628,9 +38387,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2735, + "line": 2724, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2735" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2724" } ], "type": { @@ -37647,9 +38406,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2734, + "line": 2723, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2734" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2723" } ], "type": { @@ -37668,9 +38427,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2737, + "line": 2726, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2737" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2726" } ], "type": { @@ -37688,9 +38447,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2733, + "line": 2722, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2722" } ] } @@ -37713,9 +38472,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2713, + "line": 2702, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2702" } ], "type": { @@ -37736,9 +38495,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2716, + "line": 2705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2716" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2705" } ], "type": { @@ -37757,9 +38516,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2715, + "line": 2704, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2715" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2704" } ], "type": { @@ -37776,9 +38535,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2714, + "line": 2703, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2703" } ], "type": { @@ -37796,9 +38555,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2713, + "line": 2702, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2713" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2702" } ] } @@ -37821,9 +38580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2700, + "line": 2689, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2689" } ], "type": { @@ -37844,9 +38603,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2701, + "line": 2690, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2701" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2690" } ], "type": { @@ -37863,9 +38622,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2703, + "line": 2692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2703" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2692" } ], "type": { @@ -37882,9 +38641,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2702, + "line": 2691, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2702" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2691" } ], "type": { @@ -37907,9 +38666,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2700, + "line": 2689, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2689" } ] } @@ -37932,9 +38691,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2707, + "line": 2696, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2696" } ], "type": { @@ -37955,9 +38714,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2708, + "line": 2697, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2697" } ], "type": { @@ -37974,9 +38733,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2709, + "line": 2698, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2698" } ], "type": { @@ -37999,9 +38758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2707, + "line": 2696, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2707" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2696" } ] } @@ -38016,9 +38775,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2775, + "line": 2764, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2764" } ], "type": { @@ -38047,9 +38806,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2779, + "line": 2768, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2768" } ], "type": { @@ -38074,9 +38833,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2777, + "line": 2766, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2777" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2766" } ], "type": { @@ -38094,9 +38853,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2775, + "line": 2764, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2764" } ] } @@ -38119,9 +38878,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 218, + "line": 207, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L207" } ], "typeParameters": [ @@ -38230,7 +38989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L24" } ], "type": { @@ -38389,9 +39148,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2749, + "line": 2738, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2738" } ], "type": { @@ -38414,9 +39173,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2750, + "line": 2739, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2739" } ], "type": { @@ -38439,9 +39198,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2751, + "line": 2740, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2751" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2740" } ], "type": { @@ -38464,9 +39223,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2750, + "line": 2739, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2739" } ] } @@ -38482,9 +39241,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2749, + "line": 2738, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2738" } ] } @@ -38507,9 +39266,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 230, + "line": 219, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L219" } ], "typeParameters": [ @@ -38537,7 +39296,7 @@ }, "default": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -38564,9 +39323,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 232, + "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L221" } ], "type": { @@ -38586,9 +39345,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 233, + "line": 222, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -38606,9 +39365,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 231, + "line": 220, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L220" } ] } @@ -38631,9 +39390,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 236, + "line": 225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L225" } ], "type": { @@ -38650,9 +39409,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 237, + "line": 226, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L226" } ], "type": { @@ -38668,13 +39427,13 @@ }, "extendsType": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, "trueType": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -38697,9 +39456,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 235, + "line": 224, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L224" } ] } @@ -38729,9 +39488,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 244, + "line": 233, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L233" } ], "typeParameters": [ @@ -38764,9 +39523,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 245, + "line": 234, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L234" } ], "type": { @@ -38786,9 +39545,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 245, + "line": 234, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L234" } ], "type": { @@ -38806,9 +39565,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 245, + "line": 234, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L234" } ] } @@ -38831,9 +39590,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 247, + "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L236" } ], "type": { @@ -38883,14 +39642,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 248, + "line": 237, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L237" } ], "type": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -38905,9 +39664,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 246, + "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L235" } ] } @@ -38924,9 +39683,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1956, + "line": 1945, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1956" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1945" } ], "type": { @@ -38947,9 +39706,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1963, + "line": 1952, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1963" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1952" } ], "type": { @@ -38968,9 +39727,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1959, + "line": 1948, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1959" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1948" } ], "type": { @@ -38999,9 +39758,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1960, + "line": 1949, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1960" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1949" } ], "type": { @@ -39018,9 +39777,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1961, + "line": 1950, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1961" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1950" } ], "type": { @@ -39037,9 +39796,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1957, + "line": 1946, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1957" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1946" } ], "type": { @@ -39056,9 +39815,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1962, + "line": 1951, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1962" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1951" } ], "type": { @@ -39075,9 +39834,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1964, + "line": 1953, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1964" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1953" } ], "type": { @@ -39094,9 +39853,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1958, + "line": 1947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1958" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1947" } ], "type": { @@ -39114,9 +39873,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1956, + "line": 1945, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1956" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1945" } ] } @@ -39138,9 +39897,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 871, + "line": 860, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L871" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L860" } ], "type": { @@ -39164,9 +39923,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 874, + "line": 863, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L863" } ], "type": { @@ -39185,9 +39944,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 875, + "line": 864, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L875" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L864" } ], "type": { @@ -39218,9 +39977,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 879, + "line": 868, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L879" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L868" } ], "type": { @@ -39247,9 +40006,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 877, + "line": 866, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L877" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L866" } ], "type": { @@ -39267,9 +40026,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 875, + "line": 864, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L875" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L864" } ] } @@ -39284,9 +40043,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 873, + "line": 862, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L873" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L862" } ], "type": { @@ -39330,9 +40089,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 872, + "line": 861, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L861" } ] } @@ -39357,9 +40116,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 885, + "line": 874, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L885" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L874" } ], "type": { @@ -39390,9 +40149,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 887, + "line": 876, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L887" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L876" } ], "type": { @@ -39410,9 +40169,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 885, + "line": 874, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L885" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L874" } ] } @@ -39427,9 +40186,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 884, + "line": 873, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L884" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L873" } ], "type": { @@ -39446,9 +40205,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 883, + "line": 872, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L883" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L872" } ], "type": { @@ -39492,9 +40251,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 882, + "line": 871, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L882" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L871" } ] } @@ -39511,9 +40270,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 626, + "line": 615, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L615" } ], "type": { @@ -39536,9 +40295,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 627, + "line": 616, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L616" } ], "type": { @@ -39569,9 +40328,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 635, + "line": 624, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L624" } ], "type": { @@ -39614,9 +40373,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 633, + "line": 622, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L622" } ], "type": { @@ -39634,9 +40393,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 627, + "line": 616, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L616" } ] } @@ -39652,9 +40411,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 626, + "line": 615, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L615" } ] } @@ -39669,9 +40428,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 712, + "line": 701, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L701" } ], "type": { @@ -39710,9 +40469,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 718, + "line": 707, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L718" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L707" } ], "type": { @@ -39747,9 +40506,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 720, + "line": 709, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L720" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L709" } ], "type": { @@ -39768,9 +40527,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 721, + "line": 710, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L710" } ], "type": { @@ -39801,9 +40560,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 723, + "line": 712, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L723" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L712" } ], "type": { @@ -39821,9 +40580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 721, + "line": 710, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L710" } ] } @@ -39910,9 +40669,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 714, + "line": 703, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L703" } ], "type": { @@ -39969,9 +40728,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 714, + "line": 703, "character": 97, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L703" } ] } @@ -40030,9 +40789,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 716, + "line": 705, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L705" } ], "type": { @@ -40050,9 +40809,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 712, + "line": 701, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L701" } ] } @@ -40067,9 +40826,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 697, + "line": 686, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L686" } ], "type": { @@ -40092,9 +40851,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 700, + "line": 689, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L689" } ], "type": { @@ -40125,9 +40884,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 706, + "line": 695, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L695" } ], "type": { @@ -40141,9 +40900,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 706, + "line": 695, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L695" } ], "indexSignatures": [ @@ -40156,9 +40915,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 706, + "line": 695, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L706" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L695" } ], "parameters": [ @@ -40202,9 +40961,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 702, + "line": 691, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L702" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L691" } ], "type": { @@ -40231,9 +40990,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 704, + "line": 693, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L704" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L693" } ], "type": { @@ -40260,9 +41019,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 708, + "line": 697, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L697" } ], "type": { @@ -40280,9 +41039,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 700, + "line": 689, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L700" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L689" } ] } @@ -40305,9 +41064,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 699, + "line": 688, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L699" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L688" } ], "type": { @@ -40327,9 +41086,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 697, + "line": 686, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L697" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L686" } ] } @@ -40344,9 +41103,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2742, + "line": 2731, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2742" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2731" } ], "type": { @@ -40369,9 +41128,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2743, + "line": 2732, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2743" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2732" } ], "type": { @@ -40394,9 +41153,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2744, + "line": 2733, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2744" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2733" } ], "type": { @@ -40415,9 +41174,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2745, + "line": 2734, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2745" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2734" } ], "type": { @@ -40440,9 +41199,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2743, + "line": 2732, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2743" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2732" } ] } @@ -40458,9 +41217,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2742, + "line": 2731, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2742" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2731" } ] } @@ -40475,9 +41234,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 652, + "line": 641, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L641" } ], "type": { @@ -40512,9 +41271,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 653, + "line": 642, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L642" } ], "type": { @@ -40537,9 +41296,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 654, + "line": 643, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L643" } ], "type": { @@ -40557,9 +41316,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 653, + "line": 642, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L642" } ] } @@ -40575,9 +41334,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 652, + "line": 641, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L641" } ] } @@ -40594,9 +41353,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 658, + "line": 647, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L658" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L647" } ], "type": { @@ -40628,9 +41387,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 661, + "line": 650, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L661" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L650" } ], "type": { @@ -40649,9 +41408,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 662, + "line": 651, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L651" } ], "type": { @@ -40682,9 +41441,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 674, + "line": 663, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L663" } ], "type": { @@ -40727,9 +41486,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 672, + "line": 661, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L672" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L661" } ], "type": { @@ -40756,9 +41515,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 664, + "line": 653, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L653" } ], "type": { @@ -40785,9 +41544,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 666, + "line": 655, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L655" } ], "type": { @@ -40805,9 +41564,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 662, + "line": 651, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L651" } ] } @@ -40823,9 +41582,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 659, + "line": 648, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L659" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L648" } ] } @@ -40850,9 +41609,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 680, + "line": 669, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L669" } ], "type": { @@ -40883,9 +41642,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 690, + "line": 679, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L690" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L679" } ], "type": { @@ -40912,9 +41671,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 692, + "line": 681, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L681" } ], "type": { @@ -40966,9 +41725,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 688, + "line": 677, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L688" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L677" } ], "type": { @@ -40995,9 +41754,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 682, + "line": 671, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L671" } ], "type": { @@ -41015,9 +41774,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 680, + "line": 669, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L669" } ] } @@ -41040,9 +41799,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 679, + "line": 668, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L668" } ], "type": { @@ -41060,9 +41819,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 677, + "line": 666, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L666" } ] } @@ -41079,9 +41838,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 891, + "line": 880, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L880" } ], "type": { @@ -41107,9 +41866,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 896, + "line": 885, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L896" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L885" } ], "type": { @@ -41140,9 +41899,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 900, + "line": 889, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L900" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L889" } ], "type": { @@ -41169,9 +41928,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 898, + "line": 887, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L898" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L887" } ], "type": { @@ -41198,9 +41957,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 906, + "line": 895, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L906" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L895" } ], "type": { @@ -41218,9 +41977,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 896, + "line": 885, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L896" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L885" } ] } @@ -41243,9 +42002,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 894, + "line": 883, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L894" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L883" } ], "type": { @@ -41263,9 +42022,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 892, + "line": 881, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L881" } ] } @@ -41296,9 +42055,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 911, + "line": 900, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L911" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L900" } ], "type": { @@ -41317,9 +42076,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 913, + "line": 902, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L913" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L902" } ], "type": { @@ -41350,9 +42109,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 917, + "line": 906, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L906" } ], "type": { @@ -41379,9 +42138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 915, + "line": 904, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L915" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L904" } ], "type": { @@ -41408,9 +42167,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 923, + "line": 912, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L923" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -41428,9 +42187,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 913, + "line": 902, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L913" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L902" } ] } @@ -41446,9 +42205,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 909, + "line": 898, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L909" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L898" } ] } @@ -41465,9 +42224,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1849, + "line": 1838, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1838" } ], "type": { @@ -41498,9 +42257,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1860, + "line": 1849, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1860" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1849" } ], "type": { @@ -41531,9 +42290,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1849, + "line": 1838, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1838" } ] } @@ -41548,9 +42307,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2010, + "line": 1999, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1999" } ], "type": { @@ -41579,9 +42338,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 639, + "line": 628, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L628" } ], "type": { @@ -41616,9 +42375,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 640, + "line": 629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L629" } ], "type": { @@ -41641,9 +42400,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 643, + "line": 632, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L632" } ], "type": { @@ -41662,9 +42421,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 644, + "line": 633, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L644" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L633" } ], "type": { @@ -41692,9 +42451,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 642, + "line": 631, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L642" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L631" } ], "type": { @@ -41713,9 +42472,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 641, + "line": 630, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L641" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L630" } ], "type": { @@ -41733,9 +42492,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 640, + "line": 629, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L629" } ] } @@ -41751,9 +42510,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 639, + "line": 628, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L628" } ] } @@ -41770,9 +42529,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 727, + "line": 716, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L716" } ], "type": { @@ -41795,9 +42554,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 729, + "line": 718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L718" } ], "type": { @@ -41821,9 +42580,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 730, + "line": 719, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L719" } ], "type": { @@ -41837,9 +42596,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 730, + "line": 719, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L719" } ], "signatures": [ @@ -41868,9 +42627,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 729, + "line": 718, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L729" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L718" } ] } @@ -41893,9 +42652,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 728, + "line": 717, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L717" } ], "type": { @@ -41909,9 +42668,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 728, + "line": 717, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L717" } ], "signatures": [ @@ -41997,9 +42756,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 733, + "line": 722, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L722" } ], "type": { @@ -42013,9 +42772,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 733, + "line": 722, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L722" } ], "signatures": [ @@ -42109,9 +42868,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 727, + "line": 716, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L727" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L716" } ] } @@ -42126,9 +42885,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 736, + "line": 725, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L736" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L725" } ], "type": { @@ -42152,9 +42911,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 738, + "line": 727, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L727" } ], "type": { @@ -42173,9 +42932,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 746, + "line": 735, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L735" } ], "type": { @@ -42206,9 +42965,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 751, + "line": 740, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L751" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L740" } ], "type": { @@ -42227,9 +42986,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 753, + "line": 742, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L753" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L742" } ], "type": { @@ -42308,9 +43067,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 748, + "line": 737, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L748" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L737" } ], "type": { @@ -42328,9 +43087,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 746, + "line": 735, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L735" } ] } @@ -42355,9 +43114,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 744, + "line": 733, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L744" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L733" } ], "type": { @@ -42392,9 +43151,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 741, + "line": 730, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L730" } ], "type": { @@ -42414,9 +43173,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 737, + "line": 726, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L737" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L726" } ] } @@ -42439,9 +43198,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 759, + "line": 748, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L748" } ], "type": { @@ -42490,9 +43249,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 762, + "line": 751, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L762" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L751" } ], "type": { @@ -42511,9 +43270,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 767, + "line": 756, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L756" } ], "type": { @@ -42544,9 +43303,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 769, + "line": 758, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L758" } ], "type": { @@ -42564,9 +43323,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 767, + "line": 756, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L756" } ] } @@ -42589,9 +43348,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 765, + "line": 754, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L754" } ], "type": { @@ -42614,9 +43373,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 758, + "line": 747, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L747" } ] } @@ -42633,9 +43392,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 300, + "line": 289, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L289" } ], "type": { @@ -42676,9 +43435,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 308, + "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L297" } ], "type": { @@ -42696,9 +43455,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 300, + "line": 289, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L289" } ] } @@ -42717,9 +43476,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2762, + "line": 2751, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2762" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2751" } ], "type": { @@ -42742,9 +43501,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2763, + "line": 2752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2752" } ], "type": { @@ -42767,9 +43526,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2764, + "line": 2753, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2764" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2753" } ], "type": { @@ -42787,9 +43546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2763, + "line": 2752, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2763" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2752" } ] } @@ -42805,9 +43564,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2762, + "line": 2751, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2762" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2751" } ] } @@ -42830,9 +43589,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 225, + "line": 214, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L214" } ], "typeParameters": [ @@ -42897,9 +43656,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1818, + "line": 1807, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1818" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1807" } ], "type": { @@ -42989,9 +43748,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1828, + "line": 1817, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1828" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1817" } ], "type": { @@ -43009,9 +43768,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 1820, + "line": 1809, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L1820" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1809" } ] } @@ -43052,9 +43811,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2345, + "line": 2334, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2345" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2334" } ], "type": { @@ -43085,9 +43844,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2353, + "line": 2342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2353" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2342" } ], "type": { @@ -43117,9 +43876,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2359, + "line": 2348, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2359" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2348" } ], "type": { @@ -43161,9 +43920,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2361, + "line": 2350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2350" } ], "type": { @@ -43205,9 +43964,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2373, + "line": 2362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2373" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2362" } ], "type": { @@ -43234,9 +43993,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2349, + "line": 2338, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2349" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2338" } ], "type": { @@ -43263,9 +44022,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2351, + "line": 2340, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2351" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2340" } ], "type": { @@ -43292,9 +44051,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2369, + "line": 2358, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2369" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2358" } ], "type": { @@ -43321,9 +44080,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2365, + "line": 2354, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2365" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2354" } ], "type": { @@ -43350,9 +44109,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2363, + "line": 2352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2352" } ], "type": { @@ -43379,9 +44138,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2367, + "line": 2356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2367" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2356" } ], "type": { @@ -43408,9 +44167,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2379, + "line": 2368, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2379" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2368" } ], "type": { @@ -43437,9 +44196,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2347, + "line": 2336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2347" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2336" } ], "type": { @@ -43466,9 +44225,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2357, + "line": 2346, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2357" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2346" } ], "type": { @@ -43495,9 +44254,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2355, + "line": 2344, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2344" } ], "type": { @@ -43527,9 +44286,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2371, + "line": 2360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2371" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2360" } ], "type": { @@ -43556,9 +44315,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2375, + "line": 2364, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2364" } ], "type": { @@ -43585,9 +44344,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2377, + "line": 2366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2377" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2366" } ], "type": { @@ -43608,9 +44367,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2345, + "line": 2334, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2345" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2334" } ] } @@ -43633,9 +44392,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2106, + "line": 2095, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2095" } ], "type": { @@ -43666,9 +44425,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2108, + "line": 2097, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2097" } ], "type": { @@ -43695,9 +44454,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2110, + "line": 2099, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2110" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2099" } ], "type": { @@ -43724,9 +44483,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2116, + "line": 2105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2105" } ], "type": { @@ -43758,9 +44517,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2112, + "line": 2101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2112" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2101" } ], "type": { @@ -43787,9 +44546,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2114, + "line": 2103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2103" } ], "type": { @@ -43819,9 +44578,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2118, + "line": 2107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2107" } ], "type": { @@ -43841,9 +44600,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2106, + "line": 2095, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2106" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2095" } ] } @@ -43858,9 +44617,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 311, + "line": 300, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L300" } ], "type": { @@ -43885,9 +44644,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 312, + "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L301" } ], "type": { @@ -43907,9 +44666,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 311, + "line": 300, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L300" } ] } @@ -43928,9 +44687,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 814, + "line": 803, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L814" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L803" } ], "type": { @@ -43966,9 +44725,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2768, + "line": 2757, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2768" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2757" } ], "type": { @@ -43997,9 +44756,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2770, + "line": 2759, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2770" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2759" } ], "type": { @@ -44024,9 +44783,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2772, + "line": 2761, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2761" } ], "type": { @@ -44049,9 +44808,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2768, + "line": 2757, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2768" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2757" } ] } @@ -44066,9 +44825,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2755, + "line": 2744, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2744" } ], "type": { @@ -44097,9 +44856,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2757, + "line": 2746, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2757" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2746" } ], "type": { @@ -44124,9 +44883,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2759, + "line": 2748, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2759" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2748" } ], "type": { @@ -44149,9 +44908,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2755, + "line": 2744, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2755" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L2744" } ] } @@ -44166,9 +44925,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 209, + "line": 198, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L198" } ], "type": { @@ -44189,9 +44948,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 211, + "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L200" } ], "type": { @@ -44208,9 +44967,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 210, + "line": 199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L199" } ], "type": { @@ -44233,9 +44992,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 209, + "line": 198, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L198" } ] } @@ -44250,9 +45009,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 208, + "line": 197, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L197" } ], "type": { @@ -44285,9 +45044,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 812, + "line": 801, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L812" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L801" } ], "type": { @@ -44321,7 +45080,7 @@ "fileName": "packages/core/auth-js/src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/AuthAdminApi.ts#L3" } ], "type": { @@ -44348,14 +45107,14 @@ "fileName": "packages/core/auth-js/src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/AuthClient.ts#L3" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 139, + "target": 136, "name": "default", "package": "@supabase/auth-js" } @@ -44372,14 +45131,41 @@ }, "comment": { "summary": [], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Debug flag for " + }, + { + "kind": "code", + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " / " + }, + { + "kind": "code", + "text": "`processLock`" + }, + { + "kind": "text", + "text": ". The auth\nclient ignores both, so this has no client-side effect." + } + ] + } + ], "modifierTags": ["@experimental"] }, "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 6, + "line": 17, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L17" } ], "type": { @@ -44404,9 +45190,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 10, + "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L21" } ], "type": { @@ -44425,9 +45211,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 6, + "line": 17, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L17" } ] } @@ -44445,9 +45231,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/types.ts", - "line": 2009, + "line": 1998, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/types.ts#L2009" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/types.ts#L1998" } ], "type": { @@ -44484,7 +45270,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L75" } ], "signatures": [ @@ -44499,7 +45285,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 75, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L75" } ], "parameters": [ @@ -44521,7 +45307,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1741, + "target": 1744, "name": "AuthApiError", "package": "@supabase/auth-js" } @@ -44540,7 +45326,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L50" } ], "signatures": [ @@ -44555,7 +45341,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L50" } ], "parameters": [ @@ -44577,7 +45363,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1723, + "target": 1726, "name": "AuthError", "package": "@supabase/auth-js" } @@ -44596,7 +45382,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L210" } ], "signatures": [ @@ -44611,7 +45397,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 210, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L210" } ], "parameters": [ @@ -44633,7 +45419,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1846, + "target": 1849, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" } @@ -44652,7 +45438,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L274" } ], "signatures": [ @@ -44667,7 +45453,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L274" } ], "parameters": [ @@ -44689,7 +45475,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1904, + "target": 1907, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" } @@ -44697,6 +45483,62 @@ } ] }, + { + "id": 1720, + "name": "isAuthRefreshDiscardedError", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 328, + "character": 16, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L328" + } + ], + "signatures": [ + { + "id": 1721, + "name": "isAuthRefreshDiscardedError", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/errors.ts", + "line": 328, + "character": 16, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L328" + } + ], + "parameters": [ + { + "id": 1722, + "name": "error", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "unknown" + } + } + ], + "type": { + "type": "predicate", + "name": "error", + "asserts": false, + "targetType": { + "type": "reference", + "target": 1941, + "name": "AuthRefreshDiscardedError", + "package": "@supabase/auth-js" + } + } + } + ] + }, { "id": 1717, "name": "isAuthRetryableFetchError", @@ -44708,7 +45550,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L296" } ], "signatures": [ @@ -44723,7 +45565,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 296, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L296" } ], "parameters": [ @@ -44745,7 +45587,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1920, + "target": 1923, "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" } @@ -44764,7 +45606,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L140" } ], "signatures": [ @@ -44779,7 +45621,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L140" } ], "parameters": [ @@ -44801,7 +45643,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1797, + "target": 1800, "name": "AuthSessionMissingError", "package": "@supabase/auth-js" } @@ -44810,7 +45652,7 @@ ] }, { - "id": 1720, + "id": 1723, "name": "isAuthWeakPasswordError", "variant": "declaration", "kind": 64, @@ -44818,14 +45660,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 341, + "line": 373, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L373" } ], "signatures": [ { - "id": 1721, + "id": 1724, "name": "isAuthWeakPasswordError", "variant": "signature", "kind": 4096, @@ -44833,14 +45675,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/errors.ts", - "line": 341, + "line": 373, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/errors.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/errors.ts#L373" } ], "parameters": [ { - "id": 1722, + "id": 1725, "name": "error", "variant": "param", "kind": 32768, @@ -44857,7 +45699,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 1938, + "target": 1958, "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" } @@ -44874,9 +45716,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 96, + "line": 86, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L86" } ], "signatures": [ @@ -44896,7 +45738,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient", - "target": 139 + "target": 136 }, { "kind": "text", @@ -44937,214 +45779,19 @@ ], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ - { - "kind": "code", - "text": "```ts\nawait navigatorLock('sync-user', 1000, async () => {\n await refreshSession()\n})\n```" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 96, - "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L96" - } - ], - "typeParameters": [ - { - "id": 714, - "name": "R", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], - "parameters": [ - { - "id": 715, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the lock to be acquired." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 716, - "name": "acquireTimeout", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ { "kind": "text", - "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " }, { "kind": "code", - "text": "`isAcquireTimeout`" + "text": "`{ lock: navigatorLock }`" }, { "kind": "text", - "text": " set to true." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 717, - "name": "fn", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The operation to run once the lock is acquired." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 718, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 99, - "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L99" - } - ], - "signatures": [ - { - "id": 719, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 99, - "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L99" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 714, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 714, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 728, - "name": "processLock", - "variant": "declaration", - "kind": 64, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 330, - "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L330" - } - ], - "signatures": [ - { - "id": 729, - "name": "processLock", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " - }, - { - "kind": "inline-tag", - "tag": "@link", - "text": "#navigatorLock" - }, - { - "kind": "text", - "text": " in browser environments." - } - ], - "blockTags": [ - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + "text": "\nto it has no effect. You can safely drop the import from your client setup." } ] } @@ -45153,14 +45800,14 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 330, + "line": 86, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L86" } ], "typeParameters": [ { - "id": 730, + "id": 714, "name": "R", "variant": "typeParam", "kind": 131072, @@ -45169,7 +45816,7 @@ ], "parameters": [ { - "id": 731, + "id": 715, "name": "name", "variant": "param", "kind": 32768, @@ -45188,7 +45835,227 @@ } }, { - "id": 732, + "id": 716, + "name": "acquireTimeout", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + }, + { + "kind": "code", + "text": "`isAcquireTimeout`" + }, + { + "kind": "text", + "text": " set to true." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 717, + "name": "fn", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The operation to run once the lock is acquired." + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 718, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/locks.ts", + "line": 89, + "character": 6, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L89" + } + ], + "signatures": [ + { + "id": 719, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/locks.ts", + "line": 89, + "character": 6, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L89" + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 714, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 714, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 728, + "name": "processLock", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/locks.ts", + "line": 325, + "character": 22, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L325" + } + ], + "signatures": [ + { + "id": 729, + "name": "processLock", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#navigatorLock" + }, + { + "kind": "text", + "text": " in browser environments." + } + ], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " + }, + { + "kind": "code", + "text": "`{ lock: processLock }`" + }, + { + "kind": "text", + "text": "\nto it has no effect. You can safely drop the import from your client setup." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/src/lib/locks.ts", + "line": 325, + "character": 22, + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L325" + } + ], + "typeParameters": [ + { + "id": 730, + "name": "R", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "parameters": [ + { + "id": 731, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the lock to be acquired." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 732, "name": "acquireTimeout", "variant": "param", "kind": 32768, @@ -45239,9 +46106,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 333, + "line": 328, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L328" } ], "signatures": [ @@ -45254,9 +46121,9 @@ "sources": [ { "fileName": "packages/core/auth-js/src/lib/locks.ts", - "line": 333, + "line": 328, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/auth-js/src/lib/locks.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/auth-js/src/lib/locks.ts#L328" } ], "type": { @@ -45309,7 +46176,8 @@ { "title": "Classes", "children": [ - 1741, 1723, 1846, 1829, 1959, 1813, 1904, 1875, 1920, 1797, 1759, 1938, 1777, 1, 139, 720 + 1744, 1726, 1849, 1832, 1979, 1816, 1907, 1878, 1941, 1923, 1800, 1762, 1958, 1780, 1, 136, + 720 ] }, { @@ -45340,7 +46208,7 @@ }, { "title": "Functions", - "children": [1705, 1702, 1711, 1714, 1717, 1708, 1720, 712, 728] + "children": [1705, 1702, 1711, 1714, 1720, 1717, 1708, 1723, 712, 728] } ], "packageName": "@supabase/auth-js", @@ -45660,846 +46528,854 @@ "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.passkey" }, - "41": { + "38": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.signOut" }, - "42": { + "39": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.signOut" }, - "43": { + "40": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "jwt" }, - "44": { + "41": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "scope" }, - "45": { + "42": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "46": { + "43": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "47": { + "44": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.error" }, - "48": { + "45": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.inviteUserByEmail" }, - "49": { + "46": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.inviteUserByEmail" }, - "50": { + "47": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "email" }, - "51": { + "48": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "options" }, - "52": { + "49": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "53": { + "50": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "54": { + "51": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.redirectTo" }, - "55": { + "52": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.generateLink" }, - "56": { + "53": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.generateLink" }, - "57": { + "54": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "params" }, - "58": { + "55": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.createUser" }, - "59": { + "56": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.createUser" }, - "60": { + "57": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "attributes" }, - "61": { + "58": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.listUsers" }, - "62": { + "59": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.listUsers" }, - "63": { + "60": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "params" }, - "64": { + "61": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "65": { + "62": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "66": { + "63": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "67": { + "64": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.users" }, - "68": { + "65": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.aud" }, - "69": { + "66": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.error" }, - "70": { + "67": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "71": { + "68": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.data" }, - "72": { + "69": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type" }, - "73": { + "70": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.users" }, - "74": { + "71": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "__type.error" }, - "75": { + "72": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.getUserById" }, - "76": { + "73": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.getUserById" }, - "77": { + "74": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "uid" }, - "78": { + "75": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.updateUserById" }, - "79": { + "76": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.updateUserById" }, - "80": { + "77": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "uid" }, - "81": { + "78": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "attributes" }, - "82": { + "79": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.deleteUser" }, - "83": { + "80": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "default.deleteUser" }, - "84": { + "81": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "id" }, - "85": { + "82": { "sourceFileName": "src/GoTrueAdminApi.ts", "qualifiedName": "shouldSoftDelete" }, - "139": { + "136": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default" }, - "141": { + "138": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.__constructor" }, - "142": { + "139": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default" }, - "143": { + "140": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "145": { + "142": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.admin" }, - "146": { + "143": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.mfa" }, - "147": { + "144": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.oauth" }, - "148": { + "145": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.passkey" }, - "215": { + "213": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.isThrowOnErrorEnabled" }, - "216": { + "214": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.isThrowOnErrorEnabled" }, - "228": { + "226": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.initialize" }, - "229": { + "227": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.initialize" }, - "232": { + "230": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInAnonymously" }, - "233": { + "231": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInAnonymously" }, - "234": { + "232": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "235": { + "233": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signUp" }, - "236": { + "234": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signUp" }, - "237": { + "235": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "238": { + "236": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithPassword" }, - "239": { + "237": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithPassword" }, - "240": { + "238": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "241": { + "239": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOAuth" }, - "242": { + "240": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOAuth" }, - "243": { + "241": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "244": { + "242": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.exchangeCodeForSession" }, - "245": { + "243": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.exchangeCodeForSession" }, - "246": { + "244": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "authCode" }, - "247": { + "245": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithWeb3" }, - "248": { + "246": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithWeb3" }, - "249": { + "247": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "250": { + "248": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "251": { + "249": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "252": { + "250": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "253": { + "251": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "254": { + "252": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.user" }, - "255": { + "253": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "256": { + "254": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "257": { + "255": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "258": { + "256": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "259": { + "257": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "260": { + "258": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.user" }, - "261": { + "259": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "300": { + "298": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithIdToken" }, - "301": { + "299": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithIdToken" }, - "302": { + "300": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "303": { + "301": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOtp" }, - "304": { + "302": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithOtp" }, - "305": { + "303": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "306": { + "304": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.verifyOtp" }, - "307": { + "305": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.verifyOtp" }, - "308": { + "306": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "params" }, - "309": { + "307": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithSSO" }, - "310": { + "308": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signInWithSSO" }, - "311": { + "309": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "params" }, - "312": { + "310": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.reauthenticate" }, - "313": { + "311": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.reauthenticate" }, - "316": { + "314": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resend" }, - "317": { + "315": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resend" }, - "318": { + "316": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "319": { + "317": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getSession" }, - "320": { + "318": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getSession" }, - "321": { + "319": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "322": { + "320": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "323": { + "321": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "324": { + "322": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "325": { + "323": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "326": { + "324": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "327": { + "325": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "328": { + "326": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "329": { + "327": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "330": { + "328": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "331": { + "329": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "332": { + "330": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "333": { + "331": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "334": { + "332": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.session" }, - "335": { + "333": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "382": { + "380": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUser" }, - "383": { + "381": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUser" }, - "384": { + "382": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "jwt" }, - "388": { + "386": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.updateUser" }, - "389": { + "387": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.updateUser" }, - "390": { + "388": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "attributes" }, - "391": { + "389": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "392": { + "390": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "393": { + "391": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.emailRedirectTo" }, - "400": { + "398": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.setSession" }, - "401": { + "399": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.setSession" }, - "402": { + "400": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "currentSession" }, - "403": { + "401": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "404": { + "402": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.access_token" }, - "405": { + "403": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.refresh_token" }, - "412": { + "410": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.refreshSession" }, - "413": { + "411": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.refreshSession" }, - "414": { + "412": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "currentSession" }, - "415": { + "413": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "416": { + "414": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.refresh_token" }, - "453": { + "451": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signOut" }, - "454": { + "452": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.signOut" }, - "455": { + "453": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "456": { + "454": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "457": { + "455": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "463": { + "461": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.onAuthStateChange" }, - "464": { + "462": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.onAuthStateChange" }, - "465": { + "463": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "callback" }, - "466": { + "464": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "467": { + "465": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "468": { + "466": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "event" }, - "469": { + "467": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "session" }, - "470": { + "468": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "471": { + "469": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "472": { + "470": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "473": { + "471": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.subscription" }, - "474": { + "472": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.onAuthStateChange" }, - "475": { + "473": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "callback" }, - "476": { + "474": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "477": { + "475": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "478": { + "476": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "event" }, - "479": { + "477": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "session" }, - "480": { + "478": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "481": { + "479": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "482": { + "480": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "483": { + "481": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.subscription" }, - "487": { + "485": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resetPasswordForEmail" }, - "488": { + "486": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.resetPasswordForEmail" }, - "489": { + "487": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "email" }, - "490": { + "488": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "options" }, - "491": { + "489": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "492": { + "490": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.redirectTo" }, - "493": { + "491": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.captchaToken" }, - "494": { + "492": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "495": { + "493": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "496": { + "494": { "sourceFileName": "", "qualifiedName": "__type" }, - "497": { + "495": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "498": { + "496": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "499": { + "497": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "500": { + "498": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "501": { + "499": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUserIdentities" }, - "502": { + "500": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getUserIdentities" }, - "503": { + "501": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "504": { + "502": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "505": { + "503": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "506": { + "504": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.identities" }, - "507": { + "505": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "508": { + "506": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "509": { + "507": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "510": { + "508": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "511": { + "509": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.linkIdentity" }, - "512": { + "510": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.linkIdentity" }, - "513": { + "511": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "514": { + "512": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.linkIdentity" }, - "515": { + "513": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "522": { + "520": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.unlinkIdentity" }, - "523": { + "521": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.unlinkIdentity" }, - "524": { + "522": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "identity" }, - "525": { + "523": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "526": { + "524": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "527": { + "525": { "sourceFileName": "", "qualifiedName": "__type" }, - "528": { + "526": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "529": { + "527": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type" }, - "530": { + "528": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.data" }, - "531": { + "529": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "__type.error" }, - "577": { + "575": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.startAutoRefresh" }, - "578": { + "576": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.startAutoRefresh" }, - "579": { + "577": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.stopAutoRefresh" }, - "580": { + "578": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.stopAutoRefresh" }, + "579": { + "sourceFileName": "src/GoTrueClient.ts", + "qualifiedName": "default.dispose" + }, + "580": { + "sourceFileName": "src/GoTrueClient.ts", + "qualifiedName": "default.dispose" + }, "662": { "sourceFileName": "src/GoTrueClient.ts", "qualifiedName": "default.getClaims" @@ -50622,11 +51498,11 @@ }, "1720": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "isAuthRefreshDiscardedError" }, "1721": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "isAuthRefreshDiscardedError" }, "1722": { "sourceFileName": "src/lib/errors.ts", @@ -50634,961 +51510,1037 @@ }, "1723": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "isAuthWeakPasswordError" }, "1724": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError.__constructor" + "qualifiedName": "isAuthWeakPasswordError" }, "1725": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "error" }, "1726": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "message" + "qualifiedName": "AuthError" }, "1727": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "status" + "qualifiedName": "AuthError.__constructor" }, "1728": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "code" + "qualifiedName": "AuthError" }, "1729": { "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "AuthError.code" + "qualifiedName": "message" }, "1730": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "status" + }, + "1731": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "code" + }, + "1732": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.code" + }, + "1733": { "sourceFileName": "", "qualifiedName": "__type" }, - "1731": { + "1734": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "1733": { + "1736": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1734": { + "1737": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1735": { + "1738": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1736": { + "1739": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1737": { + "1740": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1738": { + "1741": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1739": { + "1742": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1740": { + "1743": { "sourceFileName": "", "qualifiedName": "__type" }, - "1741": { + "1744": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError" }, - "1742": { + "1745": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError.__constructor" }, - "1743": { + "1746": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError" }, - "1744": { + "1747": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1745": { + "1748": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1746": { + "1749": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "code" }, - "1747": { + "1750": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthApiError.status" }, - "1748": { + "1751": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1749": { + "1752": { "sourceFileName": "", "qualifiedName": "__type" }, - "1751": { + "1754": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1752": { + "1755": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1753": { + "1756": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1754": { + "1757": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1755": { + "1758": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1756": { + "1759": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1757": { + "1760": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1758": { + "1761": { "sourceFileName": "", "qualifiedName": "__type" }, - "1759": { + "1762": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "1760": { + "1763": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError.__constructor" }, - "1761": { + "1764": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "1762": { + "1765": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1763": { + "1766": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "originalError" }, - "1764": { + "1767": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthUnknownError.originalError" }, - "1765": { + "1768": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1766": { + "1769": { "sourceFileName": "", "qualifiedName": "__type" }, - "1767": { + "1770": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "1769": { + "1772": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1770": { + "1773": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1771": { + "1774": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1772": { + "1775": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1773": { + "1776": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1774": { + "1777": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1775": { + "1778": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1776": { + "1779": { "sourceFileName": "", "qualifiedName": "__type" }, - "1777": { + "1780": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "1778": { + "1781": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.__constructor" }, - "1779": { + "1782": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "1780": { + "1783": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1781": { + "1784": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "name" }, - "1782": { + "1785": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1783": { + "1786": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "code" }, - "1784": { + "1787": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1785": { + "1788": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1786": { + "1789": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1787": { + "1790": { "sourceFileName": "", "qualifiedName": "__type" }, - "1789": { + "1792": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1790": { + "1793": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1791": { + "1794": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1792": { + "1795": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1793": { + "1796": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1794": { + "1797": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1795": { + "1798": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1796": { + "1799": { "sourceFileName": "", "qualifiedName": "__type" }, - "1797": { + "1800": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "1798": { + "1801": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError.__constructor" }, - "1799": { + "1802": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "1800": { + "1803": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1801": { + "1804": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1802": { + "1805": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1803": { + "1806": { "sourceFileName": "", "qualifiedName": "__type" }, - "1805": { + "1808": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1806": { + "1809": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1807": { + "1810": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1808": { + "1811": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1809": { + "1812": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1810": { + "1813": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1811": { + "1814": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1812": { + "1815": { "sourceFileName": "", "qualifiedName": "__type" }, - "1813": { + "1816": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "1814": { + "1817": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError.__constructor" }, - "1815": { + "1818": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "1816": { + "1819": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1817": { + "1820": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1818": { + "1821": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1819": { + "1822": { "sourceFileName": "", "qualifiedName": "__type" }, - "1821": { + "1824": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1822": { + "1825": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1823": { + "1826": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1824": { + "1827": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1825": { + "1828": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1826": { + "1829": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1827": { + "1830": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1828": { + "1831": { "sourceFileName": "", "qualifiedName": "__type" }, - "1829": { + "1832": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "1830": { + "1833": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError.__constructor" }, - "1831": { + "1834": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "1832": { + "1835": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1833": { + "1836": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1834": { + "1837": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1835": { + "1838": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1836": { + "1839": { "sourceFileName": "", "qualifiedName": "__type" }, - "1838": { + "1841": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1839": { + "1842": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1840": { + "1843": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1841": { + "1844": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1842": { + "1845": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1843": { + "1846": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1844": { + "1847": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1845": { + "1848": { "sourceFileName": "", "qualifiedName": "__type" }, - "1846": { + "1849": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "1847": { + "1850": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.__constructor" }, - "1848": { + "1851": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "1849": { + "1852": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1850": { + "1853": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "details" }, - "1851": { + "1854": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1852": { + "1855": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1853": { + "1856": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1854": { + "1857": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.details" }, - "1855": { + "1858": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1856": { + "1859": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1857": { + "1860": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1858": { + "1861": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "1859": { + "1862": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "1860": { + "1863": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1861": { + "1864": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1862": { + "1865": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1863": { + "1866": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1864": { + "1867": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1865": { + "1868": { "sourceFileName": "", "qualifiedName": "__type" }, - "1866": { + "1869": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.details" }, - "1867": { + "1870": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1868": { + "1871": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1869": { + "1872": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1870": { + "1873": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1871": { + "1874": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1872": { + "1875": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1873": { + "1876": { "sourceFileName": "", "qualifiedName": "__type" }, - "1875": { + "1878": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "1876": { + "1879": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor" }, - "1877": { + "1880": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "1878": { + "1881": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1879": { + "1882": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "details" }, - "1880": { + "1883": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1881": { + "1884": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1882": { + "1885": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1883": { + "1886": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.details" }, - "1884": { + "1887": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1885": { + "1888": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1886": { + "1889": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1887": { + "1890": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "1888": { + "1891": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "1889": { + "1892": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1890": { + "1893": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1891": { + "1894": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1892": { + "1895": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1893": { + "1896": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1894": { + "1897": { "sourceFileName": "", "qualifiedName": "__type" }, - "1895": { + "1898": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.details" }, - "1896": { + "1899": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1897": { + "1900": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.error" }, - "1898": { + "1901": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1899": { + "1902": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1900": { + "1903": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1901": { + "1904": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1902": { + "1905": { "sourceFileName": "", "qualifiedName": "__type" }, - "1904": { + "1907": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "1905": { + "1908": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor" }, - "1906": { + "1909": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "1907": { + "1910": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1908": { + "1911": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1909": { + "1912": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1910": { + "1913": { "sourceFileName": "", "qualifiedName": "__type" }, - "1912": { + "1915": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1913": { + "1916": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1914": { + "1917": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1915": { + "1918": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1916": { + "1919": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1917": { + "1920": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1918": { + "1921": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1919": { + "1922": { "sourceFileName": "", "qualifiedName": "__type" }, - "1920": { + "1923": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "1921": { + "1924": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError.__constructor" }, - "1922": { + "1925": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "1923": { + "1926": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1924": { + "1927": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1925": { + "1928": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1926": { + "1929": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1927": { + "1930": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1928": { + "1931": { "sourceFileName": "", "qualifiedName": "__type" }, - "1930": { + "1933": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1931": { + "1934": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1932": { + "1935": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1933": { + "1936": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1934": { + "1937": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1935": { + "1938": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1936": { + "1939": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1937": { + "1940": { "sourceFileName": "", "qualifiedName": "__type" }, - "1938": { + "1941": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "1942": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError.__constructor" + }, + "1943": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "1944": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "message" + }, + "1945": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "CustomAuthError.name" + }, + "1946": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "CustomAuthError.status" + }, + "1947": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.code" + }, + "1948": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "1950": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "1951": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "1952": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type" + }, + "1953": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.name" + }, + "1954": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.message" + }, + "1955": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.status" + }, + "1956": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__type.code" + }, + "1957": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "1958": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "1939": { + "1959": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.__constructor" }, - "1940": { + "1960": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "1941": { + "1961": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1942": { + "1962": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "status" }, - "1943": { + "1963": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "reasons" }, - "1944": { + "1964": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.reasons" }, - "1945": { + "1965": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "1946": { + "1966": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "1947": { + "1967": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1948": { + "1968": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1949": { + "1969": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1950": { + "1970": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1951": { + "1971": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1952": { + "1972": { "sourceFileName": "", "qualifiedName": "__type" }, - "1953": { + "1973": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.reasons" }, - "1954": { + "1974": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1955": { + "1975": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1956": { + "1976": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1957": { + "1977": { "sourceFileName": "", "qualifiedName": "__type" }, - "1959": { + "1979": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "1960": { + "1980": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError.__constructor" }, - "1961": { + "1981": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "1962": { + "1982": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "message" }, - "1963": { + "1983": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "1964": { + "1984": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "1965": { + "1985": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "1966": { + "1986": { "sourceFileName": "", "qualifiedName": "__type" }, - "1968": { + "1988": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1969": { + "1989": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "1970": { + "1990": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type" }, - "1971": { + "1991": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.name" }, - "1972": { + "1992": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.message" }, - "1973": { + "1993": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.status" }, - "1974": { + "1994": { "sourceFileName": "src/lib/errors.ts", "qualifiedName": "__type.code" }, - "1975": { + "1995": { "sourceFileName": "", "qualifiedName": "__type" } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json b/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json index b7b16053ba006..593622de84ef7 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json @@ -23,9 +23,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "signatures": [ @@ -77,9 +77,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "typeParameters": [ @@ -146,9 +146,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 120, + "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -167,9 +167,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 123, + "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -394,9 +394,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 118, + "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -420,9 +420,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 124, + "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -439,9 +439,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 116, + "line": 114, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L114" } ], "type": { @@ -481,9 +481,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 128, + "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -502,9 +502,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 119, + "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -523,9 +523,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 125, + "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -544,9 +544,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 121, + "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -565,9 +565,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 122, + "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -589,9 +589,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 117, + "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "type": { @@ -615,9 +615,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 126, + "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -635,9 +635,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ] } @@ -692,9 +692,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 81, + "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -713,9 +713,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 84, + "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -942,9 +942,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 79, + "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -968,9 +968,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 85, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -989,9 +989,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 77, + "line": 75, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L75" } ], "type": { @@ -1031,9 +1031,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 90, + "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88" } ], "type": { @@ -1054,9 +1054,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 80, + "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -1075,9 +1075,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 86, + "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -1096,9 +1096,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 82, + "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -1119,9 +1119,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 83, + "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -1145,9 +1145,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 78, + "line": 76, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L76" } ], "type": { @@ -1171,9 +1171,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 87, + "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -1190,9 +1190,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "signatures": [ @@ -1361,9 +1361,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "typeParameters": [ @@ -1416,9 +1416,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -1436,9 +1436,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -1461,9 +1461,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -1481,9 +1481,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -1706,9 +1706,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "signatures": [ @@ -1744,9 +1744,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "parameters": [ @@ -1786,9 +1786,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 557, + "line": 565, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L557" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L565" } ], "signatures": [ @@ -1837,9 +1837,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 557, + "line": 565, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L557" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L565" } ], "typeParameters": [ @@ -1922,9 +1922,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "signatures": [ @@ -1956,9 +1956,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "parameters": [ @@ -2001,9 +2001,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "signatures": [ @@ -2110,9 +2110,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "type": { @@ -2131,9 +2131,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "signatures": [ @@ -2165,9 +2165,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "typeParameters": [ @@ -2272,9 +2272,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "signatures": [ @@ -2287,9 +2287,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "parameters": [ @@ -2419,9 +2419,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "signatures": [ @@ -2434,9 +2434,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "parameters": [ @@ -2542,9 +2542,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "signatures": [ @@ -2582,9 +2582,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "type": { @@ -2691,7 +2691,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 68, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" } ], "typeParameters": [ @@ -2825,7 +2825,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "signatures": [ @@ -2904,7 +2904,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "typeParameters": [ @@ -2961,7 +2961,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -2987,7 +2987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -3241,7 +3241,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L98" } ], "type": { @@ -3478,7 +3478,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 96, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L96" } ], "type": { @@ -3521,7 +3521,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 101, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L101" } ], "type": { @@ -3550,7 +3550,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L97" } ], "type": { @@ -3583,7 +3583,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L99" } ], "type": { @@ -3612,7 +3612,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L100" } ], "type": { @@ -3633,7 +3633,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 95, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L95" } ] } @@ -3698,7 +3698,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L40" } ], "type": { @@ -3925,7 +3925,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L38" } ], "type": { @@ -3951,7 +3951,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L44" } ], "type": { @@ -3972,7 +3972,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L39" } ], "type": { @@ -3995,7 +3995,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L37" } ], "type": { @@ -4014,7 +4014,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 41, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L41" } ], "type": { @@ -4062,19 +4062,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L152" }, { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L156" }, { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 166, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L166" } ], "signatures": [ @@ -4089,7 +4089,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L152" } ], "typeParameters": [ @@ -4188,7 +4188,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L156" } ], "typeParameters": [ @@ -4289,7 +4289,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "signatures": [ @@ -4530,7 +4530,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "typeParameters": [ @@ -4756,7 +4756,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 392, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L392" } ], "type": { @@ -4825,7 +4825,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 391, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L391" } ], "type": { @@ -4871,7 +4871,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 390, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L390" } ], "type": { @@ -4892,7 +4892,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 389, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L389" } ] } @@ -4999,7 +4999,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "signatures": [ @@ -5033,7 +5033,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "typeParameters": [ @@ -5183,7 +5183,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 16, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L16" } ], "typeParameters": [ @@ -5248,7 +5248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -5274,7 +5274,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -5302,7 +5302,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 22, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L22" } ] } @@ -5554,7 +5554,127 @@ "summary": [ { "kind": "text", - "text": "Error format\n\n" + "text": "Error format\n\nReturned by every PostgREST request that fails. When something fails, the\nsingle most useful field is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — Postgres often returns the\nactionable fix there, not in " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": ". Always log the full object (e.g.\n" + }, + { + "kind": "code", + "text": "`console.error(error)`" + }, + { + "kind": "text", + "text": "); logging only " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": " hides the hint.\n\nRead the fields in roughly this order of usefulness:\n\n- " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — actionable guidance from the database when available. For\n permission-denied errors (" + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "), this is the literal SQL to fix the\n problem, e.g.\n " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.users TO anon;\"`" + }, + { + "kind": "text", + "text": ".\n Missing column? " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " suggests the column you probably meant. Whenever\n Postgres knows the fix, it puts it in " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": ".\n- " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": " — stable error code from PostgREST (e.g. " + }, + { + "kind": "code", + "text": "`PGRST301`" + }, + { + "kind": "text", + "text": ") or Postgres\n (e.g. " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "). Branch on this rather than on " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " text.\n- " + }, + { + "kind": "code", + "text": "`details`" + }, + { + "kind": "text", + "text": " — extra context, often the offending value, key, or row.\n- " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " — human-readable summary. Useful in UI strings; less useful\n for debugging.\n\n" }, { "kind": "inline-tag", @@ -5574,9 +5694,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "signatures": [ @@ -5603,9 +5723,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "parameters": [ @@ -5633,9 +5753,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 73, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -5652,9 +5772,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -5671,9 +5791,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -5690,9 +5810,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -5710,9 +5830,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ] } @@ -5748,9 +5868,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 9, + "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L28" } ], "type": { @@ -5767,9 +5887,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 7, + "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L26" } ], "type": { @@ -5786,9 +5906,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 8, + "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L27" } ], "type": { @@ -5805,9 +5925,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "signatures": [ @@ -5820,9 +5940,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5843,9 +5963,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5862,9 +5982,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5881,9 +6001,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 62, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5900,9 +6020,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5919,9 +6039,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5939,9 +6059,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ] } @@ -5967,9 +6087,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 6, + "line": 25, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L25" } ], "extendedTypes": [ @@ -6000,9 +6120,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "signatures": [ @@ -6054,9 +6174,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "typeParameters": [ @@ -6183,9 +6303,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 120, + "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -6204,9 +6324,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 123, + "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -6431,9 +6551,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 118, + "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -6457,9 +6577,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 124, + "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -6476,9 +6596,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 116, + "line": 114, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L114" } ], "type": { @@ -6518,9 +6638,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 128, + "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -6539,9 +6659,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 119, + "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -6560,9 +6680,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 125, + "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -6581,9 +6701,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 121, + "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -6602,9 +6722,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 122, + "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -6626,9 +6746,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 117, + "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "type": { @@ -6652,9 +6772,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 126, + "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -6672,9 +6792,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ] } @@ -6772,9 +6892,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 81, + "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -6799,9 +6919,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 84, + "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -7034,9 +7154,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 79, + "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -7066,9 +7186,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 85, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -7093,9 +7213,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 77, + "line": 75, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L75" } ], "type": { @@ -7141,9 +7261,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 90, + "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88" } ], "type": { @@ -7170,9 +7290,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 80, + "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -7197,9 +7317,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 86, + "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -7224,9 +7344,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 82, + "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -7253,9 +7373,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 83, + "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -7285,9 +7405,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 78, + "line": 76, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L76" } ], "type": { @@ -7317,9 +7437,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 87, + "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -7345,7 +7465,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "signatures": [ @@ -7478,7 +7598,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "parameters": [ @@ -7732,19 +7852,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1003, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1007, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1138" } ], "signatures": [ @@ -7759,7 +7879,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1003, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" } ], "typeParameters": [ @@ -7867,7 +7987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1007, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" } ], "parameters": [ @@ -8144,19 +8264,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 854, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 858, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L988" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L988" } ], "signatures": [ @@ -8171,7 +8291,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 854, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" } ], "typeParameters": [ @@ -8279,7 +8399,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 858, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" } ], "parameters": [ @@ -8361,7 +8481,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "signatures": [ @@ -8459,7 +8579,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "type": { @@ -8507,7 +8627,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" } ], "signatures": [ @@ -8634,7 +8754,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" } ], "typeParameters": [ @@ -8967,7 +9087,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "signatures": [ @@ -9126,7 +9246,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "parameters": [ @@ -9182,7 +9302,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 859, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" } ], "type": { @@ -9220,7 +9340,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 862, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" } ], "type": { @@ -9262,7 +9382,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 864, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" } ], "type": { @@ -9309,7 +9429,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 861, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" } ], "type": { @@ -9355,7 +9475,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 860, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" } ], "type": { @@ -9393,7 +9513,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 863, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" } ], "type": { @@ -9414,7 +9534,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 858, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" } ] } @@ -9694,19 +9814,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2017, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2022, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2136" } ], "signatures": [ @@ -9721,7 +9841,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2017, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" } ], "typeParameters": [ @@ -9901,7 +10021,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2022, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" } ], "parameters": [ @@ -9959,7 +10079,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "signatures": [ @@ -10003,7 +10123,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "type": { @@ -10203,19 +10323,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" } ], "signatures": [ @@ -10230,7 +10350,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" } ], "typeParameters": [ @@ -10303,7 +10423,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" } ], "parameters": [ @@ -10464,19 +10584,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L350" } ], "signatures": [ @@ -10491,7 +10611,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" } ], "typeParameters": [ @@ -10564,7 +10684,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" } ], "parameters": [ @@ -10725,19 +10845,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 596, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L596" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L596" } ], "signatures": [ @@ -10752,7 +10872,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" } ], "typeParameters": [ @@ -10811,7 +10931,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" } ], "parameters": [ @@ -10920,19 +11040,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 601, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 615, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L615" } ], "signatures": [ @@ -10947,7 +11067,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 601, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" } ], "typeParameters": [ @@ -11013,7 +11133,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" } ], "parameters": [ @@ -11129,19 +11249,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 620, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 634, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L634" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L634" } ], "signatures": [ @@ -11156,7 +11276,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 620, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" } ], "typeParameters": [ @@ -11222,7 +11342,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "parameters": [ @@ -11274,7 +11394,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 801, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" } ], "signatures": [ @@ -11385,7 +11505,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 801, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" } ], "typeParameters": [ @@ -11760,19 +11880,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 671, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L726" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L726" } ], "signatures": [ @@ -11787,7 +11907,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" } ], "typeParameters": [ @@ -11878,7 +11998,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 671, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" } ], "parameters": [ @@ -11932,7 +12052,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" } ], "signatures": [ @@ -12003,7 +12123,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" } ], "typeParameters": [ @@ -12298,19 +12418,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 462, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507" } ], "signatures": [ @@ -12325,7 +12445,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" } ], "typeParameters": [ @@ -12384,7 +12504,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 462, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" } ], "parameters": [ @@ -12493,19 +12613,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 526, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L526" } ], "signatures": [ @@ -12520,7 +12640,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" } ], "typeParameters": [ @@ -12586,7 +12706,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" } ], "parameters": [ @@ -12702,19 +12822,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 535, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 545, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L545" } ], "signatures": [ @@ -12729,7 +12849,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" } ], "typeParameters": [ @@ -12795,7 +12915,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 535, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" } ], "parameters": [ @@ -12849,7 +12969,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "signatures": [ @@ -12990,7 +13110,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "parameters": [ @@ -13065,7 +13185,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -13094,7 +13214,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -13115,7 +13235,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ] } @@ -13267,19 +13387,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 401, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L401" } ], "signatures": [ @@ -13294,7 +13414,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" } ], "typeParameters": [ @@ -13367,7 +13487,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" } ], "parameters": [ @@ -13528,19 +13648,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 407, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L456" } ], "signatures": [ @@ -13555,7 +13675,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" } ], "typeParameters": [ @@ -13628,7 +13748,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 407, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" } ], "parameters": [ @@ -13779,19 +13899,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1709, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1754, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1754" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1754" } ], "signatures": [ @@ -13806,7 +13926,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" } ], "typeParameters": [ @@ -13883,7 +14003,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1709, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" } ], "parameters": [ @@ -13934,7 +14054,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "signatures": [ @@ -13970,7 +14090,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "parameters": [ @@ -14176,7 +14296,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "signatures": [ @@ -14289,7 +14409,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "typeParameters": [ @@ -14396,7 +14516,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" } ], "signatures": [ @@ -14531,7 +14651,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" } ], "typeParameters": [ @@ -14984,25 +15104,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1765, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1779, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1844, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1844" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1844" } ], "signatures": [ @@ -15017,7 +15137,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1765, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" } ], "typeParameters": [ @@ -15254,7 +15374,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1779, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" } ], "typeParameters": [ @@ -15343,7 +15463,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" } ], "parameters": [ @@ -15399,7 +15519,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 832, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" } ], "signatures": [ @@ -15438,7 +15558,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 832, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" } ], "typeParameters": [ @@ -15624,7 +15744,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2005, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" } ], "signatures": [ @@ -15868,7 +15988,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2005, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" } ], "parameters": [ @@ -15943,7 +16063,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2010, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" } ], "type": { @@ -15972,7 +16092,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2010, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" } ], "type": { @@ -15993,7 +16113,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2010, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" } ] } @@ -16331,31 +16451,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ @@ -16372,7 +16492,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" } ], "typeParameters": [ @@ -16433,7 +16553,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -16454,7 +16574,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -16475,7 +16595,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -16495,7 +16615,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ] } @@ -16525,7 +16645,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "parameters": [ @@ -16570,7 +16690,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -16591,7 +16711,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -16612,7 +16732,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -16632,7 +16752,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ] } @@ -16688,7 +16808,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" } ], "typeParameters": [ @@ -16749,7 +16869,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -16770,7 +16890,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -16791,7 +16911,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -16811,7 +16931,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ] } @@ -16867,7 +16987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" } ], "parameters": [ @@ -16912,7 +17032,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -16933,7 +17053,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -16954,7 +17074,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -16974,7 +17094,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ] } @@ -17154,19 +17274,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1565, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1565" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1565" } ], "signatures": [ @@ -17181,7 +17301,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" } ], "typeParameters": [ @@ -17270,7 +17390,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" } ], "parameters": [ @@ -17331,9 +17451,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "signatures": [ @@ -17504,9 +17624,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "typeParameters": [ @@ -17559,9 +17679,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -17579,9 +17699,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -17604,9 +17724,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -17624,9 +17744,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -17859,7 +17979,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "signatures": [ @@ -17996,7 +18116,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "parameters": [ @@ -18090,7 +18210,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -18119,7 +18239,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -18140,7 +18260,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ] } @@ -18309,19 +18429,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1463" } ], "signatures": [ @@ -18336,7 +18456,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" } ], "typeParameters": [ @@ -18395,7 +18515,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" } ], "parameters": [ @@ -18573,19 +18693,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1210" } ], "signatures": [ @@ -18600,7 +18720,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" } ], "typeParameters": [ @@ -18659,7 +18779,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" } ], "parameters": [ @@ -18845,19 +18965,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1274" } ], "signatures": [ @@ -18872,7 +18992,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" } ], "typeParameters": [ @@ -18931,7 +19051,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" } ], "parameters": [ @@ -19109,19 +19229,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1336" } ], "signatures": [ @@ -19136,7 +19256,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" } ], "typeParameters": [ @@ -19195,7 +19315,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" } ], "parameters": [ @@ -19381,19 +19501,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1400, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1400" } ], "signatures": [ @@ -19408,7 +19528,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" } ], "typeParameters": [ @@ -19467,7 +19587,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" } ], "parameters": [ @@ -19566,19 +19686,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 654, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 662, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L662" } ], "signatures": [ @@ -19593,7 +19713,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" } ], "typeParameters": [ @@ -19652,7 +19772,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 654, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" } ], "parameters": [ @@ -19751,19 +19871,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 640, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 648, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L648" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L648" } ], "signatures": [ @@ -19778,7 +19898,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" } ], "typeParameters": [ @@ -19837,7 +19957,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 640, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" } ], "parameters": [ @@ -19882,9 +20002,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "signatures": [ @@ -19922,9 +20042,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "parameters": [ @@ -19978,7 +20098,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "signatures": [ @@ -20095,7 +20215,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "typeParameters": [ @@ -20224,7 +20344,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "signatures": [ @@ -20268,7 +20388,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "type": { @@ -20301,7 +20421,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "signatures": [ @@ -20438,7 +20558,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "typeParameters": [ @@ -20687,9 +20807,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "signatures": [ @@ -20723,9 +20843,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "parameters": [ @@ -20782,7 +20902,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "signatures": [ @@ -20895,7 +21015,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "typeParameters": [ @@ -20993,9 +21113,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "signatures": [ @@ -21104,9 +21224,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "type": { @@ -21405,19 +21525,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1576, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1581, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1690, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1690" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1690" } ], "signatures": [ @@ -21432,7 +21552,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1576, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" } ], "typeParameters": [ @@ -21504,7 +21624,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1579, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" } ], "type": { @@ -21525,7 +21645,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1579, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" } ], "type": { @@ -21558,7 +21678,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1579, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" } ] } @@ -21581,7 +21701,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1581, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" } ], "parameters": [ @@ -21637,7 +21757,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1584, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" } ], "type": { @@ -21658,7 +21778,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1584, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" } ], "type": { @@ -21691,7 +21811,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1584, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" } ] } @@ -21716,9 +21836,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "signatures": [ @@ -21752,9 +21872,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "typeParameters": [ @@ -21828,9 +21948,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "signatures": [ @@ -21843,9 +21963,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "parameters": [ @@ -21944,9 +22064,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "signatures": [ @@ -21959,9 +22079,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "parameters": [ @@ -22069,9 +22189,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "signatures": [ @@ -22111,9 +22231,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "type": { @@ -22272,7 +22392,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 95, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" } ], "typeParameters": [ @@ -22457,7 +22577,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "signatures": [ @@ -22511,7 +22631,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "typeParameters": [ @@ -22621,7 +22741,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -22647,7 +22767,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -22738,7 +22858,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "type": { @@ -22975,7 +23095,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 74, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" } ], "type": { @@ -23010,7 +23130,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 78, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" } ], "type": { @@ -23039,7 +23159,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" } ], "type": { @@ -23068,7 +23188,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 77, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" } ], "type": { @@ -23089,7 +23209,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 73, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" } ] } @@ -23161,7 +23281,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" } ], "type": { @@ -23388,7 +23508,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" } ], "type": { @@ -23430,7 +23550,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" } ], "type": { @@ -23451,7 +23571,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" } ], "type": { @@ -23472,7 +23592,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" } ], "type": { @@ -23496,7 +23616,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" } ], "type": { @@ -23520,7 +23640,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" } ], "type": { @@ -23537,9 +23657,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1673, + "line": 1736, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1673" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1736" } ], "signatures": [ @@ -23667,6 +23787,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT DELETE ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').delete().eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Delete a record and return it", @@ -23744,9 +23923,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1673, + "line": 1736, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1673" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1736" } ], "parameters": [ @@ -23824,9 +24003,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1676, + "line": 1739, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1676" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1739" } ], "type": { @@ -23876,9 +24055,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1675, + "line": 1738, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1675" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1738" } ] } @@ -23962,9 +24141,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1050, + "line": 1086, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1050" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" } ], "signatures": [ @@ -24035,6 +24214,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').insert({ id: 1, name: 'Mordor' })\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Create a record and return it", @@ -24121,9 +24359,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1050, + "line": 1086, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1050" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" } ], "typeParameters": [ @@ -24207,9 +24445,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1053, + "line": 1089, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1089" } ], "type": { @@ -24227,9 +24465,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1053, + "line": 1089, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1089" } ] } @@ -24312,9 +24550,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1057, + "line": 1093, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1093" } ], "type": { @@ -24332,9 +24570,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1057, + "line": 1093, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1093" } ] } @@ -24458,9 +24696,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1064, + "line": 1100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1064" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1100" } ], "type": { @@ -24527,9 +24765,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1065, + "line": 1101, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1065" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1101" } ], "type": { @@ -24548,9 +24786,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1063, + "line": 1099, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1063" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1099" } ] } @@ -24634,9 +24872,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 878, + "line": 905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L905" } ], "signatures": [ @@ -24772,6 +25010,86 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nThe most useful field on a Postgres error is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — when the database knows the fix, it puts the literal SQL there. For example, a permission-denied error (" + }, + { + "kind": "code", + "text": "`code: '42501'`" + }, + { + "kind": "text", + "text": ") arrives with a " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " like " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\"`" + }, + { + "kind": "text", + "text": ". Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so the hint isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('characters').select()\nif (error) {\n // Logs the full error: message, code, details, and hint.\n console.error(error)\n return\n}\n```" + } + ] + }, + { + "tag": "@exampleResponse", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "```json\n{\n \"error\": {\n \"code\": \"42501\",\n \"details\": null,\n \"hint\": \"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\",\n \"message\": \"permission denied for table characters\"\n },\n \"status\": 401,\n \"statusText\": \"Unauthorized\"\n}\n```" + } + ] + }, { "tag": "@example", "name": "Selecting specific columns", @@ -25351,9 +25669,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 878, + "line": 905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L905" } ], "typeParameters": [ @@ -25547,9 +25865,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 892, + "line": 919, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L919" } ], "type": { @@ -25624,9 +25942,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 891, + "line": 918, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L918" } ], "type": { @@ -25644,9 +25962,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 890, + "line": 917, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L890" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L917" } ] } @@ -25735,9 +26053,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1517, + "line": 1571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1571" } ], "signatures": [ @@ -25825,6 +26143,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('instruments').update({ name: 'piano' }).eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Update a record and return it", @@ -25911,9 +26288,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1517, + "line": 1571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1571" } ], "typeParameters": [ @@ -25994,9 +26371,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1519, + "line": 1573, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1573" } ], "type": { @@ -26014,9 +26391,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1519, + "line": 1573, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1573" } ] } @@ -26137,9 +26514,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1525, + "line": 1579, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1525" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1579" } ], "type": { @@ -26189,9 +26566,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1524, + "line": 1578, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1578" } ] } @@ -26275,9 +26652,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1315, + "line": 1360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1360" } ], "signatures": [ @@ -26425,6 +26802,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT, UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('instruments').upsert({ id: 1, name: 'piano' }).select()\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Bulk Upsert your data", @@ -26575,9 +27011,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1315, + "line": 1360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1360" } ], "typeParameters": [ @@ -26661,9 +27097,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1318, + "line": 1363, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1318" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1363" } ], "type": { @@ -26681,9 +27117,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1318, + "line": 1363, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1318" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1363" } ] } @@ -26766,9 +27202,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1322, + "line": 1367, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1367" } ], "type": { @@ -26786,9 +27222,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1322, + "line": 1367, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1367" } ] } @@ -26912,9 +27348,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1333, + "line": 1378, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1378" } ], "type": { @@ -26989,9 +27425,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1334, + "line": 1379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1334" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1379" } ], "type": { @@ -27035,9 +27471,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1332, + "line": 1377, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1377" } ], "type": { @@ -27073,9 +27509,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1331, + "line": 1376, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1376" } ], "type": { @@ -27093,9 +27529,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1330, + "line": 1375, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1375" } ] } @@ -27200,7 +27636,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 12, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" } ], "typeParameters": [ @@ -27310,7 +27746,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -27330,7 +27766,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -27369,9 +27805,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "signatures": [ @@ -27423,9 +27859,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "typeParameters": [ @@ -27552,9 +27988,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 120, + "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -27573,9 +28009,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 123, + "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -27800,9 +28236,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 118, + "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -27826,9 +28262,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 124, + "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -27845,9 +28281,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 116, + "line": 114, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L114" } ], "type": { @@ -27887,9 +28323,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 128, + "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -27908,9 +28344,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 119, + "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -27929,9 +28365,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 125, + "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -27950,9 +28386,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 121, + "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -27971,9 +28407,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 122, + "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -27995,9 +28431,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 117, + "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "type": { @@ -28021,9 +28457,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 126, + "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -28041,9 +28477,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ] } @@ -28141,9 +28577,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 81, + "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -28168,9 +28604,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 84, + "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -28403,9 +28839,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 79, + "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -28435,9 +28871,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 85, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -28462,9 +28898,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 77, + "line": 75, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L75" } ], "type": { @@ -28510,9 +28946,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 90, + "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88" } ], "type": { @@ -28539,9 +28975,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 80, + "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -28566,9 +29002,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 86, + "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -28593,9 +29029,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 82, + "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -28622,9 +29058,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 83, + "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -28654,9 +29090,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 78, + "line": 76, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L76" } ], "type": { @@ -28686,9 +29122,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 87, + "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -28712,7 +29148,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "signatures": [ @@ -28843,7 +29279,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "parameters": [ @@ -28890,7 +29326,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "signatures": [ @@ -28986,7 +29422,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "type": { @@ -29024,7 +29460,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "signatures": [ @@ -29181,7 +29617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "parameters": [ @@ -29237,7 +29673,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 859, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" } ], "type": { @@ -29275,7 +29711,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 862, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" } ], "type": { @@ -29317,7 +29753,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 864, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" } ], "type": { @@ -29364,7 +29800,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 861, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" } ], "type": { @@ -29410,7 +29846,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 860, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" } ], "type": { @@ -29448,7 +29884,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 863, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" } ], "type": { @@ -29469,7 +29905,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 858, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" } ] } @@ -29564,7 +30000,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "signatures": [ @@ -29606,7 +30042,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "type": { @@ -29659,7 +30095,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "signatures": [ @@ -29798,7 +30234,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "parameters": [ @@ -29873,7 +30309,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -29902,7 +30338,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -29923,7 +30359,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ] } @@ -29949,7 +30385,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "signatures": [ @@ -29983,7 +30419,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "parameters": [ @@ -30177,7 +30613,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "signatures": [ @@ -30288,7 +30724,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "typeParameters": [ @@ -30695,31 +31131,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ @@ -30734,7 +31170,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" } ], "typeParameters": [ @@ -30795,7 +31231,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -30816,7 +31252,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -30837,7 +31273,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -30857,7 +31293,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ] } @@ -30880,7 +31316,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "parameters": [ @@ -30925,7 +31361,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -30946,7 +31382,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -30967,7 +31403,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -30987,7 +31423,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ] } @@ -31036,7 +31472,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" } ], "typeParameters": [ @@ -31097,7 +31533,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -31118,7 +31554,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -31139,7 +31575,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -31159,7 +31595,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ] } @@ -31208,7 +31644,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" } ], "parameters": [ @@ -31253,7 +31689,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -31274,7 +31710,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -31295,7 +31731,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -31315,7 +31751,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ] } @@ -31340,9 +31776,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "signatures": [ @@ -31513,9 +31949,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "typeParameters": [ @@ -31568,9 +32004,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -31588,9 +32024,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -31613,9 +32049,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -31633,9 +32069,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -31866,7 +32302,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "signatures": [ @@ -32001,7 +32437,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "parameters": [ @@ -32095,7 +32531,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -32124,7 +32560,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -32145,7 +32581,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ] } @@ -32171,9 +32607,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "signatures": [ @@ -32211,9 +32647,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "parameters": [ @@ -32265,7 +32701,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "signatures": [ @@ -32380,7 +32816,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "typeParameters": [ @@ -32507,7 +32943,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "signatures": [ @@ -32549,7 +32985,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "type": { @@ -32570,7 +33006,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "signatures": [ @@ -32705,7 +33141,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "typeParameters": [ @@ -32944,9 +33380,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "signatures": [ @@ -32980,9 +33416,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "parameters": [ @@ -33037,7 +33473,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "signatures": [ @@ -33148,7 +33584,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "typeParameters": [ @@ -33236,9 +33672,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "signatures": [ @@ -33347,9 +33783,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "type": { @@ -33380,9 +33816,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "signatures": [ @@ -33416,9 +33852,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "typeParameters": [ @@ -33492,9 +33928,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "signatures": [ @@ -33507,9 +33943,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "parameters": [ @@ -33608,9 +34044,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "signatures": [ @@ -33623,9 +34059,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "parameters": [ @@ -33733,9 +34169,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "signatures": [ @@ -33775,9 +34211,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "type": { @@ -33931,7 +34367,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" } ], "typeParameters": [ @@ -34083,7 +34519,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L25" } ], "type": { @@ -34102,7 +34538,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L24" } ], "type": { @@ -34121,7 +34557,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L23" } ], "type": { @@ -34145,7 +34581,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -34171,7 +34607,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -34195,7 +34631,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L22" } ], "type": { @@ -34215,7 +34651,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 21, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L21" } ], "extendedTypes": [ @@ -34248,7 +34684,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L19" } ], "type": { @@ -34276,7 +34712,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L18" } ], "type": { @@ -34299,7 +34735,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L17" } ], "type": { @@ -34320,7 +34756,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -34346,7 +34782,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -34370,7 +34806,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L16" } ], "type": { @@ -34390,7 +34826,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 15, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L15" } ], "typeParameters": [ @@ -34425,7 +34861,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/common/common.ts#L81" } ], "type": { @@ -34450,7 +34886,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/common/common.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/common/common.ts#L82" } ], "type": { @@ -34470,7 +34906,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/common/common.ts#L81" } ] } @@ -34487,7 +34923,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L32" } ], "typeParameters": [ @@ -34535,7 +34971,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 33, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L33" } ], "typeParameters": [ @@ -34577,7 +35013,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L31" } ], "typeParameters": [ @@ -34635,7 +35071,7 @@ "fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" } ], "typeParameters": [ @@ -35220,7 +35656,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L16" } ], "type": { @@ -35243,7 +35679,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L21" } ], "type": { @@ -35267,7 +35703,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L17" } ], "type": { @@ -35291,7 +35727,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L22" } ], "type": { @@ -35315,7 +35751,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L19" } ], "type": { @@ -35339,7 +35775,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L18" } ], "type": { @@ -35363,7 +35799,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L20" } ], "type": { @@ -35388,7 +35824,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L16" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json index b7b16053ba006..593622de84ef7 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json @@ -23,9 +23,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "signatures": [ @@ -77,9 +77,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "typeParameters": [ @@ -146,9 +146,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 120, + "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -167,9 +167,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 123, + "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -394,9 +394,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 118, + "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -420,9 +420,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 124, + "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -439,9 +439,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 116, + "line": 114, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L114" } ], "type": { @@ -481,9 +481,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 128, + "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -502,9 +502,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 119, + "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -523,9 +523,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 125, + "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -544,9 +544,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 121, + "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -565,9 +565,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 122, + "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -589,9 +589,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 117, + "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "type": { @@ -615,9 +615,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 126, + "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -635,9 +635,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ] } @@ -692,9 +692,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 81, + "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -713,9 +713,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 84, + "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -942,9 +942,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 79, + "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -968,9 +968,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 85, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -989,9 +989,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 77, + "line": 75, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L75" } ], "type": { @@ -1031,9 +1031,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 90, + "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88" } ], "type": { @@ -1054,9 +1054,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 80, + "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -1075,9 +1075,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 86, + "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -1096,9 +1096,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 82, + "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -1119,9 +1119,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 83, + "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -1145,9 +1145,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 78, + "line": 76, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L76" } ], "type": { @@ -1171,9 +1171,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 87, + "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -1190,9 +1190,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "signatures": [ @@ -1361,9 +1361,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "typeParameters": [ @@ -1416,9 +1416,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -1436,9 +1436,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -1461,9 +1461,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -1481,9 +1481,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -1706,9 +1706,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "signatures": [ @@ -1744,9 +1744,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "parameters": [ @@ -1786,9 +1786,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 557, + "line": 565, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L557" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L565" } ], "signatures": [ @@ -1837,9 +1837,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 557, + "line": 565, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L557" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L565" } ], "typeParameters": [ @@ -1922,9 +1922,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "signatures": [ @@ -1956,9 +1956,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "parameters": [ @@ -2001,9 +2001,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "signatures": [ @@ -2110,9 +2110,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "type": { @@ -2131,9 +2131,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "signatures": [ @@ -2165,9 +2165,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "typeParameters": [ @@ -2272,9 +2272,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "signatures": [ @@ -2287,9 +2287,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "parameters": [ @@ -2419,9 +2419,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "signatures": [ @@ -2434,9 +2434,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "parameters": [ @@ -2542,9 +2542,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "signatures": [ @@ -2582,9 +2582,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "type": { @@ -2691,7 +2691,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 68, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L68" } ], "typeParameters": [ @@ -2825,7 +2825,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "signatures": [ @@ -2904,7 +2904,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L86" } ], "typeParameters": [ @@ -2961,7 +2961,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -2987,7 +2987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -3241,7 +3241,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 98, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L98" } ], "type": { @@ -3478,7 +3478,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 96, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L96" } ], "type": { @@ -3521,7 +3521,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 101, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L101" } ], "type": { @@ -3550,7 +3550,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 97, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L97" } ], "type": { @@ -3583,7 +3583,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L99" } ], "type": { @@ -3612,7 +3612,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L100" } ], "type": { @@ -3633,7 +3633,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 95, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L95" } ] } @@ -3698,7 +3698,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L40" } ], "type": { @@ -3925,7 +3925,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L38" } ], "type": { @@ -3951,7 +3951,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L44" } ], "type": { @@ -3972,7 +3972,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L39" } ], "type": { @@ -3995,7 +3995,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L37" } ], "type": { @@ -4014,7 +4014,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 41, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L41" } ], "type": { @@ -4062,19 +4062,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L152" }, { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L156" }, { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 166, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L166" } ], "signatures": [ @@ -4089,7 +4089,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L152" } ], "typeParameters": [ @@ -4188,7 +4188,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L156" } ], "typeParameters": [ @@ -4289,7 +4289,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "signatures": [ @@ -4530,7 +4530,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L374" } ], "typeParameters": [ @@ -4756,7 +4756,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 392, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L392" } ], "type": { @@ -4825,7 +4825,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 391, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L391" } ], "type": { @@ -4871,7 +4871,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 390, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L390" } ], "type": { @@ -4892,7 +4892,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 389, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L389" } ] } @@ -4999,7 +4999,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "signatures": [ @@ -5033,7 +5033,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L192" } ], "typeParameters": [ @@ -5183,7 +5183,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 16, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L16" } ], "typeParameters": [ @@ -5248,7 +5248,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -5274,7 +5274,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -5302,7 +5302,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 22, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestClient.ts#L22" } ] } @@ -5554,7 +5554,127 @@ "summary": [ { "kind": "text", - "text": "Error format\n\n" + "text": "Error format\n\nReturned by every PostgREST request that fails. When something fails, the\nsingle most useful field is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — Postgres often returns the\nactionable fix there, not in " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": ". Always log the full object (e.g.\n" + }, + { + "kind": "code", + "text": "`console.error(error)`" + }, + { + "kind": "text", + "text": "); logging only " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": " hides the hint.\n\nRead the fields in roughly this order of usefulness:\n\n- " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — actionable guidance from the database when available. For\n permission-denied errors (" + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "), this is the literal SQL to fix the\n problem, e.g.\n " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.users TO anon;\"`" + }, + { + "kind": "text", + "text": ".\n Missing column? " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " suggests the column you probably meant. Whenever\n Postgres knows the fix, it puts it in " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": ".\n- " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": " — stable error code from PostgREST (e.g. " + }, + { + "kind": "code", + "text": "`PGRST301`" + }, + { + "kind": "text", + "text": ") or Postgres\n (e.g. " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "). Branch on this rather than on " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " text.\n- " + }, + { + "kind": "code", + "text": "`details`" + }, + { + "kind": "text", + "text": " — extra context, often the offending value, key, or row.\n- " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " — human-readable summary. Useful in UI strings; less useful\n for debugging.\n\n" }, { "kind": "inline-tag", @@ -5574,9 +5694,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "signatures": [ @@ -5603,9 +5723,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "parameters": [ @@ -5633,9 +5753,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 73, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -5652,9 +5772,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -5671,9 +5791,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -5690,9 +5810,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ], "type": { @@ -5710,9 +5830,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 24, + "line": 43, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L43" } ] } @@ -5748,9 +5868,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 9, + "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L28" } ], "type": { @@ -5767,9 +5887,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 7, + "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L26" } ], "type": { @@ -5786,9 +5906,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 8, + "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L27" } ], "type": { @@ -5805,9 +5925,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "signatures": [ @@ -5820,9 +5940,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5843,9 +5963,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5862,9 +5982,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5881,9 +6001,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 62, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5900,9 +6020,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5919,9 +6039,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ], "type": { @@ -5939,9 +6059,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 32, + "line": 51, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L51" } ] } @@ -5967,9 +6087,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", - "line": 6, + "line": 25, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestError.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestError.ts#L25" } ], "extendedTypes": [ @@ -6000,9 +6120,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "signatures": [ @@ -6054,9 +6174,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "typeParameters": [ @@ -6183,9 +6303,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 120, + "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -6204,9 +6324,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 123, + "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -6431,9 +6551,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 118, + "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -6457,9 +6577,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 124, + "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -6476,9 +6596,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 116, + "line": 114, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L114" } ], "type": { @@ -6518,9 +6638,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 128, + "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -6539,9 +6659,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 119, + "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -6560,9 +6680,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 125, + "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -6581,9 +6701,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 121, + "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -6602,9 +6722,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 122, + "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -6626,9 +6746,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 117, + "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "type": { @@ -6652,9 +6772,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 126, + "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -6672,9 +6792,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ] } @@ -6772,9 +6892,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 81, + "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -6799,9 +6919,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 84, + "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -7034,9 +7154,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 79, + "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -7066,9 +7186,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 85, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -7093,9 +7213,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 77, + "line": 75, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L75" } ], "type": { @@ -7141,9 +7261,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 90, + "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88" } ], "type": { @@ -7170,9 +7290,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 80, + "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -7197,9 +7317,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 86, + "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -7224,9 +7344,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 82, + "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -7253,9 +7373,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 83, + "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -7285,9 +7405,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 78, + "line": 76, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L76" } ], "type": { @@ -7317,9 +7437,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 87, + "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -7345,7 +7465,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "signatures": [ @@ -7478,7 +7598,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "parameters": [ @@ -7732,19 +7852,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1003, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1007, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1138" } ], "signatures": [ @@ -7759,7 +7879,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1003, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1003" } ], "typeParameters": [ @@ -7867,7 +7987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1007, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1007" } ], "parameters": [ @@ -8144,19 +8264,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 854, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 858, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 988, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L988" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L988" } ], "signatures": [ @@ -8171,7 +8291,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 854, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L854" } ], "typeParameters": [ @@ -8279,7 +8399,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 858, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L858" } ], "parameters": [ @@ -8361,7 +8481,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "signatures": [ @@ -8459,7 +8579,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "type": { @@ -8507,7 +8627,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" } ], "signatures": [ @@ -8634,7 +8754,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" } ], "typeParameters": [ @@ -8967,7 +9087,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "signatures": [ @@ -9126,7 +9246,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "parameters": [ @@ -9182,7 +9302,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 859, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" } ], "type": { @@ -9220,7 +9340,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 862, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" } ], "type": { @@ -9262,7 +9382,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 864, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" } ], "type": { @@ -9309,7 +9429,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 861, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" } ], "type": { @@ -9355,7 +9475,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 860, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" } ], "type": { @@ -9393,7 +9513,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 863, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" } ], "type": { @@ -9414,7 +9534,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 858, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" } ] } @@ -9694,19 +9814,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2017, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2022, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2136" } ], "signatures": [ @@ -9721,7 +9841,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2017, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2017" } ], "typeParameters": [ @@ -9901,7 +10021,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2022, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2022" } ], "parameters": [ @@ -9959,7 +10079,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "signatures": [ @@ -10003,7 +10123,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "type": { @@ -10203,19 +10323,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 295, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L295" } ], "signatures": [ @@ -10230,7 +10350,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 245, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L245" } ], "typeParameters": [ @@ -10303,7 +10423,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 246, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246" } ], "parameters": [ @@ -10464,19 +10584,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L350" } ], "signatures": [ @@ -10491,7 +10611,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 300, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L300" } ], "typeParameters": [ @@ -10564,7 +10684,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L301" } ], "parameters": [ @@ -10725,19 +10845,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 596, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L596" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L596" } ], "signatures": [ @@ -10752,7 +10872,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L550" } ], "typeParameters": [ @@ -10811,7 +10931,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" } ], "parameters": [ @@ -10920,19 +11040,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 601, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 615, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L615" } ], "signatures": [ @@ -10947,7 +11067,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 601, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L601" } ], "typeParameters": [ @@ -11013,7 +11133,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L605" } ], "parameters": [ @@ -11129,19 +11249,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 620, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 634, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L634" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L634" } ], "signatures": [ @@ -11156,7 +11276,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 620, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L620" } ], "typeParameters": [ @@ -11222,7 +11342,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "parameters": [ @@ -11274,7 +11394,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 801, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" } ], "signatures": [ @@ -11385,7 +11505,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 801, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L801" } ], "typeParameters": [ @@ -11760,19 +11880,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 671, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 726, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L726" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L726" } ], "signatures": [ @@ -11787,7 +11907,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 667, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L667" } ], "typeParameters": [ @@ -11878,7 +11998,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 671, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L671" } ], "parameters": [ @@ -11932,7 +12052,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" } ], "signatures": [ @@ -12003,7 +12123,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 741, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L741" } ], "typeParameters": [ @@ -12298,19 +12418,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 462, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 507, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507" } ], "signatures": [ @@ -12325,7 +12445,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 461, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L461" } ], "typeParameters": [ @@ -12384,7 +12504,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 462, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L462" } ], "parameters": [ @@ -12493,19 +12613,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 526, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L526" } ], "signatures": [ @@ -12520,7 +12640,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" } ], "typeParameters": [ @@ -12586,7 +12706,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" } ], "parameters": [ @@ -12702,19 +12822,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 535, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 545, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L545" } ], "signatures": [ @@ -12729,7 +12849,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" } ], "typeParameters": [ @@ -12795,7 +12915,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 535, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535" } ], "parameters": [ @@ -12849,7 +12969,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "signatures": [ @@ -12990,7 +13110,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "parameters": [ @@ -13065,7 +13185,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -13094,7 +13214,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -13115,7 +13235,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ] } @@ -13267,19 +13387,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 401, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L401" } ], "signatures": [ @@ -13294,7 +13414,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L355" } ], "typeParameters": [ @@ -13367,7 +13487,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 356, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" } ], "parameters": [ @@ -13528,19 +13648,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 407, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L456" } ], "signatures": [ @@ -13555,7 +13675,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" } ], "typeParameters": [ @@ -13628,7 +13748,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 407, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L407" } ], "parameters": [ @@ -13779,19 +13899,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1709, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1754, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1754" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1754" } ], "signatures": [ @@ -13806,7 +13926,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1708, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1708" } ], "typeParameters": [ @@ -13883,7 +14003,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1709, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1709" } ], "parameters": [ @@ -13934,7 +14054,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "signatures": [ @@ -13970,7 +14090,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "parameters": [ @@ -14176,7 +14296,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "signatures": [ @@ -14289,7 +14409,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "typeParameters": [ @@ -14396,7 +14516,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" } ], "signatures": [ @@ -14531,7 +14651,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L227" } ], "typeParameters": [ @@ -14984,25 +15104,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1765, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1779, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1844, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1844" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1844" } ], "signatures": [ @@ -15017,7 +15137,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1765, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1765" } ], "typeParameters": [ @@ -15254,7 +15374,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1779, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1779" } ], "typeParameters": [ @@ -15343,7 +15463,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1784, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1784" } ], "parameters": [ @@ -15399,7 +15519,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 832, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" } ], "signatures": [ @@ -15438,7 +15558,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 832, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L832" } ], "typeParameters": [ @@ -15624,7 +15744,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2005, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" } ], "signatures": [ @@ -15868,7 +15988,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2005, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2005" } ], "parameters": [ @@ -15943,7 +16063,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2010, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" } ], "type": { @@ -15972,7 +16092,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2010, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" } ], "type": { @@ -15993,7 +16113,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 2010, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L2010" } ] } @@ -16331,31 +16451,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ @@ -16372,7 +16492,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" } ], "typeParameters": [ @@ -16433,7 +16553,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -16454,7 +16574,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -16475,7 +16595,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -16495,7 +16615,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ] } @@ -16525,7 +16645,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "parameters": [ @@ -16570,7 +16690,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -16591,7 +16711,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -16612,7 +16732,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -16632,7 +16752,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ] } @@ -16688,7 +16808,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" } ], "typeParameters": [ @@ -16749,7 +16869,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -16770,7 +16890,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -16791,7 +16911,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -16811,7 +16931,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ] } @@ -16867,7 +16987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" } ], "parameters": [ @@ -16912,7 +17032,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -16933,7 +17053,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -16954,7 +17074,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -16974,7 +17094,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ] } @@ -17154,19 +17274,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1565, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1565" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1565" } ], "signatures": [ @@ -17181,7 +17301,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1468" } ], "typeParameters": [ @@ -17270,7 +17390,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1472, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1472" } ], "parameters": [ @@ -17331,9 +17451,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "signatures": [ @@ -17504,9 +17624,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "typeParameters": [ @@ -17559,9 +17679,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -17579,9 +17699,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -17604,9 +17724,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -17624,9 +17744,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -17859,7 +17979,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "signatures": [ @@ -17996,7 +18116,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "parameters": [ @@ -18090,7 +18210,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -18119,7 +18239,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -18140,7 +18260,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ] } @@ -18309,19 +18429,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1463" } ], "signatures": [ @@ -18336,7 +18456,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1405, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1405" } ], "typeParameters": [ @@ -18395,7 +18515,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1406" } ], "parameters": [ @@ -18573,19 +18693,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1210" } ], "signatures": [ @@ -18600,7 +18720,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1152, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1152" } ], "typeParameters": [ @@ -18659,7 +18779,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1153" } ], "parameters": [ @@ -18845,19 +18965,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1274" } ], "signatures": [ @@ -18872,7 +18992,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1215" } ], "typeParameters": [ @@ -18931,7 +19051,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1216" } ], "parameters": [ @@ -19109,19 +19229,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1336" } ], "signatures": [ @@ -19136,7 +19256,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1279, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1279" } ], "typeParameters": [ @@ -19195,7 +19315,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1280" } ], "parameters": [ @@ -19381,19 +19501,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1400, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1400" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1400" } ], "signatures": [ @@ -19408,7 +19528,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1341, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1341" } ], "typeParameters": [ @@ -19467,7 +19587,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1342" } ], "parameters": [ @@ -19566,19 +19686,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 654, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 662, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L662" } ], "signatures": [ @@ -19593,7 +19713,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L653" } ], "typeParameters": [ @@ -19652,7 +19772,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 654, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L654" } ], "parameters": [ @@ -19751,19 +19871,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 640, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 648, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L648" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L648" } ], "signatures": [ @@ -19778,7 +19898,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 639, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L639" } ], "typeParameters": [ @@ -19837,7 +19957,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 640, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L640" } ], "parameters": [ @@ -19882,9 +20002,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "signatures": [ @@ -19922,9 +20042,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "parameters": [ @@ -19978,7 +20098,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "signatures": [ @@ -20095,7 +20215,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "typeParameters": [ @@ -20224,7 +20344,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "signatures": [ @@ -20268,7 +20388,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "type": { @@ -20301,7 +20421,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "signatures": [ @@ -20438,7 +20558,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "typeParameters": [ @@ -20687,9 +20807,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "signatures": [ @@ -20723,9 +20843,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "parameters": [ @@ -20782,7 +20902,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "signatures": [ @@ -20895,7 +21015,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "typeParameters": [ @@ -20993,9 +21113,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "signatures": [ @@ -21104,9 +21224,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "type": { @@ -21405,19 +21525,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1576, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1581, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1690, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1690" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1690" } ], "signatures": [ @@ -21432,7 +21552,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1576, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1576" } ], "typeParameters": [ @@ -21504,7 +21624,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1579, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" } ], "type": { @@ -21525,7 +21645,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1579, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" } ], "type": { @@ -21558,7 +21678,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1579, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1579" } ] } @@ -21581,7 +21701,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1581, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1581" } ], "parameters": [ @@ -21637,7 +21757,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1584, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" } ], "type": { @@ -21658,7 +21778,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1584, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" } ], "type": { @@ -21691,7 +21811,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 1584, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L1584" } ] } @@ -21716,9 +21836,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "signatures": [ @@ -21752,9 +21872,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "typeParameters": [ @@ -21828,9 +21948,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "signatures": [ @@ -21843,9 +21963,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "parameters": [ @@ -21944,9 +22064,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "signatures": [ @@ -21959,9 +22079,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "parameters": [ @@ -22069,9 +22189,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "signatures": [ @@ -22111,9 +22231,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "type": { @@ -22272,7 +22392,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", "line": 95, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L95" } ], "typeParameters": [ @@ -22457,7 +22577,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "signatures": [ @@ -22511,7 +22631,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L65" } ], "typeParameters": [ @@ -22621,7 +22741,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -22647,7 +22767,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -22738,7 +22858,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "type": { @@ -22975,7 +23095,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 74, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L74" } ], "type": { @@ -23010,7 +23130,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 78, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L78" } ], "type": { @@ -23039,7 +23159,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75" } ], "type": { @@ -23068,7 +23188,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 77, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77" } ], "type": { @@ -23089,7 +23209,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 73, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L73" } ] } @@ -23161,7 +23281,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23" } ], "type": { @@ -23388,7 +23508,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" } ], "type": { @@ -23430,7 +23550,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32" } ], "type": { @@ -23451,7 +23571,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" } ], "type": { @@ -23472,7 +23592,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" } ], "type": { @@ -23496,7 +23616,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" } ], "type": { @@ -23520,7 +23640,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24" } ], "type": { @@ -23537,9 +23657,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1673, + "line": 1736, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1673" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1736" } ], "signatures": [ @@ -23667,6 +23787,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT DELETE ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').delete().eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Delete a record and return it", @@ -23744,9 +23923,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1673, + "line": 1736, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1673" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1736" } ], "parameters": [ @@ -23824,9 +24003,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1676, + "line": 1739, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1676" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1739" } ], "type": { @@ -23876,9 +24055,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1675, + "line": 1738, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1675" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1738" } ] } @@ -23962,9 +24141,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1050, + "line": 1086, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1050" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" } ], "signatures": [ @@ -24035,6 +24214,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').insert({ id: 1, name: 'Mordor' })\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Create a record and return it", @@ -24121,9 +24359,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1050, + "line": 1086, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1050" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1086" } ], "typeParameters": [ @@ -24207,9 +24445,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1053, + "line": 1089, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1089" } ], "type": { @@ -24227,9 +24465,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1053, + "line": 1089, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1089" } ] } @@ -24312,9 +24550,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1057, + "line": 1093, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1093" } ], "type": { @@ -24332,9 +24570,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1057, + "line": 1093, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1057" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1093" } ] } @@ -24458,9 +24696,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1064, + "line": 1100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1064" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1100" } ], "type": { @@ -24527,9 +24765,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1065, + "line": 1101, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1065" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1101" } ], "type": { @@ -24548,9 +24786,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1063, + "line": 1099, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1063" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1099" } ] } @@ -24634,9 +24872,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 878, + "line": 905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L905" } ], "signatures": [ @@ -24772,6 +25010,86 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nThe most useful field on a Postgres error is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — when the database knows the fix, it puts the literal SQL there. For example, a permission-denied error (" + }, + { + "kind": "code", + "text": "`code: '42501'`" + }, + { + "kind": "text", + "text": ") arrives with a " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " like " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\"`" + }, + { + "kind": "text", + "text": ". Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so the hint isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('characters').select()\nif (error) {\n // Logs the full error: message, code, details, and hint.\n console.error(error)\n return\n}\n```" + } + ] + }, + { + "tag": "@exampleResponse", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "```json\n{\n \"error\": {\n \"code\": \"42501\",\n \"details\": null,\n \"hint\": \"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\",\n \"message\": \"permission denied for table characters\"\n },\n \"status\": 401,\n \"statusText\": \"Unauthorized\"\n}\n```" + } + ] + }, { "tag": "@example", "name": "Selecting specific columns", @@ -25351,9 +25669,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 878, + "line": 905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L878" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L905" } ], "typeParameters": [ @@ -25547,9 +25865,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 892, + "line": 919, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L919" } ], "type": { @@ -25624,9 +25942,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 891, + "line": 918, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L918" } ], "type": { @@ -25644,9 +25962,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 890, + "line": 917, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L890" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L917" } ] } @@ -25735,9 +26053,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1517, + "line": 1571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1571" } ], "signatures": [ @@ -25825,6 +26143,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('instruments').update({ name: 'piano' }).eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Update a record and return it", @@ -25911,9 +26288,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1517, + "line": 1571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1571" } ], "typeParameters": [ @@ -25994,9 +26371,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1519, + "line": 1573, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1573" } ], "type": { @@ -26014,9 +26391,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1519, + "line": 1573, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1573" } ] } @@ -26137,9 +26514,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1525, + "line": 1579, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1525" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1579" } ], "type": { @@ -26189,9 +26566,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1524, + "line": 1578, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1578" } ] } @@ -26275,9 +26652,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1315, + "line": 1360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1360" } ], "signatures": [ @@ -26425,6 +26802,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT, UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('instruments').upsert({ id: 1, name: 'piano' }).select()\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Bulk Upsert your data", @@ -26575,9 +27011,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1315, + "line": 1360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1315" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1360" } ], "typeParameters": [ @@ -26661,9 +27097,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1318, + "line": 1363, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1318" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1363" } ], "type": { @@ -26681,9 +27117,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1318, + "line": 1363, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1318" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1363" } ] } @@ -26766,9 +27202,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1322, + "line": 1367, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1367" } ], "type": { @@ -26786,9 +27222,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1322, + "line": 1367, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1367" } ] } @@ -26912,9 +27348,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1333, + "line": 1378, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1378" } ], "type": { @@ -26989,9 +27425,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1334, + "line": 1379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1334" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1379" } ], "type": { @@ -27035,9 +27471,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1332, + "line": 1377, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1377" } ], "type": { @@ -27073,9 +27509,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1331, + "line": 1376, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1376" } ], "type": { @@ -27093,9 +27529,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 1330, + "line": 1375, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1330" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L1375" } ] } @@ -27200,7 +27636,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 12, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L12" } ], "typeParameters": [ @@ -27310,7 +27746,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ], "type": { @@ -27330,7 +27766,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 17, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L17" } ] } @@ -27369,9 +27805,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "signatures": [ @@ -27423,9 +27859,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ], "typeParameters": [ @@ -27552,9 +27988,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 120, + "line": 118, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" } ], "type": { @@ -27573,9 +28009,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 123, + "line": 121, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" } ], "type": { @@ -27800,9 +28236,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 118, + "line": 116, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" } ], "type": { @@ -27826,9 +28262,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 124, + "line": 122, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" } ], "type": { @@ -27845,9 +28281,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 116, + "line": 114, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L114" } ], "type": { @@ -27887,9 +28323,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 128, + "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" } ], "type": { @@ -27908,9 +28344,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 119, + "line": 117, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" } ], "type": { @@ -27929,9 +28365,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 125, + "line": 123, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L123" } ], "type": { @@ -27950,9 +28386,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 121, + "line": 119, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L119" } ], "type": { @@ -27971,9 +28407,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 122, + "line": 120, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L120" } ], "type": { @@ -27995,9 +28431,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 117, + "line": 115, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" } ], "type": { @@ -28021,9 +28457,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 126, + "line": 124, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L124" } ], "type": { @@ -28041,9 +28477,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 115, + "line": 113, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L113" } ] } @@ -28141,9 +28577,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 81, + "line": 79, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" } ], "type": { @@ -28168,9 +28604,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 84, + "line": 82, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" } ], "type": { @@ -28403,9 +28839,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 79, + "line": 77, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -28435,9 +28871,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 85, + "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" } ], "type": { @@ -28462,9 +28898,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 77, + "line": 75, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L75" } ], "type": { @@ -28510,9 +28946,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 90, + "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88" } ], "type": { @@ -28539,9 +28975,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 80, + "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" } ], "type": { @@ -28566,9 +29002,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 86, + "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L84" } ], "type": { @@ -28593,9 +29029,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 82, + "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80" } ], "type": { @@ -28622,9 +29058,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 83, + "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L81" } ], "type": { @@ -28654,9 +29090,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 78, + "line": 76, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L76" } ], "type": { @@ -28686,9 +29122,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 87, + "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "type": { @@ -28712,7 +29148,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "signatures": [ @@ -28843,7 +29279,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 598, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L598" } ], "parameters": [ @@ -28890,7 +29326,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "signatures": [ @@ -28986,7 +29422,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 740, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L740" } ], "type": { @@ -29024,7 +29460,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "signatures": [ @@ -29181,7 +29617,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 851, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L851" } ], "parameters": [ @@ -29237,7 +29673,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 859, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L859" } ], "type": { @@ -29275,7 +29711,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 862, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L862" } ], "type": { @@ -29317,7 +29753,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 864, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L864" } ], "type": { @@ -29364,7 +29800,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 861, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L861" } ], "type": { @@ -29410,7 +29846,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 860, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L860" } ], "type": { @@ -29448,7 +29884,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 863, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L863" } ], "type": { @@ -29469,7 +29905,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 858, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L858" } ] } @@ -29564,7 +30000,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "signatures": [ @@ -29606,7 +30042,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 750, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L750" } ], "type": { @@ -29659,7 +30095,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "signatures": [ @@ -29798,7 +30234,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L448" } ], "parameters": [ @@ -29873,7 +30309,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -29902,7 +30338,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ], "type": { @@ -29923,7 +30359,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 453, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L453" } ] } @@ -29949,7 +30385,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "signatures": [ @@ -29983,7 +30419,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 967, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L967" } ], "parameters": [ @@ -30177,7 +30613,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "signatures": [ @@ -30288,7 +30724,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 692, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L692" } ], "typeParameters": [ @@ -30695,31 +31131,31 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" }, { "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ @@ -30734,7 +31170,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L111" } ], "typeParameters": [ @@ -30795,7 +31231,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -30816,7 +31252,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -30837,7 +31273,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ], "type": { @@ -30857,7 +31293,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 113, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L113" } ] } @@ -30880,7 +31316,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "parameters": [ @@ -30925,7 +31361,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -30946,7 +31382,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -30967,7 +31403,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ], "type": { @@ -30987,7 +31423,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 117, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L117" } ] } @@ -31036,7 +31472,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L122" } ], "typeParameters": [ @@ -31097,7 +31533,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -31118,7 +31554,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -31139,7 +31575,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ], "type": { @@ -31159,7 +31595,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 124, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L124" } ] } @@ -31208,7 +31644,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L129" } ], "parameters": [ @@ -31253,7 +31689,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -31274,7 +31710,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -31295,7 +31731,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ], "type": { @@ -31315,7 +31751,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 131, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L131" } ] } @@ -31340,9 +31776,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "signatures": [ @@ -31513,9 +31949,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 664, + "line": 672, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L672" } ], "typeParameters": [ @@ -31568,9 +32004,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -31588,9 +32024,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -31613,9 +32049,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ], "type": { @@ -31633,9 +32069,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 666, + "line": 674, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L674" } ] } @@ -31866,7 +32302,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "signatures": [ @@ -32001,7 +32437,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L515" } ], "parameters": [ @@ -32095,7 +32531,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -32124,7 +32560,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ], "type": { @@ -32145,7 +32581,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 521, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L521" } ] } @@ -32171,9 +32607,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "signatures": [ @@ -32211,9 +32647,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 251, + "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L249" } ], "parameters": [ @@ -32265,7 +32701,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "signatures": [ @@ -32380,7 +32816,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 939, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L939" } ], "typeParameters": [ @@ -32507,7 +32943,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "signatures": [ @@ -32549,7 +32985,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 895, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L895" } ], "type": { @@ -32570,7 +33006,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "signatures": [ @@ -32705,7 +33141,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L62" } ], "typeParameters": [ @@ -32944,9 +33380,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "signatures": [ @@ -32980,9 +33416,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 225, + "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L223" } ], "parameters": [ @@ -33037,7 +33473,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "signatures": [ @@ -33148,7 +33584,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L645" } ], "typeParameters": [ @@ -33236,9 +33672,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "signatures": [ @@ -33347,9 +33783,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 212, + "line": 210, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L210" } ], "type": { @@ -33380,9 +33816,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "signatures": [ @@ -33416,9 +33852,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 256, + "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L254" } ], "typeParameters": [ @@ -33492,9 +33928,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "signatures": [ @@ -33507,9 +33943,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 263, + "line": 261, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L261" } ], "parameters": [ @@ -33608,9 +34044,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "signatures": [ @@ -33623,9 +34059,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 270, + "line": 268, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L268" } ], "parameters": [ @@ -33733,9 +34169,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "signatures": [ @@ -33775,9 +34211,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", - "line": 157, + "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestBuilder.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestBuilder.ts#L155" } ], "type": { @@ -33931,7 +34367,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" } ], "typeParameters": [ @@ -34083,7 +34519,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L25" } ], "type": { @@ -34102,7 +34538,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L24" } ], "type": { @@ -34121,7 +34557,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L23" } ], "type": { @@ -34145,7 +34581,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -34171,7 +34607,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -34195,7 +34631,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L22" } ], "type": { @@ -34215,7 +34651,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 21, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L21" } ], "extendedTypes": [ @@ -34248,7 +34684,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L19" } ], "type": { @@ -34276,7 +34712,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L18" } ], "type": { @@ -34299,7 +34735,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L17" } ], "type": { @@ -34320,7 +34756,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -34346,7 +34782,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -34370,7 +34806,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L16" } ], "type": { @@ -34390,7 +34826,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 15, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L15" } ], "typeParameters": [ @@ -34425,7 +34861,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/common/common.ts#L81" } ], "type": { @@ -34450,7 +34886,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/common/common.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/common/common.ts#L82" } ], "type": { @@ -34470,7 +34906,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 81, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/common/common.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/common/common.ts#L81" } ] } @@ -34487,7 +34923,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L32" } ], "typeParameters": [ @@ -34535,7 +34971,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 33, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L33" } ], "typeParameters": [ @@ -34577,7 +35013,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/types/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/types/types.ts#L31" } ], "typeParameters": [ @@ -34635,7 +35071,7 @@ "fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" } ], "typeParameters": [ @@ -35220,7 +35656,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L16" } ], "type": { @@ -35243,7 +35679,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L21" } ], "type": { @@ -35267,7 +35703,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L17" } ], "type": { @@ -35291,7 +35727,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L22" } ], "type": { @@ -35315,7 +35751,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L19" } ], "type": { @@ -35339,7 +35775,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L18" } ], "type": { @@ -35363,7 +35799,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L20" } ], "type": { @@ -35388,7 +35824,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 16, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/postgrest-js/src/index.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/postgrest-js/src/index.ts#L16" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/realtime.json b/apps/docs/spec/enrichments/tsdoc_v2/realtime.json index afdd014d839dd..da040a4c8592e 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/realtime.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/realtime.json @@ -23,7 +23,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L138" } ], "type": { @@ -42,7 +42,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L140" } ], "type": { @@ -61,7 +61,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L139" } ], "type": { @@ -80,7 +80,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L141" } ], "type": { @@ -100,7 +100,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 137, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L137" } ] }, @@ -122,7 +122,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L131" } ], "type": { @@ -141,7 +141,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L134" } ], "type": { @@ -160,7 +160,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L132" } ], "type": { @@ -179,7 +179,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L133" } ], "type": { @@ -199,7 +199,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 130, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L130" } ] }, @@ -221,7 +221,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L33" } ], "type": { @@ -240,7 +240,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L34" } ], "type": { @@ -259,7 +259,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L32" } ], "type": { @@ -279,7 +279,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L31" } ] }, @@ -301,7 +301,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L148" } ], "type": { @@ -320,7 +320,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 147, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L147" } ], "type": { @@ -339,7 +339,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L145" } ], "type": { @@ -358,7 +358,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L146" } ], "type": { @@ -378,7 +378,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L144" } ] }, @@ -408,7 +408,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "signatures": [ @@ -462,7 +462,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "parameters": [ @@ -535,7 +535,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L177" } ], "type": { @@ -578,7 +578,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L179" } ], "type": { @@ -599,7 +599,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 241, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L241" } ], "type": { @@ -621,7 +621,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L181" } ], "type": { @@ -643,7 +643,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L180" } ], "type": { @@ -664,7 +664,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 242, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L242" } ], "type": { @@ -686,7 +686,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L178" } ], "type": { @@ -715,7 +715,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 240, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L240" } ], "type": { @@ -734,7 +734,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "getSignature": { @@ -748,7 +748,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "type": { @@ -768,7 +768,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "getSignature": { @@ -782,7 +782,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "type": { @@ -808,7 +808,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "getSignature": { @@ -822,7 +822,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "type": { @@ -848,13 +848,13 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L185" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "getSignature": { @@ -868,7 +868,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L185" } ], "type": { @@ -892,7 +892,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "parameters": [ @@ -930,7 +930,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "getSignature": { @@ -944,7 +944,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "type": { @@ -962,9 +962,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1082, + "line": 1099, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L1099" } ], "signatures": [ @@ -977,9 +977,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1082, + "line": 1099, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L1099" } ], "parameters": [ @@ -1014,9 +1014,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 746, + "line": 764, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L764" } ], "signatures": [ @@ -1030,7 +1030,39 @@ "summary": [ { "kind": "text", - "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback." + "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback.\n\nPayloads that are " + }, + { + "kind": "code", + "text": "`ArrayBuffer`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`ArrayBufferView`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`Uint8Array`" + }, + { + "kind": "text", + "text": ") are sent as\n" + }, + { + "kind": "code", + "text": "`application/octet-stream`" + }, + { + "kind": "text", + "text": "; all other payloads are JSON-encoded." } ], "blockTags": [ @@ -1057,9 +1089,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 746, + "line": 764, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L764" } ], "parameters": [ @@ -1135,9 +1167,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 749, + "line": 767, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L767" } ], "type": { @@ -1155,9 +1187,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 749, + "line": 767, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L767" } ] } @@ -1193,9 +1225,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -1213,9 +1245,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ] } @@ -1238,9 +1270,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -1257,9 +1289,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -1276,9 +1308,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -1296,9 +1328,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ] } @@ -1551,105 +1583,105 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 438, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L453" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 489, + "line": 504, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L504" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 515, + "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L530" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 715, + "line": 730, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L715" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L730" } ], "signatures": [ @@ -1670,9 +1702,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 438, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "parameters": [ @@ -1711,9 +1743,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 440, + "line": 455, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ], "type": { @@ -1731,9 +1763,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 440, + "line": 455, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ] } @@ -1756,9 +1788,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "signatures": [ @@ -1771,9 +1803,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "type": { @@ -1811,9 +1843,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "typeParameters": [ @@ -1834,9 +1866,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "indexSignatures": [ @@ -1849,9 +1881,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "parameters": [ @@ -1913,9 +1945,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 445, + "line": 460, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L460" } ], "type": { @@ -1933,9 +1965,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 445, + "line": 460, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L460" } ] } @@ -1958,9 +1990,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "signatures": [ @@ -1973,9 +2005,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "parameters": [ @@ -2037,9 +2069,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "typeParameters": [ @@ -2060,9 +2092,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "indexSignatures": [ @@ -2075,9 +2107,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "parameters": [ @@ -2139,9 +2171,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 450, + "line": 465, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L465" } ], "type": { @@ -2159,9 +2191,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 450, + "line": 465, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L465" } ] } @@ -2184,9 +2216,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "signatures": [ @@ -2199,9 +2231,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "parameters": [ @@ -2263,9 +2295,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "typeParameters": [ @@ -2286,9 +2318,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "indexSignatures": [ @@ -2301,9 +2333,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "parameters": [ @@ -2365,9 +2397,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 455, + "line": 470, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L470" } ], "type": { @@ -2385,9 +2417,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 455, + "line": 470, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L470" } ] } @@ -2410,9 +2442,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "signatures": [ @@ -2425,9 +2457,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "parameters": [ @@ -2511,9 +2543,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "typeParameters": [ @@ -2534,9 +2566,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "indexSignatures": [ @@ -2549,9 +2581,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "parameters": [ @@ -2625,9 +2657,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 461, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "signatures": [ @@ -2640,9 +2672,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 461, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "parameters": [ @@ -2704,9 +2736,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "typeParameters": [ @@ -2727,9 +2759,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "indexSignatures": [ @@ -2742,9 +2774,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "parameters": [ @@ -2818,9 +2850,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 466, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "signatures": [ @@ -2833,9 +2865,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 466, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "parameters": [ @@ -2897,9 +2929,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "typeParameters": [ @@ -2920,9 +2952,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "indexSignatures": [ @@ -2935,9 +2967,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "parameters": [ @@ -3011,9 +3043,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 471, + "line": 486, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L486" } ], "signatures": [ @@ -3026,9 +3058,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 471, + "line": 486, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L486" } ], "parameters": [ @@ -3090,9 +3122,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "typeParameters": [ @@ -3113,9 +3145,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "indexSignatures": [ @@ -3128,9 +3160,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "parameters": [ @@ -3204,9 +3236,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 476, + "line": 491, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ], "signatures": [ @@ -3219,9 +3251,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 476, + "line": 491, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ], "parameters": [ @@ -3283,9 +3315,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "typeParameters": [ @@ -3306,9 +3338,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "indexSignatures": [ @@ -3321,9 +3353,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "parameters": [ @@ -3414,9 +3446,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 481, + "line": 496, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "signatures": [ @@ -3429,9 +3461,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 481, + "line": 496, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "parameters": [ @@ -3493,9 +3525,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 489, + "line": 504, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ], "parameters": [ @@ -3550,9 +3582,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 491, + "line": 506, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ], "type": { @@ -3570,9 +3602,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 491, + "line": 506, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ] } @@ -3603,9 +3635,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 507, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "signatures": [ @@ -3618,9 +3650,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 507, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "parameters": [ @@ -3648,9 +3680,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 494, + "line": 509, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L509" } ], "type": { @@ -3669,9 +3701,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 495, + "line": 510, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ], "type": { @@ -3692,9 +3724,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 497, + "line": 512, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L512" } ], "type": { @@ -3713,9 +3745,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 496, + "line": 511, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L511" } ], "type": { @@ -3733,9 +3765,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 495, + "line": 510, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ] } @@ -3750,9 +3782,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 508, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L508" } ], "type": { @@ -3770,9 +3802,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 507, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "indexSignatures": [ @@ -3785,9 +3817,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 499, + "line": 514, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L499" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L514" } ], "parameters": [ @@ -3848,9 +3880,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "typeParameters": [ @@ -3871,9 +3903,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "indexSignatures": [ @@ -3886,9 +3918,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "parameters": [ @@ -3950,9 +3982,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 504, + "line": 519, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ], "type": { @@ -3970,9 +4002,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 504, + "line": 519, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ] } @@ -3995,9 +4027,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 520, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ], "signatures": [ @@ -4010,9 +4042,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 520, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ], "parameters": [ @@ -4040,9 +4072,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 507, + "line": 522, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L522" } ], "type": { @@ -4061,9 +4093,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 508, + "line": 523, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L523" } ], "type": { @@ -4084,9 +4116,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 510, + "line": 525, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L525" } ], "type": { @@ -4105,9 +4137,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 509, + "line": 524, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L509" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "type": { @@ -4125,9 +4157,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 508, + "line": 523, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L523" } ] } @@ -4142,9 +4174,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 512, + "line": 527, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ], "type": { @@ -4164,9 +4196,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 521, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L521" } ], "type": { @@ -4184,9 +4216,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 520, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ] } @@ -4228,9 +4260,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 515, + "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L530" } ], "typeParameters": [ @@ -4297,9 +4329,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 517, + "line": 532, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L532" } ], "type": { @@ -4320,9 +4352,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 517, + "line": 532, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L532" } ] } @@ -4345,9 +4377,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 533, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "signatures": [ @@ -4360,9 +4392,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 533, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "parameters": [ @@ -4390,9 +4422,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 520, + "line": 535, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L535" } ], "type": { @@ -4412,9 +4444,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 521, + "line": 536, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ], "type": { @@ -4445,9 +4477,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 534, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L534" } ], "type": { @@ -4465,9 +4497,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 533, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ] } @@ -4509,9 +4541,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "typeParameters": [ @@ -4532,9 +4564,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "indexSignatures": [ @@ -4547,9 +4579,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "parameters": [ @@ -4611,9 +4643,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 526, + "line": 541, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L541" } ], "type": { @@ -4634,9 +4666,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 526, + "line": 541, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L541" } ] } @@ -4659,9 +4691,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 542, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "signatures": [ @@ -4674,9 +4706,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 542, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "parameters": [ @@ -4704,9 +4736,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 529, + "line": 544, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L544" } ], "type": { @@ -4726,9 +4758,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 530, + "line": 545, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ], "type": { @@ -4759,9 +4791,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 543, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L543" } ], "type": { @@ -4779,9 +4811,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 542, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ] } @@ -4823,9 +4855,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "typeParameters": [ @@ -4846,9 +4878,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "indexSignatures": [ @@ -4861,9 +4893,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "parameters": [ @@ -4925,9 +4957,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 535, + "line": 550, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L550" } ], "type": { @@ -4948,9 +4980,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 535, + "line": 550, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L550" } ] } @@ -4973,9 +5005,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 551, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "signatures": [ @@ -4988,9 +5020,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 551, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "parameters": [ @@ -5018,9 +5050,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 538, + "line": 553, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L553" } ], "type": { @@ -5040,9 +5072,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 539, + "line": 554, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L554" } ], "type": { @@ -5073,9 +5105,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 552, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L552" } ], "type": { @@ -5093,9 +5125,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 551, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ] } @@ -5137,9 +5169,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" } ], "typeParameters": [ @@ -5160,9 +5192,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" } ], "indexSignatures": [ @@ -5175,9 +5207,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" } ], "parameters": [ @@ -5239,9 +5271,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 544, + "line": 559, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L544" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L559" } ], "type": { @@ -5262,9 +5294,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 544, + "line": 559, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L544" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L559" } ] } @@ -5287,9 +5319,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 560, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L560" } ], "signatures": [ @@ -5302,9 +5334,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 560, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L560" } ], "parameters": [ @@ -5332,9 +5364,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 547, + "line": 562, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L562" } ], "type": { @@ -5354,9 +5386,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 548, + "line": 563, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L563" } ], "type": { @@ -5387,9 +5419,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 561, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L561" } ], "type": { @@ -5407,9 +5439,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 560, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L560" } ] } @@ -5451,9 +5483,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" } ], "typeParameters": [ @@ -5474,9 +5506,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" } ], "indexSignatures": [ @@ -5489,9 +5521,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" } ], "parameters": [ @@ -5563,9 +5595,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 554, + "line": 569, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L554" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L569" } ], "signatures": [ @@ -5578,9 +5610,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 554, + "line": 569, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L554" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L569" } ], "parameters": [ @@ -5625,9 +5657,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "signatures": [ @@ -5659,9 +5691,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "typeParameters": [ @@ -5682,9 +5714,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "indexSignatures": [ @@ -5697,9 +5729,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "parameters": [ @@ -5762,9 +5794,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 846, + "line": 863, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L863" } ], "signatures": [ @@ -5838,9 +5870,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 846, + "line": 863, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L863" } ], "parameters": [ @@ -5884,9 +5916,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 849, + "line": 866, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L866" } ], "type": { @@ -5913,9 +5945,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 850, + "line": 867, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L850" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L867" } ], "type": { @@ -5940,9 +5972,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 848, + "line": 865, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L865" } ], "type": { @@ -5973,9 +6005,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 847, + "line": 864, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L864" } ], "indexSignatures": [ @@ -5988,9 +6020,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 851, + "line": 868, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L868" } ], "parameters": [ @@ -6040,9 +6072,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 853, + "line": 870, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L870" } ], "indexSignatures": [ @@ -6055,9 +6087,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 853, + "line": 870, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L870" } ], "parameters": [ @@ -6113,9 +6145,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L292" } ], "signatures": [ @@ -6129,7 +6161,63 @@ "summary": [ { "kind": "text", - "text": "Subscribe registers your client with the server" + "text": "Subscribe registers your client with the server.\n\nThe optional " + }, + { + "kind": "code", + "text": "`callback`" + }, + { + "kind": "text", + "text": " receives a " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": " and, on failure, an " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " argument.\nLog the full " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " so its " + }, + { + "kind": "code", + "text": "`cause`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": ", and any structured fields aren't hidden\nbehind " + }, + { + "kind": "code", + "text": "`err.message`" + }, + { + "kind": "text", + "text": "." } ], "blockTags": [ @@ -6141,15 +6229,25 @@ "text": "Realtime" } ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nsupabase.channel('room1').subscribe((status, err) => {\n if (status === 'CHANNEL_ERROR' || status === 'TIMED_OUT') {\n // Log the full error: its `cause` often holds the underlying reason.\n console.error(status, err)\n }\n})\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L292" } ], "parameters": [ @@ -6172,9 +6270,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 278, + "line": 293, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L293" } ], "signatures": [ @@ -6187,9 +6285,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 278, + "line": 293, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L293" } ], "parameters": [ @@ -6266,9 +6364,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 954, + "line": 971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L954" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L971" } ], "signatures": [ @@ -6300,9 +6398,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 954, + "line": 971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L954" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L971" } ], "type": { @@ -6321,9 +6419,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 406, + "line": 421, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L421" } ], "signatures": [ @@ -6363,9 +6461,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 406, + "line": 421, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L421" } ], "parameters": [ @@ -6386,9 +6484,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 422, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L422" } ], "indexSignatures": [ @@ -6401,9 +6499,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 422, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L422" } ], "parameters": [ @@ -6445,9 +6543,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 423, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L423" } ], "indexSignatures": [ @@ -6460,9 +6558,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 423, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L423" } ], "parameters": [ @@ -6518,9 +6616,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 939, + "line": 956, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L956" } ], "signatures": [ @@ -6560,9 +6658,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 939, + "line": 956, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L956" } ], "parameters": [ @@ -6608,9 +6706,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "signatures": [ @@ -6642,9 +6740,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "parameters": [ @@ -6665,9 +6763,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "indexSignatures": [ @@ -6680,9 +6778,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "parameters": [ @@ -6738,9 +6836,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 924, + "line": 941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L941" } ], "signatures": [ @@ -6772,9 +6870,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 924, + "line": 941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L941" } ], "parameters": [ @@ -6846,7 +6944,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 176, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L176" } ] }, @@ -6868,7 +6966,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L277" } ], "signatures": [ @@ -6922,7 +7020,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L277" } ], "parameters": [ @@ -7076,7 +7174,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "type": { @@ -7099,7 +7197,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "signatures": [ @@ -7114,7 +7212,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "type": { @@ -7160,7 +7258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L140" } ], "type": { @@ -7189,7 +7287,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L142" } ], "type": { @@ -7218,7 +7316,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L138" } ], "type": { @@ -7244,7 +7342,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L153" } ], "type": { @@ -7487,7 +7585,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L146" } ], "type": { @@ -7503,7 +7601,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 146, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L146" } ], "indexSignatures": [ @@ -7518,7 +7616,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 146, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L146" } ], "parameters": [ @@ -7555,7 +7653,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L144" } ], "type": { @@ -7577,7 +7675,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L151" } ], "type": { @@ -7603,7 +7701,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 147, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L147" } ], "type": { @@ -7619,7 +7717,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 147, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L147" } ], "indexSignatures": [ @@ -7634,7 +7732,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 147, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L147" } ], "parameters": [ @@ -7671,7 +7769,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L149" } ], "type": { @@ -7691,7 +7789,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L158" } ], "type": { @@ -7719,7 +7817,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 154, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L154" } ], "type": { @@ -7740,7 +7838,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L156" } ], "type": { @@ -7766,7 +7864,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L155" } ], "type": { @@ -7785,7 +7883,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L206" } ], "getSignature": { @@ -7799,7 +7897,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L206" } ], "type": { @@ -7830,7 +7928,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 202, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L202" } ], "getSignature": { @@ -7844,7 +7942,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 202, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L202" } ], "type": { @@ -7875,7 +7973,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "getSignature": { @@ -7889,7 +7987,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "type": { @@ -7909,7 +8007,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "getSignature": { @@ -7923,7 +8021,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "type": { @@ -7948,7 +8046,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "getSignature": { @@ -7962,7 +8060,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "type": { @@ -7982,7 +8080,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 180, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L180" } ], "getSignature": { @@ -7996,7 +8094,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 180, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L180" } ], "type": { @@ -8021,7 +8119,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L187" } ], "getSignature": { @@ -8035,7 +8133,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L187" } ], "type": { @@ -8064,7 +8162,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 210, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L210" } ], "getSignature": { @@ -8078,7 +8176,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 210, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L210" } ], "type": { @@ -8094,7 +8192,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "signatures": [ @@ -8109,7 +8207,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "parameters": [ @@ -8146,7 +8244,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L194" } ], "getSignature": { @@ -8160,7 +8258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L194" } ], "type": { @@ -8186,7 +8284,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 214, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L214" } ], "getSignature": { @@ -8200,7 +8298,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 214, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L214" } ], "type": { @@ -8218,7 +8316,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "signatures": [ @@ -8233,7 +8331,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "type": { @@ -8258,7 +8356,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L218" } ], "getSignature": { @@ -8272,7 +8370,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L218" } ], "type": { @@ -8295,7 +8393,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 220, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L220" } ], "type": { @@ -8331,7 +8429,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 221, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L221" } ], "type": { @@ -8367,7 +8465,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 222, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L222" } ], "type": { @@ -8403,7 +8501,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 219, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L219" } ], "type": { @@ -8440,7 +8538,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 218, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L218" } ] } @@ -8458,7 +8556,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "getSignature": { @@ -8472,7 +8570,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "type": { @@ -8492,7 +8590,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "getSignature": { @@ -8506,7 +8604,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "type": { @@ -8528,7 +8626,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 198, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L198" } ], "getSignature": { @@ -8542,7 +8640,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 198, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L198" } ], "type": { @@ -8567,7 +8665,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L469" } ], "signatures": [ @@ -8619,7 +8717,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L469" } ], "parameters": [ @@ -8670,7 +8768,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L297" } ], "signatures": [ @@ -8704,7 +8802,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L297" } ], "type": { @@ -8725,7 +8823,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 429, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L429" } ], "signatures": [ @@ -8759,7 +8857,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 429, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L429" } ], "type": { @@ -8785,7 +8883,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L356" } ], "signatures": [ @@ -8819,7 +8917,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L356" } ], "parameters": [ @@ -8904,7 +9002,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "signatures": [ @@ -8947,7 +9045,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "type": { @@ -8968,7 +9066,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L376" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L376" } ], "signatures": [ @@ -9002,7 +9100,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L376" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L376" } ], "type": { @@ -9029,7 +9127,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L438" } ], "signatures": [ @@ -9071,7 +9169,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L438" } ], "type": { @@ -9092,7 +9190,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L447" } ], "signatures": [ @@ -9134,7 +9232,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L447" } ], "type": { @@ -9155,7 +9253,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L456" } ], "signatures": [ @@ -9197,7 +9295,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L456" } ], "type": { @@ -9218,7 +9316,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 420, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L420" } ], "signatures": [ @@ -9260,7 +9358,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 420, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L420" } ], "parameters": [ @@ -9318,7 +9416,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L550" } ], "signatures": [ @@ -9352,7 +9450,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L550" } ], "parameters": [ @@ -9391,7 +9489,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L491" } ], "signatures": [ @@ -9425,7 +9523,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L491" } ], "parameters": [ @@ -9461,7 +9559,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 401, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L401" } ], "signatures": [ @@ -9495,7 +9593,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 401, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L401" } ], "type": { @@ -9532,7 +9630,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L386" } ], "signatures": [ @@ -9566,7 +9664,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L386" } ], "parameters": [ @@ -9624,7 +9722,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 540, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L540" } ], "signatures": [ @@ -9658,7 +9756,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 540, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L540" } ], "type": { @@ -9690,7 +9788,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L517" } ], "signatures": [ @@ -9757,7 +9855,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L517" } ], "parameters": [ @@ -9850,7 +9948,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 135, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L135" } ] }, @@ -9872,7 +9970,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "signatures": [ @@ -9916,7 +10014,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "parameters": [ @@ -10008,7 +10106,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 66, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L66" } ], "type": { @@ -10030,7 +10128,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "getSignature": { @@ -10044,7 +10142,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "type": { @@ -10085,7 +10183,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 41, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L41" } ] }, @@ -10118,7 +10216,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 169, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" } ], "signatures": [ @@ -10162,7 +10260,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 169, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" } ], "type": { @@ -10276,7 +10374,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 194, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" } ], "signatures": [ @@ -10320,7 +10418,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 194, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" } ], "type": { @@ -10348,7 +10446,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 61, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L61" } ] }, @@ -10372,7 +10470,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" } ], "type": { @@ -10393,7 +10491,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" } ], "type": { @@ -10414,7 +10512,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" } ], "type": { @@ -10435,7 +10533,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 4, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" } ], "type": { @@ -10456,7 +10554,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 2, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" } ], "type": { @@ -10477,7 +10575,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "type": { @@ -10493,7 +10591,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "signatures": [ @@ -10508,7 +10606,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "parameters": [ @@ -10551,7 +10649,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" } ], "type": { @@ -10570,7 +10668,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "type": { @@ -10593,7 +10691,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "signatures": [ @@ -10608,7 +10706,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "parameters": [ @@ -10662,7 +10760,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "type": { @@ -10685,7 +10783,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "signatures": [ @@ -10700,7 +10798,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "parameters": [ @@ -10754,7 +10852,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "type": { @@ -10777,7 +10875,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "signatures": [ @@ -10792,7 +10890,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "parameters": [ @@ -10846,7 +10944,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "type": { @@ -10869,7 +10967,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "signatures": [ @@ -10884,7 +10982,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "parameters": [ @@ -10940,7 +11038,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 3, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" } ], "type": { @@ -10961,7 +11059,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 8, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" } ], "type": { @@ -10982,7 +11080,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" } ], "type": { @@ -11003,7 +11101,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 7, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" } ], "type": { @@ -11022,7 +11120,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "signatures": [ @@ -11045,7 +11143,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "parameters": [ @@ -11095,7 +11193,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "signatures": [ @@ -11118,7 +11216,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "parameters": [ @@ -11167,7 +11265,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "signatures": [ @@ -11190,7 +11288,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "parameters": [ @@ -11240,7 +11338,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "signatures": [ @@ -11263,7 +11361,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "parameters": [ @@ -11345,7 +11443,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 1, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" } ] }, @@ -11383,7 +11481,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "signatures": [ @@ -11398,7 +11496,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L59" } ], "parameters": [ @@ -11474,7 +11572,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "indexSignatures": [ @@ -11489,7 +11587,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L61" } ], "parameters": [ @@ -11523,7 +11621,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ], "type": { @@ -11546,7 +11644,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ], "type": { @@ -11579,7 +11677,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11604,7 +11702,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11625,7 +11723,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11651,7 +11749,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11671,7 +11769,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ] } @@ -11698,7 +11796,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11723,7 +11821,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11744,7 +11842,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11764,7 +11862,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ] } @@ -11791,7 +11889,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L37" } ], "type": { @@ -11811,7 +11909,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 23, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ] } @@ -11829,7 +11927,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 22, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ] } @@ -11846,7 +11944,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 128, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ], "type": { @@ -11884,7 +11982,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 128, "character": 83, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ] } @@ -11905,7 +12003,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ], "type": { @@ -11930,7 +12028,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "type": { @@ -11946,7 +12044,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "signatures": [ @@ -11998,7 +12096,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L72" } ], "type": { @@ -12030,7 +12128,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L83" } ], "type": { @@ -12051,7 +12149,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L71" } ], "type": { @@ -12083,7 +12181,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L79" } ], "type": { @@ -12109,7 +12207,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "type": { @@ -12125,7 +12223,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "indexSignatures": [ @@ -12140,7 +12238,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "parameters": [ @@ -12178,7 +12276,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "type": { @@ -12194,7 +12292,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "signatures": [ @@ -12257,7 +12355,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L67" } ], "type": { @@ -12278,7 +12376,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L77" } ], "type": { @@ -12304,7 +12402,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "type": { @@ -12320,7 +12418,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "signatures": [ @@ -12389,7 +12487,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L78" } ], "type": { @@ -12415,7 +12513,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "type": { @@ -12431,7 +12529,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "indexSignatures": [ @@ -12446,7 +12544,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "parameters": [ @@ -12484,7 +12582,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "type": { @@ -12500,7 +12598,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "signatures": [ @@ -12569,7 +12667,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L90" } ], "type": { @@ -12595,7 +12693,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L66" } ], "type": { @@ -12616,7 +12714,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L65" } ], "type": { @@ -12639,7 +12737,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L69" } ], "type": { @@ -12660,7 +12758,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L80" } ], "type": { @@ -12681,7 +12779,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L81" } ], "type": { @@ -12704,7 +12802,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ] } @@ -12721,7 +12819,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ], "type": { @@ -12744,7 +12842,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L34" } ], "type": { @@ -12765,7 +12863,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L37" } ], "type": { @@ -12784,7 +12882,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L35" } ], "type": { @@ -12803,7 +12901,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L36" } ], "type": { @@ -12822,7 +12920,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L33" } ], "type": { @@ -12842,7 +12940,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ] } @@ -12859,7 +12957,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ], "typeParameters": [ @@ -12914,7 +13012,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L113" } ], "type": { @@ -12946,7 +13044,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L125" } ], "type": { @@ -12973,7 +13071,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L117" } ], "type": { @@ -13002,7 +13100,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L121" } ], "type": { @@ -13022,7 +13120,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 109, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ] } @@ -13039,7 +13137,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 104, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "typeParameters": [ @@ -13062,7 +13160,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 104, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "indexSignatures": [ @@ -13077,7 +13175,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 104, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "parameters": [ @@ -13165,7 +13263,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "typeParameters": [ @@ -13188,7 +13286,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "indexSignatures": [ @@ -13203,7 +13301,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "parameters": [ @@ -13261,7 +13359,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L99" } ], "type": { @@ -13291,7 +13389,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 100, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ], "type": { @@ -13307,7 +13405,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 100, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ] } @@ -13324,7 +13422,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 101, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L101" } ], "type": { @@ -13358,7 +13456,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 98, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L98" } ] } @@ -13377,7 +13475,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "typeParameters": [ @@ -13400,7 +13498,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "indexSignatures": [ @@ -13415,7 +13513,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "parameters": [ @@ -13473,7 +13571,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 85, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L85" } ], "type": { @@ -13503,7 +13601,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 86, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L86" } ], "type": { @@ -13525,7 +13623,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 87, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ], "type": { @@ -13541,7 +13639,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 87, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ] } @@ -13559,7 +13657,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 84, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L84" } ] } @@ -13578,7 +13676,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "typeParameters": [ @@ -13601,7 +13699,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "indexSignatures": [ @@ -13616,7 +13714,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "parameters": [ @@ -13674,7 +13772,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 92, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L92" } ], "type": { @@ -13704,7 +13802,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 93, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L93" } ], "type": { @@ -13726,7 +13824,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 94, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L94" } ], "type": { @@ -13760,7 +13858,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 91, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L91" } ] } @@ -13779,7 +13877,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "typeParameters": [ @@ -13802,7 +13900,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "indexSignatures": [ @@ -13817,7 +13915,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "parameters": [ @@ -13863,7 +13961,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L20" } ], "type": { @@ -13899,7 +13997,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L18" } ], "type": { @@ -13929,7 +14027,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L19" } ], "type": { @@ -13948,7 +14046,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L21" } ], "type": { @@ -13985,7 +14083,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ] } @@ -14002,7 +14100,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "typeParameters": [ @@ -14025,7 +14123,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "indexSignatures": [ @@ -14040,7 +14138,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "parameters": [ @@ -14086,7 +14184,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L27" } ], "type": { @@ -14122,7 +14220,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L25" } ], "type": { @@ -14152,7 +14250,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L26" } ], "type": { @@ -14171,7 +14269,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L28" } ], "type": { @@ -14208,7 +14306,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 77, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ] } @@ -14225,7 +14323,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "typeParameters": [ @@ -14248,7 +14346,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -14263,7 +14361,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "parameters": [ @@ -14300,7 +14398,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ] } @@ -14320,7 +14418,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 75, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -14335,7 +14433,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L14" } ], "parameters": [ @@ -14388,7 +14486,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 40, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L40" } ], "type": { @@ -14426,7 +14524,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 40, "character": 85, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L40" } ] } @@ -14449,7 +14547,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 151, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L151" } ], "type": { @@ -14474,7 +14572,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L33" } ], "type": { @@ -14496,7 +14594,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L34" } ], "type": { @@ -14518,7 +14616,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L35" } ], "type": { @@ -14540,7 +14638,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L36" } ], "type": { @@ -14562,7 +14660,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L37" } ], "type": { @@ -14583,7 +14681,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L32" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json index afdd014d839dd..da040a4c8592e 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json @@ -23,7 +23,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L138" } ], "type": { @@ -42,7 +42,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L140" } ], "type": { @@ -61,7 +61,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L139" } ], "type": { @@ -80,7 +80,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L141" } ], "type": { @@ -100,7 +100,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 137, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L137" } ] }, @@ -122,7 +122,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L131" } ], "type": { @@ -141,7 +141,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L134" } ], "type": { @@ -160,7 +160,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L132" } ], "type": { @@ -179,7 +179,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L133" } ], "type": { @@ -199,7 +199,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 130, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L130" } ] }, @@ -221,7 +221,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L33" } ], "type": { @@ -240,7 +240,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L34" } ], "type": { @@ -259,7 +259,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L32" } ], "type": { @@ -279,7 +279,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L31" } ] }, @@ -301,7 +301,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L148" } ], "type": { @@ -320,7 +320,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 147, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L147" } ], "type": { @@ -339,7 +339,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L145" } ], "type": { @@ -358,7 +358,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L146" } ], "type": { @@ -378,7 +378,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L144" } ] }, @@ -408,7 +408,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "signatures": [ @@ -462,7 +462,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L238" } ], "parameters": [ @@ -535,7 +535,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L177" } ], "type": { @@ -578,7 +578,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L179" } ], "type": { @@ -599,7 +599,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 241, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L241" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L241" } ], "type": { @@ -621,7 +621,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L181" } ], "type": { @@ -643,7 +643,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L180" } ], "type": { @@ -664,7 +664,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 242, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L242" } ], "type": { @@ -686,7 +686,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L178" } ], "type": { @@ -715,7 +715,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 240, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L240" } ], "type": { @@ -734,7 +734,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "getSignature": { @@ -748,7 +748,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L193" } ], "type": { @@ -768,7 +768,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "getSignature": { @@ -782,7 +782,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L201" } ], "type": { @@ -808,7 +808,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "getSignature": { @@ -822,7 +822,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L205" } ], "type": { @@ -848,13 +848,13 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L185" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "getSignature": { @@ -868,7 +868,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L185" } ], "type": { @@ -892,7 +892,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 189, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L189" } ], "parameters": [ @@ -930,7 +930,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "getSignature": { @@ -944,7 +944,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L197" } ], "type": { @@ -962,9 +962,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1082, + "line": 1099, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L1099" } ], "signatures": [ @@ -977,9 +977,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 1082, + "line": 1099, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L1099" } ], "parameters": [ @@ -1014,9 +1014,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 746, + "line": 764, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L764" } ], "signatures": [ @@ -1030,7 +1030,39 @@ "summary": [ { "kind": "text", - "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback." + "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback.\n\nPayloads that are " + }, + { + "kind": "code", + "text": "`ArrayBuffer`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`ArrayBufferView`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`Uint8Array`" + }, + { + "kind": "text", + "text": ") are sent as\n" + }, + { + "kind": "code", + "text": "`application/octet-stream`" + }, + { + "kind": "text", + "text": "; all other payloads are JSON-encoded." } ], "blockTags": [ @@ -1057,9 +1089,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 746, + "line": 764, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L764" } ], "parameters": [ @@ -1135,9 +1167,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 749, + "line": 767, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L767" } ], "type": { @@ -1155,9 +1187,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 749, + "line": 767, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L749" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L767" } ] } @@ -1193,9 +1225,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -1213,9 +1245,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ] } @@ -1238,9 +1270,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -1257,9 +1289,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -1276,9 +1308,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ], "type": { @@ -1296,9 +1328,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 750, + "line": 768, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L768" } ] } @@ -1551,105 +1583,105 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 438, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L453" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 489, + "line": 504, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L504" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 515, + "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L530" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" }, { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 715, + "line": 730, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L715" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L730" } ], "signatures": [ @@ -1670,9 +1702,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 438, + "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L453" } ], "parameters": [ @@ -1711,9 +1743,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 440, + "line": 455, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ], "type": { @@ -1731,9 +1763,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 440, + "line": 455, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L455" } ] } @@ -1756,9 +1788,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "signatures": [ @@ -1771,9 +1803,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 441, + "line": 456, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L456" } ], "type": { @@ -1811,9 +1843,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "typeParameters": [ @@ -1834,9 +1866,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "indexSignatures": [ @@ -1849,9 +1881,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 443, + "line": 458, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L443" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L458" } ], "parameters": [ @@ -1913,9 +1945,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 445, + "line": 460, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L460" } ], "type": { @@ -1933,9 +1965,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 445, + "line": 460, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L445" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L460" } ] } @@ -1958,9 +1990,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "signatures": [ @@ -1973,9 +2005,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 446, + "line": 461, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "parameters": [ @@ -2037,9 +2069,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "typeParameters": [ @@ -2060,9 +2092,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "indexSignatures": [ @@ -2075,9 +2107,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 448, + "line": 463, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L448" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "parameters": [ @@ -2139,9 +2171,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 450, + "line": 465, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L465" } ], "type": { @@ -2159,9 +2191,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 450, + "line": 465, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L465" } ] } @@ -2184,9 +2216,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "signatures": [ @@ -2199,9 +2231,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 451, + "line": 466, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L466" } ], "parameters": [ @@ -2263,9 +2295,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "typeParameters": [ @@ -2286,9 +2318,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "indexSignatures": [ @@ -2301,9 +2333,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 453, + "line": 468, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L468" } ], "parameters": [ @@ -2365,9 +2397,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 455, + "line": 470, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L470" } ], "type": { @@ -2385,9 +2417,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 455, + "line": 470, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L470" } ] } @@ -2410,9 +2442,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "signatures": [ @@ -2425,9 +2457,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 456, + "line": 471, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L471" } ], "parameters": [ @@ -2511,9 +2543,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "typeParameters": [ @@ -2534,9 +2566,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "indexSignatures": [ @@ -2549,9 +2581,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 458, + "line": 473, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L458" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "parameters": [ @@ -2625,9 +2657,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 461, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "signatures": [ @@ -2640,9 +2672,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 461, + "line": 476, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "parameters": [ @@ -2704,9 +2736,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "typeParameters": [ @@ -2727,9 +2759,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "indexSignatures": [ @@ -2742,9 +2774,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 463, + "line": 478, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "parameters": [ @@ -2818,9 +2850,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 466, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "signatures": [ @@ -2833,9 +2865,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 466, + "line": 481, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L481" } ], "parameters": [ @@ -2897,9 +2929,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "typeParameters": [ @@ -2920,9 +2952,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "indexSignatures": [ @@ -2935,9 +2967,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 468, + "line": 483, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "parameters": [ @@ -3011,9 +3043,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 471, + "line": 486, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L486" } ], "signatures": [ @@ -3026,9 +3058,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 471, + "line": 486, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L471" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L486" } ], "parameters": [ @@ -3090,9 +3122,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "typeParameters": [ @@ -3113,9 +3145,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "indexSignatures": [ @@ -3128,9 +3160,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 473, + "line": 488, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "parameters": [ @@ -3204,9 +3236,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 476, + "line": 491, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ], "signatures": [ @@ -3219,9 +3251,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 476, + "line": 491, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L491" } ], "parameters": [ @@ -3283,9 +3315,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "typeParameters": [ @@ -3306,9 +3338,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "indexSignatures": [ @@ -3321,9 +3353,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 478, + "line": 493, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L493" } ], "parameters": [ @@ -3414,9 +3446,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 481, + "line": 496, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "signatures": [ @@ -3429,9 +3461,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 481, + "line": 496, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "parameters": [ @@ -3493,9 +3525,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 489, + "line": 504, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ], "parameters": [ @@ -3550,9 +3582,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 491, + "line": 506, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ], "type": { @@ -3570,9 +3602,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 491, + "line": 506, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ] } @@ -3603,9 +3635,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 507, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "signatures": [ @@ -3618,9 +3650,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 507, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "parameters": [ @@ -3648,9 +3680,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 494, + "line": 509, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L509" } ], "type": { @@ -3669,9 +3701,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 495, + "line": 510, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ], "type": { @@ -3692,9 +3724,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 497, + "line": 512, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L512" } ], "type": { @@ -3713,9 +3745,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 496, + "line": 511, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L511" } ], "type": { @@ -3733,9 +3765,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 495, + "line": 510, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ] } @@ -3750,9 +3782,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 493, + "line": 508, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L493" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L508" } ], "type": { @@ -3770,9 +3802,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 492, + "line": 507, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "indexSignatures": [ @@ -3785,9 +3817,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 499, + "line": 514, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L499" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L514" } ], "parameters": [ @@ -3848,9 +3880,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "typeParameters": [ @@ -3871,9 +3903,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "indexSignatures": [ @@ -3886,9 +3918,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 502, + "line": 517, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L517" } ], "parameters": [ @@ -3950,9 +3982,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 504, + "line": 519, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ], "type": { @@ -3970,9 +4002,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 504, + "line": 519, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ] } @@ -3995,9 +4027,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 520, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ], "signatures": [ @@ -4010,9 +4042,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 520, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ], "parameters": [ @@ -4040,9 +4072,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 507, + "line": 522, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L522" } ], "type": { @@ -4061,9 +4093,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 508, + "line": 523, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L523" } ], "type": { @@ -4084,9 +4116,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 510, + "line": 525, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L525" } ], "type": { @@ -4105,9 +4137,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 509, + "line": 524, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L509" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "type": { @@ -4125,9 +4157,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 508, + "line": 523, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L508" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L523" } ] } @@ -4142,9 +4174,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 512, + "line": 527, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L527" } ], "type": { @@ -4164,9 +4196,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 506, + "line": 521, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L521" } ], "type": { @@ -4184,9 +4216,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 505, + "line": 520, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L520" } ] } @@ -4228,9 +4260,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 515, + "line": 530, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L530" } ], "typeParameters": [ @@ -4297,9 +4329,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 517, + "line": 532, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L532" } ], "type": { @@ -4320,9 +4352,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 517, + "line": 532, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L532" } ] } @@ -4345,9 +4377,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 533, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "signatures": [ @@ -4360,9 +4392,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 533, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ], "parameters": [ @@ -4390,9 +4422,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 520, + "line": 535, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L520" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L535" } ], "type": { @@ -4412,9 +4444,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 521, + "line": 536, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L536" } ], "type": { @@ -4445,9 +4477,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 519, + "line": 534, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L534" } ], "type": { @@ -4465,9 +4497,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 518, + "line": 533, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L533" } ] } @@ -4509,9 +4541,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "typeParameters": [ @@ -4532,9 +4564,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "indexSignatures": [ @@ -4547,9 +4579,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 524, + "line": 539, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L539" } ], "parameters": [ @@ -4611,9 +4643,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 526, + "line": 541, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L541" } ], "type": { @@ -4634,9 +4666,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 526, + "line": 541, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L541" } ] } @@ -4659,9 +4691,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 542, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "signatures": [ @@ -4674,9 +4706,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 542, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ], "parameters": [ @@ -4704,9 +4736,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 529, + "line": 544, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L544" } ], "type": { @@ -4726,9 +4758,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 530, + "line": 545, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L545" } ], "type": { @@ -4759,9 +4791,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 528, + "line": 543, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L543" } ], "type": { @@ -4779,9 +4811,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 527, + "line": 542, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L542" } ] } @@ -4823,9 +4855,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "typeParameters": [ @@ -4846,9 +4878,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "indexSignatures": [ @@ -4861,9 +4893,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 533, + "line": 548, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L548" } ], "parameters": [ @@ -4925,9 +4957,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 535, + "line": 550, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L550" } ], "type": { @@ -4948,9 +4980,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 535, + "line": 550, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L550" } ] } @@ -4973,9 +5005,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 551, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "signatures": [ @@ -4988,9 +5020,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 551, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ], "parameters": [ @@ -5018,9 +5050,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 538, + "line": 553, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L553" } ], "type": { @@ -5040,9 +5072,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 539, + "line": 554, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L554" } ], "type": { @@ -5073,9 +5105,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 537, + "line": 552, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L552" } ], "type": { @@ -5093,9 +5125,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 536, + "line": 551, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L551" } ] } @@ -5137,9 +5169,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" } ], "typeParameters": [ @@ -5160,9 +5192,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" } ], "indexSignatures": [ @@ -5175,9 +5207,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 542, + "line": 557, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L542" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L557" } ], "parameters": [ @@ -5239,9 +5271,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 544, + "line": 559, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L544" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L559" } ], "type": { @@ -5262,9 +5294,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 544, + "line": 559, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L544" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L559" } ] } @@ -5287,9 +5319,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 560, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L560" } ], "signatures": [ @@ -5302,9 +5334,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 560, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L560" } ], "parameters": [ @@ -5332,9 +5364,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 547, + "line": 562, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L562" } ], "type": { @@ -5354,9 +5386,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 548, + "line": 563, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L563" } ], "type": { @@ -5387,9 +5419,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 546, + "line": 561, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L546" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L561" } ], "type": { @@ -5407,9 +5439,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 545, + "line": 560, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L545" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L560" } ] } @@ -5451,9 +5483,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" } ], "typeParameters": [ @@ -5474,9 +5506,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" } ], "indexSignatures": [ @@ -5489,9 +5521,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 551, + "line": 566, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L566" } ], "parameters": [ @@ -5563,9 +5595,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 554, + "line": 569, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L554" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L569" } ], "signatures": [ @@ -5578,9 +5610,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 554, + "line": 569, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L554" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L569" } ], "parameters": [ @@ -5625,9 +5657,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "signatures": [ @@ -5659,9 +5691,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "typeParameters": [ @@ -5682,9 +5714,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "indexSignatures": [ @@ -5697,9 +5729,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 396, + "line": 411, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L411" } ], "parameters": [ @@ -5762,9 +5794,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 846, + "line": 863, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L863" } ], "signatures": [ @@ -5838,9 +5870,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 846, + "line": 863, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L863" } ], "parameters": [ @@ -5884,9 +5916,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 849, + "line": 866, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L866" } ], "type": { @@ -5913,9 +5945,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 850, + "line": 867, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L850" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L867" } ], "type": { @@ -5940,9 +5972,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 848, + "line": 865, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L865" } ], "type": { @@ -5973,9 +6005,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 847, + "line": 864, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L864" } ], "indexSignatures": [ @@ -5988,9 +6020,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 851, + "line": 868, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L851" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L868" } ], "parameters": [ @@ -6040,9 +6072,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 853, + "line": 870, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L870" } ], "indexSignatures": [ @@ -6055,9 +6087,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 853, + "line": 870, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L853" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L870" } ], "parameters": [ @@ -6113,9 +6145,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L292" } ], "signatures": [ @@ -6129,7 +6161,63 @@ "summary": [ { "kind": "text", - "text": "Subscribe registers your client with the server" + "text": "Subscribe registers your client with the server.\n\nThe optional " + }, + { + "kind": "code", + "text": "`callback`" + }, + { + "kind": "text", + "text": " receives a " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": " and, on failure, an " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " argument.\nLog the full " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " so its " + }, + { + "kind": "code", + "text": "`cause`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": ", and any structured fields aren't hidden\nbehind " + }, + { + "kind": "code", + "text": "`err.message`" + }, + { + "kind": "text", + "text": "." } ], "blockTags": [ @@ -6141,15 +6229,25 @@ "text": "Realtime" } ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nsupabase.channel('room1').subscribe((status, err) => {\n if (status === 'CHANNEL_ERROR' || status === 'TIMED_OUT') {\n // Log the full error: its `cause` often holds the underlying reason.\n console.error(status, err)\n }\n})\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 277, + "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L292" } ], "parameters": [ @@ -6172,9 +6270,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 278, + "line": 293, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L293" } ], "signatures": [ @@ -6187,9 +6285,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 278, + "line": 293, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L293" } ], "parameters": [ @@ -6266,9 +6364,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 954, + "line": 971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L954" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L971" } ], "signatures": [ @@ -6300,9 +6398,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 954, + "line": 971, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L954" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L971" } ], "type": { @@ -6321,9 +6419,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 406, + "line": 421, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L421" } ], "signatures": [ @@ -6363,9 +6461,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 406, + "line": 421, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L421" } ], "parameters": [ @@ -6386,9 +6484,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 422, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L422" } ], "indexSignatures": [ @@ -6401,9 +6499,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 407, + "line": 422, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L422" } ], "parameters": [ @@ -6445,9 +6543,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 423, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L423" } ], "indexSignatures": [ @@ -6460,9 +6558,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 408, + "line": 423, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L423" } ], "parameters": [ @@ -6518,9 +6616,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 939, + "line": 956, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L956" } ], "signatures": [ @@ -6560,9 +6658,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 939, + "line": 956, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L939" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L956" } ], "parameters": [ @@ -6608,9 +6706,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "signatures": [ @@ -6642,9 +6740,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "parameters": [ @@ -6665,9 +6763,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "indexSignatures": [ @@ -6680,9 +6778,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 425, + "line": 440, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L440" } ], "parameters": [ @@ -6738,9 +6836,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 924, + "line": 941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L941" } ], "signatures": [ @@ -6772,9 +6870,9 @@ "sources": [ { "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", - "line": 924, + "line": 941, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L941" } ], "parameters": [ @@ -6846,7 +6944,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 176, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L176" } ] }, @@ -6868,7 +6966,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L277" } ], "signatures": [ @@ -6922,7 +7020,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L277" } ], "parameters": [ @@ -7076,7 +7174,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "type": { @@ -7099,7 +7197,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "signatures": [ @@ -7114,7 +7212,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "type": { @@ -7160,7 +7258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L140" } ], "type": { @@ -7189,7 +7287,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L142" } ], "type": { @@ -7218,7 +7316,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L138" } ], "type": { @@ -7244,7 +7342,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L153" } ], "type": { @@ -7487,7 +7585,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 146, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L146" } ], "type": { @@ -7503,7 +7601,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 146, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L146" } ], "indexSignatures": [ @@ -7518,7 +7616,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 146, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L146" } ], "parameters": [ @@ -7555,7 +7653,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L144" } ], "type": { @@ -7577,7 +7675,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L151" } ], "type": { @@ -7603,7 +7701,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 147, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L147" } ], "type": { @@ -7619,7 +7717,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 147, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L147" } ], "indexSignatures": [ @@ -7634,7 +7732,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 147, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L147" } ], "parameters": [ @@ -7671,7 +7769,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L149" } ], "type": { @@ -7691,7 +7789,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L158" } ], "type": { @@ -7719,7 +7817,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 154, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L154" } ], "type": { @@ -7740,7 +7838,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L156" } ], "type": { @@ -7766,7 +7864,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L155" } ], "type": { @@ -7785,7 +7883,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L206" } ], "getSignature": { @@ -7799,7 +7897,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L206" } ], "type": { @@ -7830,7 +7928,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 202, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L202" } ], "getSignature": { @@ -7844,7 +7942,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 202, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L202" } ], "type": { @@ -7875,7 +7973,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "getSignature": { @@ -7889,7 +7987,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 160, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L160" } ], "type": { @@ -7909,7 +8007,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "getSignature": { @@ -7923,7 +8021,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L172" } ], "type": { @@ -7948,7 +8046,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "getSignature": { @@ -7962,7 +8060,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "type": { @@ -7982,7 +8080,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 180, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L180" } ], "getSignature": { @@ -7996,7 +8094,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 180, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L180" } ], "type": { @@ -8021,7 +8119,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L187" } ], "getSignature": { @@ -8035,7 +8133,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L187" } ], "type": { @@ -8064,7 +8162,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 210, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L210" } ], "getSignature": { @@ -8078,7 +8176,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 210, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L210" } ], "type": { @@ -8094,7 +8192,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "signatures": [ @@ -8109,7 +8207,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 74, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L74" } ], "parameters": [ @@ -8146,7 +8244,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L194" } ], "getSignature": { @@ -8160,7 +8258,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L194" } ], "type": { @@ -8186,7 +8284,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 214, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L214" } ], "getSignature": { @@ -8200,7 +8298,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 214, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L214" } ], "type": { @@ -8218,7 +8316,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "signatures": [ @@ -8233,7 +8331,7 @@ "fileName": "packages/core/realtime-js/src/phoenix/socketAdapter.ts", "line": 78, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/phoenix/socketAdapter.ts#L78" } ], "type": { @@ -8258,7 +8356,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L218" } ], "getSignature": { @@ -8272,7 +8370,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L218" } ], "type": { @@ -8295,7 +8393,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 220, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L220" } ], "type": { @@ -8331,7 +8429,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 221, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L221" } ], "type": { @@ -8367,7 +8465,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 222, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L222" } ], "type": { @@ -8403,7 +8501,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 219, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L219" } ], "type": { @@ -8440,7 +8538,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 218, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L218" } ] } @@ -8458,7 +8556,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "getSignature": { @@ -8472,7 +8570,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L164" } ], "type": { @@ -8492,7 +8590,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "getSignature": { @@ -8506,7 +8604,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L168" } ], "type": { @@ -8528,7 +8626,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 198, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L198" } ], "getSignature": { @@ -8542,7 +8640,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 198, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L198" } ], "type": { @@ -8567,7 +8665,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L469" } ], "signatures": [ @@ -8619,7 +8717,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 469, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L469" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L469" } ], "parameters": [ @@ -8670,7 +8768,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L297" } ], "signatures": [ @@ -8704,7 +8802,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L297" } ], "type": { @@ -8725,7 +8823,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 429, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L429" } ], "signatures": [ @@ -8759,7 +8857,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 429, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L429" } ], "type": { @@ -8785,7 +8883,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L356" } ], "signatures": [ @@ -8819,7 +8917,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L356" } ], "parameters": [ @@ -8904,7 +9002,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "signatures": [ @@ -8947,7 +9045,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 344, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L344" } ], "type": { @@ -8968,7 +9066,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L376" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L376" } ], "signatures": [ @@ -9002,7 +9100,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L376" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L376" } ], "type": { @@ -9029,7 +9127,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L438" } ], "signatures": [ @@ -9071,7 +9169,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 438, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L438" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L438" } ], "type": { @@ -9092,7 +9190,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L447" } ], "signatures": [ @@ -9134,7 +9232,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L447" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L447" } ], "type": { @@ -9155,7 +9253,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L456" } ], "signatures": [ @@ -9197,7 +9295,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L456" } ], "type": { @@ -9218,7 +9316,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 420, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L420" } ], "signatures": [ @@ -9260,7 +9358,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 420, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L420" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L420" } ], "parameters": [ @@ -9318,7 +9416,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L550" } ], "signatures": [ @@ -9352,7 +9450,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L550" } ], "parameters": [ @@ -9391,7 +9489,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L491" } ], "signatures": [ @@ -9425,7 +9523,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L491" } ], "parameters": [ @@ -9461,7 +9559,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 401, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L401" } ], "signatures": [ @@ -9495,7 +9593,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 401, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L401" } ], "type": { @@ -9532,7 +9630,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L386" } ], "signatures": [ @@ -9566,7 +9664,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L386" } ], "parameters": [ @@ -9624,7 +9722,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 540, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L540" } ], "signatures": [ @@ -9658,7 +9756,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 540, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L540" } ], "type": { @@ -9690,7 +9788,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L517" } ], "signatures": [ @@ -9757,7 +9855,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 517, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L517" } ], "parameters": [ @@ -9850,7 +9948,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 135, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L135" } ] }, @@ -9872,7 +9970,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "signatures": [ @@ -9916,7 +10014,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "parameters": [ @@ -10008,7 +10106,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 66, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L66" } ], "type": { @@ -10030,7 +10128,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "getSignature": { @@ -10044,7 +10142,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L42" } ], "type": { @@ -10085,7 +10183,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 41, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L41" } ] }, @@ -10118,7 +10216,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 169, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" } ], "signatures": [ @@ -10162,7 +10260,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 169, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L169" } ], "type": { @@ -10276,7 +10374,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 194, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" } ], "signatures": [ @@ -10320,7 +10418,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 194, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L194" } ], "type": { @@ -10348,7 +10446,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 61, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L61" } ] }, @@ -10372,7 +10470,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" } ], "type": { @@ -10393,7 +10491,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" } ], "type": { @@ -10414,7 +10512,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" } ], "type": { @@ -10435,7 +10533,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 4, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" } ], "type": { @@ -10456,7 +10554,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 2, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" } ], "type": { @@ -10477,7 +10575,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "type": { @@ -10493,7 +10591,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "signatures": [ @@ -10508,7 +10606,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "parameters": [ @@ -10551,7 +10649,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" } ], "type": { @@ -10570,7 +10668,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "type": { @@ -10593,7 +10691,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "signatures": [ @@ -10608,7 +10706,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "parameters": [ @@ -10662,7 +10760,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "type": { @@ -10685,7 +10783,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "signatures": [ @@ -10700,7 +10798,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "parameters": [ @@ -10754,7 +10852,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "type": { @@ -10777,7 +10875,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "signatures": [ @@ -10792,7 +10890,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "parameters": [ @@ -10846,7 +10944,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "type": { @@ -10869,7 +10967,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "signatures": [ @@ -10884,7 +10982,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "parameters": [ @@ -10940,7 +11038,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 3, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" } ], "type": { @@ -10961,7 +11059,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 8, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" } ], "type": { @@ -10982,7 +11080,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" } ], "type": { @@ -11003,7 +11101,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 7, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" } ], "type": { @@ -11022,7 +11120,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "signatures": [ @@ -11045,7 +11143,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "parameters": [ @@ -11095,7 +11193,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "signatures": [ @@ -11118,7 +11216,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "parameters": [ @@ -11167,7 +11265,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "signatures": [ @@ -11190,7 +11288,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "parameters": [ @@ -11240,7 +11338,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "signatures": [ @@ -11263,7 +11361,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "parameters": [ @@ -11345,7 +11443,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 1, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" } ] }, @@ -11383,7 +11481,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "signatures": [ @@ -11398,7 +11496,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L59" } ], "parameters": [ @@ -11474,7 +11572,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 58, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L58" } ], "indexSignatures": [ @@ -11489,7 +11587,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L61" } ], "parameters": [ @@ -11523,7 +11621,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ], "type": { @@ -11546,7 +11644,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ], "type": { @@ -11579,7 +11677,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11604,7 +11702,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11625,7 +11723,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11651,7 +11749,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ], "type": { @@ -11671,7 +11769,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 29, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L29" } ] } @@ -11698,7 +11796,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11723,7 +11821,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11744,7 +11842,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ], "type": { @@ -11764,7 +11862,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 33, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L33" } ] } @@ -11791,7 +11889,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 37, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L37" } ], "type": { @@ -11811,7 +11909,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 23, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L23" } ] } @@ -11829,7 +11927,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 22, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L22" } ] } @@ -11846,7 +11944,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 128, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ], "type": { @@ -11884,7 +11982,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 128, "character": 83, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ] } @@ -11905,7 +12003,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ], "type": { @@ -11930,7 +12028,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "type": { @@ -11946,7 +12044,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "signatures": [ @@ -11998,7 +12096,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L72" } ], "type": { @@ -12030,7 +12128,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L83" } ], "type": { @@ -12051,7 +12149,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L71" } ], "type": { @@ -12083,7 +12181,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L79" } ], "type": { @@ -12109,7 +12207,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "type": { @@ -12125,7 +12223,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "indexSignatures": [ @@ -12140,7 +12238,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "parameters": [ @@ -12178,7 +12276,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "type": { @@ -12194,7 +12292,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 68, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L68" } ], "signatures": [ @@ -12257,7 +12355,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L67" } ], "type": { @@ -12278,7 +12376,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L77" } ], "type": { @@ -12304,7 +12402,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "type": { @@ -12320,7 +12418,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 70, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L70" } ], "signatures": [ @@ -12389,7 +12487,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L78" } ], "type": { @@ -12415,7 +12513,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "type": { @@ -12431,7 +12529,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "indexSignatures": [ @@ -12446,7 +12544,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "parameters": [ @@ -12484,7 +12582,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "type": { @@ -12500,7 +12598,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 73, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L73" } ], "signatures": [ @@ -12569,7 +12667,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L90" } ], "type": { @@ -12595,7 +12693,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L66" } ], "type": { @@ -12616,7 +12714,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L65" } ], "type": { @@ -12639,7 +12737,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L69" } ], "type": { @@ -12660,7 +12758,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L80" } ], "type": { @@ -12681,7 +12779,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L81" } ], "type": { @@ -12704,7 +12802,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 64, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L64" } ] } @@ -12721,7 +12819,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ], "type": { @@ -12744,7 +12842,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L34" } ], "type": { @@ -12765,7 +12863,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L37" } ], "type": { @@ -12784,7 +12882,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L35" } ], "type": { @@ -12803,7 +12901,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L36" } ], "type": { @@ -12822,7 +12920,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L33" } ], "type": { @@ -12842,7 +12940,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L32" } ] } @@ -12859,7 +12957,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ], "typeParameters": [ @@ -12914,7 +13012,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L113" } ], "type": { @@ -12946,7 +13044,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L125" } ], "type": { @@ -12973,7 +13071,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L117" } ], "type": { @@ -13002,7 +13100,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L121" } ], "type": { @@ -13022,7 +13120,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 109, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L109" } ] } @@ -13039,7 +13137,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 104, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "typeParameters": [ @@ -13062,7 +13160,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 104, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "indexSignatures": [ @@ -13077,7 +13175,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 104, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L104" } ], "parameters": [ @@ -13165,7 +13263,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "typeParameters": [ @@ -13188,7 +13286,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "indexSignatures": [ @@ -13203,7 +13301,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "parameters": [ @@ -13261,7 +13359,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 99, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L99" } ], "type": { @@ -13291,7 +13389,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 100, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ], "type": { @@ -13307,7 +13405,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 100, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L100" } ] } @@ -13324,7 +13422,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 101, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L101" } ], "type": { @@ -13358,7 +13456,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 98, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L98" } ] } @@ -13377,7 +13475,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "typeParameters": [ @@ -13400,7 +13498,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "indexSignatures": [ @@ -13415,7 +13513,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "parameters": [ @@ -13473,7 +13571,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 85, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L85" } ], "type": { @@ -13503,7 +13601,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 86, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L86" } ], "type": { @@ -13525,7 +13623,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 87, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ], "type": { @@ -13541,7 +13639,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 87, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ] } @@ -13559,7 +13657,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 84, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L84" } ] } @@ -13578,7 +13676,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "typeParameters": [ @@ -13601,7 +13699,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "indexSignatures": [ @@ -13616,7 +13714,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "parameters": [ @@ -13674,7 +13772,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 92, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L92" } ], "type": { @@ -13704,7 +13802,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 93, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L93" } ], "type": { @@ -13726,7 +13824,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 94, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L94" } ], "type": { @@ -13760,7 +13858,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 91, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L91" } ] } @@ -13779,7 +13877,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "typeParameters": [ @@ -13802,7 +13900,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "indexSignatures": [ @@ -13817,7 +13915,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "parameters": [ @@ -13863,7 +13961,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L20" } ], "type": { @@ -13899,7 +13997,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L18" } ], "type": { @@ -13929,7 +14027,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L19" } ], "type": { @@ -13948,7 +14046,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L21" } ], "type": { @@ -13985,7 +14083,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ] } @@ -14002,7 +14100,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "typeParameters": [ @@ -14025,7 +14123,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "indexSignatures": [ @@ -14040,7 +14138,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "parameters": [ @@ -14086,7 +14184,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L27" } ], "type": { @@ -14122,7 +14220,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L25" } ], "type": { @@ -14152,7 +14250,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L26" } ], "type": { @@ -14171,7 +14269,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L28" } ], "type": { @@ -14208,7 +14306,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 77, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ] } @@ -14225,7 +14323,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "typeParameters": [ @@ -14248,7 +14346,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -14263,7 +14361,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "parameters": [ @@ -14300,7 +14398,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ] } @@ -14320,7 +14418,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 75, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -14335,7 +14433,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimePresence.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimePresence.ts#L14" } ], "parameters": [ @@ -14388,7 +14486,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 40, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L40" } ], "type": { @@ -14426,7 +14524,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 40, "character": 85, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeClient.ts#L40" } ] } @@ -14449,7 +14547,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 151, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/RealtimeChannel.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/RealtimeChannel.ts#L151" } ], "type": { @@ -14474,7 +14572,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L33" } ], "type": { @@ -14496,7 +14594,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L34" } ], "type": { @@ -14518,7 +14616,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L35" } ], "type": { @@ -14540,7 +14638,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L36" } ], "type": { @@ -14562,7 +14660,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L37" } ], "type": { @@ -14583,7 +14681,7 @@ "fileName": "packages/core/realtime-js/src/lib/constants.ts", "line": 32, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/realtime-js/src/lib/constants.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/realtime-js/src/lib/constants.ts#L32" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/storage.json b/apps/docs/spec/enrichments/tsdoc_v2/storage.json index 18c4a8eb83adb..d121fa2e9f39a 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/storage.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/storage.json @@ -46,7 +46,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L149" } ], "type": { @@ -73,7 +73,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L155" } ], "type": { @@ -100,7 +100,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L151" } ], "type": { @@ -127,7 +127,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L157" } ], "type": { @@ -154,7 +154,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 159, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L159" } ], "type": { @@ -181,7 +181,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L153" } ], "type": { @@ -201,7 +201,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 147, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L147" } ] }, @@ -231,7 +231,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L62" } ], "signatures": [ @@ -246,7 +246,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L62" } ], "parameters": [ @@ -328,7 +328,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -352,7 +352,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -376,7 +376,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -391,7 +391,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -414,7 +414,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -433,7 +433,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -452,7 +452,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -480,7 +480,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -509,7 +509,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -547,7 +547,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 58, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L58" } ], "extendedTypes": [ @@ -584,7 +584,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L36" } ], "signatures": [ @@ -647,7 +647,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L36" } ], "parameters": [ @@ -681,7 +681,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 38, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L38" } ], "indexSignatures": [ @@ -696,7 +696,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 38, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L38" } ], "parameters": [ @@ -989,7 +989,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 95, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L95" } ], "getSignature": { @@ -1041,7 +1041,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 95, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L95" } ], "type": { @@ -1064,7 +1064,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L75" } ], "getSignature": { @@ -1116,7 +1116,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L75" } ], "type": { @@ -1140,7 +1140,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "signatures": [ @@ -1245,7 +1245,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "parameters": [ @@ -1304,7 +1304,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" } ], "type": { @@ -1345,7 +1345,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 192, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" } ], "type": { @@ -1385,7 +1385,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -1426,7 +1426,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" } ], "type": { @@ -1448,7 +1448,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ] } @@ -1486,7 +1486,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ], "type": { @@ -1522,7 +1522,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -1542,7 +1542,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 199, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" } ] } @@ -1567,7 +1567,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -1586,7 +1586,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -1608,7 +1608,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -1645,7 +1645,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "signatures": [ @@ -1766,7 +1766,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "parameters": [ @@ -1820,7 +1820,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -1843,7 +1843,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -1863,7 +1863,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ] } @@ -1880,7 +1880,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" } ], "type": { @@ -1900,7 +1900,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ] } @@ -1925,7 +1925,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 384, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" } ], "type": { @@ -1944,7 +1944,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 385, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" } ], "type": { @@ -1966,7 +1966,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 383, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" } ] } @@ -2003,7 +2003,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "signatures": [ @@ -2124,7 +2124,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "parameters": [ @@ -2178,7 +2178,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -2201,7 +2201,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -2221,7 +2221,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ] } @@ -2238,7 +2238,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" } ], "type": { @@ -2258,7 +2258,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ] } @@ -2283,7 +2283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" } ], "type": { @@ -2302,7 +2302,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 338, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" } ], "type": { @@ -2324,7 +2324,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 336, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" } ] } @@ -2359,7 +2359,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L58" } ], "signatures": [ @@ -2412,7 +2412,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L58" } ], "parameters": [ @@ -2459,7 +2459,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "signatures": [ @@ -2564,7 +2564,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "parameters": [ @@ -2618,7 +2618,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 131, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" } ], "type": { @@ -2639,7 +2639,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ], "type": { @@ -2659,7 +2659,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ] } @@ -2684,7 +2684,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" } ], "type": { @@ -2703,7 +2703,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 136, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" } ], "type": { @@ -2725,7 +2725,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ] } @@ -2762,7 +2762,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "signatures": [ @@ -2869,7 +2869,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "parameters": [ @@ -2959,7 +2959,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -2983,7 +2983,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 74, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" } ], "type": { @@ -3003,7 +3003,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ] } @@ -3028,7 +3028,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -3047,7 +3047,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "type": { @@ -3069,7 +3069,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ] } @@ -3107,7 +3107,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -3143,7 +3143,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -3217,7 +3217,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -3253,7 +3253,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -3286,7 +3286,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "signatures": [ @@ -3399,7 +3399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "parameters": [ @@ -3458,7 +3458,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -3499,7 +3499,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ], "type": { @@ -3539,7 +3539,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 270, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" } ], "type": { @@ -3559,7 +3559,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 269, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" } ] } @@ -3596,7 +3596,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -3619,7 +3619,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -3639,7 +3639,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ] } @@ -3656,7 +3656,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -3676,7 +3676,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -3701,7 +3701,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" } ], "type": { @@ -3720,7 +3720,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" } ], "type": { @@ -3742,7 +3742,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 279, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" } ] } @@ -3796,7 +3796,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L11" } ], "extendedTypes": [ @@ -3834,7 +3834,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "signatures": [ @@ -3849,7 +3849,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "parameters": [ @@ -3935,7 +3935,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -3963,7 +3963,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -3991,7 +3991,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -4006,7 +4006,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -4029,7 +4029,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -4048,7 +4048,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -4067,7 +4067,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -4095,7 +4095,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -4124,7 +4124,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -4152,7 +4152,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L11" } ], "extendedTypes": [ @@ -4210,7 +4210,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "signatures": [ @@ -4225,7 +4225,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "parameters": [ @@ -4296,7 +4296,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -4317,7 +4317,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -4352,7 +4352,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -4387,7 +4387,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -4404,7 +4404,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -4427,7 +4427,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -4446,7 +4446,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -4465,7 +4465,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -4493,7 +4493,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -4522,7 +4522,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -4560,7 +4560,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L90" } ], "extendedTypes": [ @@ -4611,7 +4611,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "signatures": [ @@ -4626,7 +4626,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "parameters": [ @@ -4696,7 +4696,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -4722,7 +4722,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -4748,7 +4748,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -4765,7 +4765,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -4788,7 +4788,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -4807,7 +4807,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -4826,7 +4826,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -4854,7 +4854,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -4883,7 +4883,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -4921,7 +4921,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 127, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L127" } ], "extendedTypes": [ @@ -4965,7 +4965,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "signatures": [ @@ -4980,7 +4980,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "parameters": [ @@ -5028,7 +5028,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -5063,7 +5063,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -5098,7 +5098,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -5115,7 +5115,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -5138,7 +5138,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -5157,7 +5157,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -5176,7 +5176,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -5204,7 +5204,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -5233,7 +5233,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -5271,7 +5271,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 108, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L108" } ], "extendedTypes": [ @@ -5315,7 +5315,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "signatures": [ @@ -5330,7 +5330,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "parameters": [ @@ -5389,7 +5389,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -5415,7 +5415,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -5450,7 +5450,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -5485,7 +5485,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -5502,7 +5502,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -5525,7 +5525,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -5544,7 +5544,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -5563,7 +5563,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -5591,7 +5591,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -5620,7 +5620,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -5658,7 +5658,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 137, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L137" } ], "extendedTypes": [ @@ -5704,7 +5704,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 42, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L42" } ], "type": { @@ -5731,7 +5731,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L40" } ], "type": { @@ -5758,7 +5758,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L36" } ], "type": { @@ -5785,7 +5785,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L38" } ], "type": { @@ -5812,7 +5812,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L44" } ], "type": { @@ -5832,7 +5832,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 34, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L34" } ] }, @@ -5856,7 +5856,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L16" } ], "type": { @@ -5878,7 +5878,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L17" } ], "type": { @@ -5899,7 +5899,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L15" } ], "type": { @@ -5918,7 +5918,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L11" } ], "type": { @@ -5937,7 +5937,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L13" } ], "type": { @@ -5956,7 +5956,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L14" } ], "type": { @@ -5975,7 +5975,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L19" } ], "type": { @@ -5996,7 +5996,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L12" } ], "type": { @@ -6017,7 +6017,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L18" } ], "type": { @@ -6037,7 +6037,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 10, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L10" } ] }, @@ -6075,7 +6075,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L549" } ], "type": { @@ -6102,7 +6102,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L550" } ], "type": { @@ -6132,7 +6132,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L548" } ], "type": { @@ -6152,7 +6152,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 547, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L547" } ] }, @@ -6176,7 +6176,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L176" } ], "type": { @@ -6196,7 +6196,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 175, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L175" } ] }, @@ -6236,7 +6236,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L362" } ], "type": { @@ -6265,7 +6265,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L363" } ], "type": { @@ -6285,7 +6285,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 361, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L361" } ] }, @@ -6323,7 +6323,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 646, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L646" } ], "type": { @@ -6350,7 +6350,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 647, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L647" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L647" } ], "type": { @@ -6372,7 +6372,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 645, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L645" } ] }, @@ -6404,7 +6404,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L296" } ], "type": { @@ -6458,7 +6458,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 285, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L285" } ], "type": { @@ -6483,7 +6483,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 281, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L281" } ] }, @@ -6521,7 +6521,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L59" } ], "type": { @@ -6548,7 +6548,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L63" } ], "type": { @@ -6575,7 +6575,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L53" } ], "type": { @@ -6602,7 +6602,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L65" } ], "type": { @@ -6629,7 +6629,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L61" } ], "type": { @@ -6656,7 +6656,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L57" } ], "type": { @@ -6683,7 +6683,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L55" } ], "type": { @@ -6703,7 +6703,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 51, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L51" } ], "indexSignatures": [ @@ -6726,7 +6726,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L67" } ], "parameters": [ @@ -6791,7 +6791,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L94" } ], "type": { @@ -6826,7 +6826,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L104" } ], "type": { @@ -6855,7 +6855,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L85" } ], "type": { @@ -6891,7 +6891,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L81" } ], "type": { @@ -6933,7 +6933,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L87" } ], "type": { @@ -6969,7 +6969,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L89" } ], "type": { @@ -7007,7 +7007,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L79" } ], "type": { @@ -7042,7 +7042,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L99" } ], "type": { @@ -7069,7 +7069,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L83" } ], "type": { @@ -7098,7 +7098,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 77, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L77" } ] }, @@ -7136,7 +7136,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L119" } ], "type": { @@ -7165,7 +7165,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L125" } ], "type": { @@ -7194,7 +7194,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L127" } ], "type": { @@ -7221,7 +7221,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L121" } ], "type": { @@ -7250,7 +7250,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L129" } ], "type": { @@ -7277,7 +7277,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L113" } ], "type": { @@ -7306,7 +7306,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L131" } ], "type": { @@ -7335,7 +7335,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L133" } ], "type": { @@ -7364,7 +7364,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L117" } ], "type": { @@ -7393,7 +7393,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L123" } ], "type": { @@ -7428,7 +7428,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L138" } ], "type": { @@ -7455,7 +7455,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L115" } ], "type": { @@ -7475,7 +7475,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 111, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L111" } ] }, @@ -7515,7 +7515,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L150" } ], "type": { @@ -7592,7 +7592,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 154, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L154" } ], "type": { @@ -7621,7 +7621,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L162" } ], "type": { @@ -7650,7 +7650,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 172, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L172" } ], "type": { @@ -7694,7 +7694,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 167, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L167" } ], "type": { @@ -7738,7 +7738,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L158" } ], "type": { @@ -7758,7 +7758,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 146, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L146" } ] }, @@ -7796,7 +7796,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L515" } ], "type": { @@ -7823,7 +7823,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L516" } ], "type": { @@ -7855,7 +7855,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L517" } ], "type": { @@ -7884,7 +7884,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 518, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L518" } ], "type": { @@ -7911,7 +7911,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 514, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L514" } ], "type": { @@ -7931,7 +7931,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 513, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L513" } ] }, @@ -7969,7 +7969,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 526, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L526" } ], "type": { @@ -7994,7 +7994,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 525, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L525" } ] }, @@ -8018,7 +8018,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L23" } ], "type": { @@ -8039,7 +8039,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L24" } ], "type": { @@ -8060,7 +8060,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L27" } ], "type": { @@ -8081,7 +8081,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L25" } ], "type": { @@ -8119,7 +8119,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L26" } ], "type": { @@ -8148,7 +8148,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L22" } ] }, @@ -8188,7 +8188,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L491" } ], "type": { @@ -8217,7 +8217,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L492" } ], "type": { @@ -8246,7 +8246,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L490" } ], "type": { @@ -8273,7 +8273,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L489" } ], "type": { @@ -8293,7 +8293,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 488, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L488" } ] }, @@ -8331,7 +8331,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -8356,7 +8356,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -8376,7 +8376,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L501" } ] } @@ -8404,7 +8404,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L502" } ], "type": { @@ -8424,7 +8424,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 500, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L500" } ] }, @@ -8464,7 +8464,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L467" } ], "type": { @@ -8493,7 +8493,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L468" } ], "type": { @@ -8522,7 +8522,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L466" } ], "type": { @@ -8542,7 +8542,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 465, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L465" } ] }, @@ -8582,7 +8582,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L478" } ], "type": { @@ -8609,7 +8609,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -8634,7 +8634,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -8654,7 +8654,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L477" } ] } @@ -8673,7 +8673,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 476, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L476" } ] }, @@ -8711,7 +8711,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 567, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L567" } ], "type": { @@ -8740,7 +8740,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 568, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L568" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L568" } ], "type": { @@ -8769,7 +8769,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L569" } ], "type": { @@ -8798,7 +8798,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L570" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L570" } ], "type": { @@ -8827,7 +8827,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L571" } ], "type": { @@ -8856,7 +8856,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 572, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L572" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L572" } ], "type": { @@ -8885,7 +8885,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 573, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L573" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L573" } ], "type": { @@ -8912,7 +8912,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L566" } ], "type": { @@ -8932,7 +8932,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 565, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L565" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L565" } ] }, @@ -8972,7 +8972,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 583, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L583" } ], "type": { @@ -8999,7 +8999,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 582, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L582" } ], "type": { @@ -9024,7 +9024,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 581, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L581" } ] }, @@ -9046,7 +9046,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L301" } ], "type": { @@ -9066,7 +9066,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 300, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L300" } ] }, @@ -9106,7 +9106,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L384" } ], "type": { @@ -9129,7 +9129,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 383, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L383" } ] }, @@ -9167,7 +9167,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 537, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L537" } ], "type": { @@ -9194,7 +9194,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L536" } ], "type": { @@ -9221,7 +9221,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L538" } ], "type": { @@ -9246,7 +9246,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 535, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L535" } ] }, @@ -9286,7 +9286,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 607, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L607" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L607" } ], "type": { @@ -9315,7 +9315,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L604" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L604" } ], "type": { @@ -9342,7 +9342,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L605" } ], "type": { @@ -9373,7 +9373,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 608, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L608" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L608" } ], "type": { @@ -9402,7 +9402,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 609, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L609" } ], "type": { @@ -9431,7 +9431,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L606" } ], "type": { @@ -9458,7 +9458,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 603, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L603" } ], "type": { @@ -9478,7 +9478,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 602, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L602" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L602" } ] }, @@ -9518,7 +9518,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L619" } ], "type": { @@ -9547,7 +9547,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L618" } ], "type": { @@ -9572,7 +9572,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L617" } ] }, @@ -9615,7 +9615,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L184" } ], "type": { @@ -9644,7 +9644,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L189" } ], "type": { @@ -9673,7 +9673,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L199" } ], "type": { @@ -9702,7 +9702,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 194, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L194" } ], "type": { @@ -9724,7 +9724,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 179, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L179" } ] }, @@ -9764,7 +9764,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 271, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L271" } ], "type": { @@ -9791,7 +9791,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L269" } ], "type": { @@ -9811,7 +9811,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 267, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L267" } ] }, @@ -9849,7 +9849,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L257" } ], "type": { @@ -9876,7 +9876,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L253" } ], "type": { @@ -9905,7 +9905,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L251" } ], "type": { @@ -9938,7 +9938,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L261" } ], "type": { @@ -9965,7 +9965,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L259" } ], "type": { @@ -10003,7 +10003,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L249" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L249" } ], "type": { @@ -10030,7 +10030,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L255" } ], "type": { @@ -10050,7 +10050,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 247, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L247" } ] }, @@ -10082,7 +10082,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L222" } ], "type": { @@ -10122,7 +10122,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 212, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L212" } ], "type": { @@ -10151,7 +10151,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L217" } ], "type": { @@ -10191,7 +10191,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L239" } ], "type": { @@ -10249,7 +10249,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L233" } ], "type": { @@ -10269,7 +10269,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 207, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L207" } ] }, @@ -10291,7 +10291,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 276, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L276" } ], "type": { @@ -10315,7 +10315,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L275" } ], "type": { @@ -10336,7 +10336,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 278, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L278" } ], "type": { @@ -10355,7 +10355,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L277" } ], "type": { @@ -10380,7 +10380,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 274, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L274" } ] }, @@ -10404,7 +10404,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L142" } ], "type": { @@ -10425,7 +10425,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L143" } ], "type": { @@ -10445,7 +10445,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 141, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L141" } ] }, @@ -10467,7 +10467,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L203" } ], "type": { @@ -10501,7 +10501,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 204, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L204" } ], "type": { @@ -10530,7 +10530,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 202, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L202" } ] }, @@ -10554,7 +10554,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L8" } ], "type": { @@ -10574,7 +10574,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 7, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L7" } ] }, @@ -10612,7 +10612,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L636" } ], "type": { @@ -10643,7 +10643,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L637" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L637" } ], "type": { @@ -10663,7 +10663,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L635" } ], "typeParameters": [ @@ -10704,7 +10704,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L332" } ], "type": { @@ -10733,7 +10733,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L312" } ], "type": { @@ -10762,7 +10762,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L325" } ], "type": { @@ -10791,7 +10791,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L319" } ], "type": { @@ -10833,7 +10833,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L308" } ], "type": { @@ -10853,7 +10853,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 304, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L304" } ] }, @@ -10893,7 +10893,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L374" } ], "type": { @@ -10922,7 +10922,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L375" } ], "type": { @@ -10951,7 +10951,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L373" } ], "type": { @@ -10971,7 +10971,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 372, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L372" } ] }, @@ -11009,7 +11009,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L424" } ], "type": { @@ -11032,7 +11032,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 423, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L423" } ] }, @@ -11072,7 +11072,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 627, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L627" } ], "type": { @@ -11097,7 +11097,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 626, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L626" } ] }, @@ -11137,7 +11137,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L415" } ], "type": { @@ -11164,7 +11164,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L411" } ], "type": { @@ -11193,7 +11193,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 412, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L412" } ], "type": { @@ -11220,7 +11220,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L413" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L413" } ], "type": { @@ -11249,7 +11249,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L409" } ], "type": { @@ -11278,7 +11278,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L414" } ], "type": { @@ -11307,7 +11307,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L410" } ], "type": { @@ -11327,7 +11327,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 408, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L408" } ] }, @@ -11367,7 +11367,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L454" } ], "type": { @@ -11398,7 +11398,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L456" } ], "type": { @@ -11425,7 +11425,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L453" } ], "type": { @@ -11454,7 +11454,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L455" } ], "type": { @@ -11476,7 +11476,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 452, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L452" } ] }, @@ -11514,7 +11514,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L441" } ], "type": { @@ -11543,7 +11543,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 440, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L440" } ], "type": { @@ -11572,7 +11572,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L442" } ], "type": { @@ -11594,7 +11594,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 439, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L439" } ] }, @@ -11617,7 +11617,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 654, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L654" } ], "typeParameters": [ @@ -11675,7 +11675,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L8" } ], "type": { @@ -11709,7 +11709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 62, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L8" } ] } @@ -11730,7 +11730,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 339, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L339" } ], "typeParameters": [ @@ -11833,7 +11833,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 396, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L396" } ], "type": { @@ -11871,7 +11871,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 396, "character": 79, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L396" } ] } @@ -11892,7 +11892,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 343, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L343" } ], "typeParameters": [ @@ -11927,7 +11927,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 345, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L345" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L345" } ], "type": { @@ -11949,7 +11949,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 346, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L346" } ], "type": { @@ -11969,7 +11969,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 344, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L344" } ] } @@ -11994,7 +11994,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 349, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L349" } ], "type": { @@ -12013,7 +12013,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 350, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L350" } ], "type": { @@ -12035,7 +12035,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 348, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L348" } ] } @@ -12062,7 +12062,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 5, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L5" } ], "type": { @@ -12098,7 +12098,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 391, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L391" } ], "type": { @@ -12128,7 +12128,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 391, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L391" } ] } @@ -12157,7 +12157,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 590, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L590" } ], "type": { @@ -12199,7 +12199,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 431, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L431" } ], "type": { @@ -12233,7 +12233,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "signatures": [ @@ -12267,7 +12267,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "parameters": [ @@ -12316,7 +12316,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "signatures": [ @@ -12350,7 +12350,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "parameters": [ @@ -12399,7 +12399,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 15, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L15" } ], "target": 912 @@ -12415,7 +12415,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 3, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L3" } ], "target": 48 @@ -12431,7 +12431,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L7" } ], "target": 549 @@ -12447,7 +12447,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 11, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L11" } ], "target": 536 @@ -12463,7 +12463,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L8" } ], "target": 604 @@ -12479,7 +12479,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L9" } ], "target": 672 @@ -12520,7 +12520,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L1" } ] }, @@ -12549,7 +12549,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "signatures": [ @@ -12564,7 +12564,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "parameters": [ @@ -12587,7 +12587,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "signatures": [ @@ -12602,7 +12602,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "type": { @@ -12665,7 +12665,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" } ], "type": { @@ -12690,7 +12690,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "signatures": [ @@ -12705,7 +12705,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "type": { @@ -12729,7 +12729,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "signatures": [ @@ -12763,7 +12763,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "typeParameters": [ @@ -12816,7 +12816,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "signatures": [ @@ -12831,7 +12831,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "parameters": [ @@ -12949,7 +12949,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -12983,7 +12983,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "parameters": [ @@ -13023,7 +13023,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -13038,7 +13038,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "type": { @@ -13105,7 +13105,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "signatures": [ @@ -13139,7 +13139,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "typeParameters": [ @@ -13216,7 +13216,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "signatures": [ @@ -13231,7 +13231,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "parameters": [ @@ -13333,7 +13333,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "signatures": [ @@ -13348,7 +13348,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "parameters": [ @@ -13465,7 +13465,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 5, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" } ], "implementedTypes": [ @@ -13511,7 +13511,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" } ] }, @@ -13548,7 +13548,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "signatures": [ @@ -13612,7 +13612,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "parameters": [ @@ -13662,7 +13662,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "indexSignatures": [ @@ -13677,7 +13677,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "parameters": [ @@ -13964,7 +13964,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 95, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ], "signatures": [ @@ -14044,7 +14044,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 95, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ], "parameters": [ @@ -14098,7 +14098,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 97, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L97" } ], "type": { @@ -14119,7 +14119,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 98, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" } ], "type": { @@ -14139,7 +14139,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 96, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" } ] } @@ -14164,7 +14164,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 101, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L101" } ], "type": { @@ -14183,7 +14183,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 102, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L102" } ], "type": { @@ -14205,7 +14205,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" } ] } @@ -14230,7 +14230,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 228, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" } ], "signatures": [ @@ -14310,7 +14310,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 228, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" } ], "parameters": [ @@ -14364,7 +14364,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ], "type": { @@ -14387,7 +14387,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ], "type": { @@ -14407,7 +14407,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ] } @@ -14424,7 +14424,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 231, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" } ], "type": { @@ -14444,7 +14444,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" } ] } @@ -14469,7 +14469,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 234, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L234" } ], "type": { @@ -14488,7 +14488,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 235, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" } ], "type": { @@ -14510,7 +14510,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L233" } ] } @@ -14535,7 +14535,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" } ], "signatures": [ @@ -14718,7 +14718,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" } ], "parameters": [ @@ -14762,7 +14762,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "signatures": [ @@ -14842,7 +14842,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "parameters": [ @@ -14892,7 +14892,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 162, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" } ], "type": { @@ -14921,7 +14921,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" } ], "type": { @@ -14950,7 +14950,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 166, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" } ], "type": { @@ -14979,7 +14979,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 164, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L164" } ], "type": { @@ -15021,7 +15021,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 165, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" } ], "type": { @@ -15050,7 +15050,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ] } @@ -15087,7 +15087,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 169, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" } ], "type": { @@ -15111,7 +15111,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 170, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" } ], "type": { @@ -15131,7 +15131,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L168" } ] } @@ -15156,7 +15156,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 173, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L173" } ], "type": { @@ -15175,7 +15175,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 174, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L174" } ], "type": { @@ -15197,7 +15197,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L172" } ] } @@ -15225,7 +15225,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -15261,7 +15261,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -15335,7 +15335,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -15371,7 +15371,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -15417,7 +15417,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 21, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" } ], "extendedTypes": [ @@ -15451,7 +15451,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" } ], "type": { @@ -15521,7 +15521,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" } ] }, @@ -15550,7 +15550,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "signatures": [ @@ -15565,7 +15565,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "parameters": [ @@ -15599,7 +15599,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "indexSignatures": [ @@ -15614,7 +15614,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "parameters": [ @@ -15908,7 +15908,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "signatures": [ @@ -16011,7 +16011,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "parameters": [ @@ -16070,7 +16070,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" } ], "type": { @@ -16111,7 +16111,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 192, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" } ], "type": { @@ -16151,7 +16151,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -16192,7 +16192,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" } ], "type": { @@ -16214,7 +16214,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ] } @@ -16252,7 +16252,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ], "type": { @@ -16288,7 +16288,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -16308,7 +16308,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 199, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" } ] } @@ -16333,7 +16333,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -16352,7 +16352,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -16374,7 +16374,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -16399,7 +16399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "signatures": [ @@ -16518,7 +16518,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "parameters": [ @@ -16572,7 +16572,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -16595,7 +16595,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -16615,7 +16615,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ] } @@ -16632,7 +16632,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" } ], "type": { @@ -16652,7 +16652,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ] } @@ -16677,7 +16677,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 384, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" } ], "type": { @@ -16696,7 +16696,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 385, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" } ], "type": { @@ -16718,7 +16718,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 383, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" } ] } @@ -16743,7 +16743,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "signatures": [ @@ -16862,7 +16862,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "parameters": [ @@ -16916,7 +16916,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -16939,7 +16939,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -16959,7 +16959,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ] } @@ -16976,7 +16976,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" } ], "type": { @@ -16996,7 +16996,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ] } @@ -17021,7 +17021,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" } ], "type": { @@ -17040,7 +17040,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 338, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" } ], "type": { @@ -17062,7 +17062,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 336, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" } ] } @@ -17087,7 +17087,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "signatures": [ @@ -17190,7 +17190,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "parameters": [ @@ -17244,7 +17244,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 131, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" } ], "type": { @@ -17265,7 +17265,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ], "type": { @@ -17285,7 +17285,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ] } @@ -17310,7 +17310,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" } ], "type": { @@ -17329,7 +17329,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 136, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" } ], "type": { @@ -17351,7 +17351,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ] } @@ -17376,7 +17376,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "signatures": [ @@ -17481,7 +17481,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "parameters": [ @@ -17571,7 +17571,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -17595,7 +17595,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 74, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" } ], "type": { @@ -17615,7 +17615,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ] } @@ -17640,7 +17640,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -17659,7 +17659,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "type": { @@ -17681,7 +17681,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ] } @@ -17709,7 +17709,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -17745,7 +17745,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -17819,7 +17819,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -17855,7 +17855,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -17886,7 +17886,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "signatures": [ @@ -17997,7 +17997,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "parameters": [ @@ -18056,7 +18056,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -18097,7 +18097,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ], "type": { @@ -18137,7 +18137,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 270, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" } ], "type": { @@ -18157,7 +18157,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 269, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" } ] } @@ -18194,7 +18194,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -18217,7 +18217,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -18237,7 +18237,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ] } @@ -18254,7 +18254,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -18274,7 +18274,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -18299,7 +18299,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" } ], "type": { @@ -18318,7 +18318,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" } ], "type": { @@ -18340,7 +18340,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 279, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" } ] } @@ -18380,7 +18380,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" } ], "extendedTypes": [ @@ -18422,7 +18422,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" } ] }, @@ -18451,7 +18451,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "signatures": [ @@ -18466,7 +18466,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "parameters": [ @@ -18500,7 +18500,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "indexSignatures": [ @@ -18515,7 +18515,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "parameters": [ @@ -18805,9 +18805,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 585, + "line": 600, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L600" } ], "signatures": [ @@ -18916,9 +18916,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 585, + "line": 600, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L600" } ], "parameters": [ @@ -19028,9 +19028,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 591, + "line": 606, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L591" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L606" } ], "type": { @@ -19051,9 +19051,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 591, + "line": 606, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L591" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L606" } ], "type": { @@ -19071,9 +19071,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 591, + "line": 606, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L591" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L606" } ] } @@ -19088,9 +19088,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 592, + "line": 607, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L592" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L607" } ], "type": { @@ -19108,9 +19108,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 590, + "line": 605, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L605" } ] } @@ -19133,9 +19133,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 595, + "line": 610, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L595" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L610" } ], "type": { @@ -19152,9 +19152,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 596, + "line": 611, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L596" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L611" } ], "type": { @@ -19174,9 +19174,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 594, + "line": 609, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L594" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L609" } ] } @@ -19199,9 +19199,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 365, + "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L380" } ], "signatures": [ @@ -19302,9 +19302,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 365, + "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L380" } ], "parameters": [ @@ -19369,9 +19369,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 367, + "line": 382, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L382" } ], "type": { @@ -19389,9 +19389,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 367, + "line": 382, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L382" } ] } @@ -19426,9 +19426,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -19449,9 +19449,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -19468,9 +19468,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -19487,9 +19487,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -19507,9 +19507,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ] } @@ -19524,9 +19524,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 371, + "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L371" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L386" } ], "type": { @@ -19544,9 +19544,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 369, + "line": 384, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L369" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L384" } ] } @@ -19569,9 +19569,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 374, + "line": 389, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L389" } ], "type": { @@ -19588,9 +19588,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 375, + "line": 390, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L390" } ], "type": { @@ -19610,9 +19610,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 373, + "line": 388, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L388" } ] } @@ -19635,9 +19635,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L689" } ], "signatures": [ @@ -19758,9 +19758,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L689" } ], "parameters": [ @@ -19854,9 +19854,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 680, + "line": 695, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L695" } ], "type": { @@ -19883,9 +19883,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 678, + "line": 693, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L678" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L693" } ], "type": { @@ -19921,9 +19921,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 679, + "line": 694, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L694" } ], "type": { @@ -19943,9 +19943,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 677, + "line": 692, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L692" } ] } @@ -19980,9 +19980,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 684, + "line": 699, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L699" } ], "type": { @@ -20003,9 +20003,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 684, + "line": 699, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L699" } ], "type": { @@ -20023,9 +20023,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 684, + "line": 699, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L699" } ] } @@ -20040,9 +20040,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 685, + "line": 700, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L700" } ], "type": { @@ -20060,9 +20060,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 683, + "line": 698, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L698" } ] } @@ -20085,9 +20085,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 688, + "line": 703, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L688" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L703" } ], "type": { @@ -20104,9 +20104,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 689, + "line": 704, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L704" } ], "type": { @@ -20126,9 +20126,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 687, + "line": 702, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L687" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L702" } ] } @@ -20151,9 +20151,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 769, + "line": 784, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L784" } ], "signatures": [ @@ -20254,9 +20254,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 769, + "line": 784, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L784" } ], "parameters": [ @@ -20353,9 +20353,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 772, + "line": 787, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L787" } ], "type": { @@ -20382,9 +20382,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 772, + "line": 787, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L787" } ], "type": { @@ -20411,9 +20411,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 772, + "line": 787, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L787" } ] } @@ -20448,9 +20448,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -20473,9 +20473,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -20501,9 +20501,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -20529,9 +20529,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -20558,9 +20558,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ] } @@ -20576,9 +20576,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 776, + "line": 791, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L776" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L791" } ], "type": { @@ -20596,9 +20596,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 774, + "line": 789, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L774" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L789" } ] } @@ -20621,9 +20621,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 779, + "line": 794, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L794" } ], "type": { @@ -20640,9 +20640,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 780, + "line": 795, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L780" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L795" } ], "type": { @@ -20662,9 +20662,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 778, + "line": 793, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L778" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L793" } ] } @@ -20687,9 +20687,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "signatures": [ @@ -20828,9 +20828,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "typeParameters": [ @@ -20860,9 +20860,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "type": { @@ -20881,9 +20881,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "type": { @@ -20903,9 +20903,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ] } @@ -20999,9 +20999,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 965, + "line": 980, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L965" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L980" } ], "signatures": [ @@ -21061,9 +21061,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 965, + "line": 980, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L965" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L980" } ], "parameters": [ @@ -21123,9 +21123,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 967, + "line": 982, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L982" } ], "type": { @@ -21142,9 +21142,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 968, + "line": 983, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L968" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L983" } ], "type": { @@ -21162,9 +21162,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 966, + "line": 981, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L966" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L981" } ] } @@ -21187,9 +21187,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 971, + "line": 986, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L971" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L986" } ], "type": { @@ -21206,9 +21206,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 972, + "line": 987, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L987" } ], "type": { @@ -21228,9 +21228,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 970, + "line": 985, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L985" } ] } @@ -21253,9 +21253,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1064, + "line": 1079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1064" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1079" } ], "signatures": [ @@ -21368,9 +21368,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1064, + "line": 1079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1064" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1079" } ], "parameters": [ @@ -21437,9 +21437,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1069, + "line": 1084, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1069" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1084" } ], "type": { @@ -21466,9 +21466,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1067, + "line": 1082, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1067" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1082" } ], "type": { @@ -21504,9 +21504,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1068, + "line": 1083, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1068" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1083" } ], "type": { @@ -21526,9 +21526,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1066, + "line": 1081, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1066" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1081" } ] } @@ -21553,9 +21553,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ], "type": { @@ -21576,9 +21576,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ], "type": { @@ -21596,9 +21596,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ] } @@ -21614,9 +21614,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ] } @@ -21633,9 +21633,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 928, + "line": 943, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L943" } ], "signatures": [ @@ -21711,9 +21711,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 928, + "line": 943, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L943" } ], "parameters": [ @@ -21773,9 +21773,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 930, + "line": 945, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L930" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L945" } ], "type": { @@ -21802,9 +21802,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 931, + "line": 946, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L931" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L946" } ], "type": { @@ -21822,9 +21822,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 929, + "line": 944, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L944" } ] } @@ -21847,9 +21847,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 934, + "line": 949, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L949" } ], "type": { @@ -21866,9 +21866,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 935, + "line": 950, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L935" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L950" } ], "type": { @@ -21888,9 +21888,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 933, + "line": 948, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L933" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L948" } ] } @@ -21913,9 +21913,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1293, + "line": 1308, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1308" } ], "signatures": [ @@ -22098,9 +22098,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1293, + "line": 1308, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1308" } ], "parameters": [ @@ -22200,9 +22200,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1299, + "line": 1314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1299" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1314" } ], "type": { @@ -22224,9 +22224,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1300, + "line": 1315, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1315" } ], "type": { @@ -22244,9 +22244,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1298, + "line": 1313, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1298" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1313" } ] } @@ -22269,9 +22269,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1303, + "line": 1318, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1303" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1318" } ], "type": { @@ -22288,9 +22288,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1304, + "line": 1319, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1304" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1319" } ], "type": { @@ -22310,9 +22310,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1302, + "line": 1317, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1302" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1317" } ] } @@ -22335,9 +22335,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1366, + "line": 1381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1381" } ], "signatures": [ @@ -22446,9 +22446,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1366, + "line": 1381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1381" } ], "parameters": [ @@ -22527,9 +22527,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1371, + "line": 1386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1386" } ], "type": { @@ -22548,9 +22548,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1372, + "line": 1387, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1387" } ], "type": { @@ -22568,9 +22568,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1370, + "line": 1385, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1385" } ] } @@ -22593,9 +22593,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1375, + "line": 1390, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1390" } ], "type": { @@ -22612,9 +22612,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1376, + "line": 1391, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1376" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1391" } ], "type": { @@ -22634,9 +22634,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1374, + "line": 1389, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1389" } ] } @@ -22659,9 +22659,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 522, + "line": 537, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L537" } ], "signatures": [ @@ -22770,9 +22770,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 522, + "line": 537, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L537" } ], "parameters": [ @@ -22882,9 +22882,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 528, + "line": 543, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L543" } ], "type": { @@ -22905,9 +22905,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 528, + "line": 543, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L543" } ], "type": { @@ -22925,9 +22925,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 528, + "line": 543, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L543" } ] } @@ -22942,9 +22942,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 529, + "line": 544, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L544" } ], "type": { @@ -22962,9 +22962,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 527, + "line": 542, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L542" } ] } @@ -22987,9 +22987,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 532, + "line": 547, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L532" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L547" } ], "type": { @@ -23006,9 +23006,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 533, + "line": 548, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L548" } ], "type": { @@ -23028,9 +23028,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 531, + "line": 546, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L546" } ] } @@ -23053,9 +23053,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1128, + "line": 1143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1143" } ], "signatures": [ @@ -23172,9 +23172,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1128, + "line": 1143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1143" } ], "parameters": [ @@ -23237,9 +23237,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1130, + "line": 1145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1145" } ], "type": { @@ -23261,9 +23261,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1131, + "line": 1146, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1146" } ], "type": { @@ -23281,9 +23281,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1129, + "line": 1144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1144" } ] } @@ -23306,9 +23306,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1134, + "line": 1149, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1149" } ], "type": { @@ -23325,9 +23325,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1135, + "line": 1150, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1150" } ], "type": { @@ -23347,9 +23347,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1133, + "line": 1148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1148" } ] } @@ -23377,7 +23377,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -23413,7 +23413,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -23487,7 +23487,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -23523,7 +23523,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -23552,9 +23552,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1395, + "line": 1410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1395" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1410" } ], "signatures": [ @@ -23567,9 +23567,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1395, + "line": 1410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1395" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1410" } ], "parameters": [ @@ -23601,9 +23601,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 461, + "line": 476, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" } ], "signatures": [ @@ -23770,9 +23770,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 461, + "line": 476, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" } ], "parameters": [ @@ -24038,9 +24038,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -24061,9 +24061,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -24080,9 +24080,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -24099,9 +24099,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -24119,9 +24119,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ] } @@ -24136,9 +24136,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 478, + "line": 493, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L493" } ], "type": { @@ -24156,9 +24156,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 476, + "line": 491, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L491" } ] } @@ -24181,9 +24181,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 481, + "line": 496, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ], "type": { @@ -24200,9 +24200,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 482, + "line": 497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L497" } ], "type": { @@ -24222,9 +24222,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 480, + "line": 495, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L495" } ] } @@ -24247,9 +24247,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 204, + "line": 219, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L219" } ], "signatures": [ @@ -24322,6 +24322,16 @@ } ] }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .upload('public/avatar1.png', avatarFile)\n\nif (error) {\n // Log the full error so fields like `statusCode` and `error` (the\n // Storage error name, e.g. \"Duplicate\") aren't hidden behind `error.message`.\n console.error(error)\n return\n}\n```" + } + ] + }, { "tag": "@remarks", "content": [ @@ -24416,9 +24426,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 204, + "line": 219, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L219" } ], "parameters": [ @@ -24525,9 +24535,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -24548,9 +24558,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -24567,9 +24577,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -24586,9 +24596,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -24606,9 +24616,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ] } @@ -24623,9 +24633,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 211, + "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L226" } ], "type": { @@ -24643,9 +24653,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 209, + "line": 224, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L224" } ] } @@ -24668,9 +24678,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 214, + "line": 229, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L229" } ], "type": { @@ -24687,9 +24697,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 215, + "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L230" } ], "type": { @@ -24709,9 +24719,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 213, + "line": 228, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L228" } ] } @@ -24734,9 +24744,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 259, + "line": 274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L274" } ], "signatures": [ @@ -24837,9 +24847,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 259, + "line": 274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L274" } ], "parameters": [ @@ -24995,7 +25005,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -25014,7 +25024,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -25036,7 +25046,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -25061,7 +25071,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -25082,9 +25092,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 324, + "line": 339, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L339" } ], "type": { @@ -25102,9 +25112,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 324, + "line": 339, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L339" } ], "type": { @@ -25123,9 +25133,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 324, + "line": 339, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L339" } ] } @@ -25142,7 +25152,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -25162,7 +25172,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -25207,7 +25217,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "extendedTypes": [ @@ -25242,7 +25252,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" } ] }, @@ -25284,7 +25294,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" } ], "signatures": [ @@ -25348,7 +25358,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" } ], "parameters": [ @@ -25446,7 +25456,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" } ], "signatures": [ @@ -25509,7 +25519,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" } ], "parameters": [ @@ -25580,7 +25590,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 242, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" } ], "signatures": [ @@ -25643,7 +25653,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 242, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" } ], "parameters": [ @@ -25714,7 +25724,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" } ], "signatures": [ @@ -25777,7 +25787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" } ], "parameters": [ @@ -25821,7 +25831,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ], "signatures": [ @@ -25884,7 +25894,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ], "parameters": [ @@ -25939,7 +25949,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ], "type": { @@ -25961,7 +25971,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ] } @@ -25998,7 +26008,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" } ], "signatures": [ @@ -26061,7 +26071,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" } ], "parameters": [ @@ -26140,7 +26150,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -26177,7 +26187,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -26251,7 +26261,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -26288,7 +26298,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -26334,7 +26344,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" } ], "extendedTypes": [ @@ -26373,7 +26383,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 273, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" } ], "signatures": [ @@ -26427,7 +26437,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 273, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" } ], "parameters": [ @@ -26461,7 +26471,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 275, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" } ], "indexSignatures": [ @@ -26476,7 +26486,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 275, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" } ], "parameters": [ @@ -26764,7 +26774,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 311, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" } ], "signatures": [ @@ -26827,7 +26837,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 311, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" } ], "parameters": [ @@ -26915,7 +26925,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 390, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" } ], "signatures": [ @@ -26978,7 +26988,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 390, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" } ], "parameters": [ @@ -27049,7 +27059,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 366, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" } ], "signatures": [ @@ -27112,7 +27122,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 366, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" } ], "parameters": [ @@ -27167,7 +27177,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ], "type": { @@ -27189,7 +27199,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ] } @@ -27226,7 +27236,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" } ], "signatures": [ @@ -27289,7 +27299,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" } ], "parameters": [ @@ -27333,7 +27343,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 338, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" } ], "signatures": [ @@ -27396,7 +27406,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 338, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" } ], "parameters": [ @@ -27490,7 +27500,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -27527,7 +27537,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -27601,7 +27611,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -27638,7 +27648,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -27684,7 +27694,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 256, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256" } ], "extendedTypes": [ @@ -27723,7 +27733,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" } ], "signatures": [ @@ -27777,7 +27787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" } ], "parameters": [ @@ -27811,7 +27821,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 467, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" } ], "indexSignatures": [ @@ -27826,7 +27836,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 467, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" } ], "parameters": [ @@ -28125,7 +28135,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" } ], "signatures": [ @@ -28188,7 +28198,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" } ], "parameters": [ @@ -28285,7 +28295,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 536, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" } ], "signatures": [ @@ -28348,7 +28358,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 536, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" } ], "parameters": [ @@ -28447,7 +28457,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 567, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" } ], "signatures": [ @@ -28510,7 +28520,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 567, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" } ], "parameters": [ @@ -28610,7 +28620,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 505, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" } ], "signatures": [ @@ -28673,7 +28683,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 505, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" } ], "parameters": [ @@ -28770,7 +28780,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 603, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" } ], "signatures": [ @@ -28833,7 +28843,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 603, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" } ], "parameters": [ @@ -28935,7 +28945,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -28972,7 +28982,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -29046,7 +29056,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -29083,7 +29093,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -29129,7 +29139,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 446, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L446" } ], "extendedTypes": [ @@ -29179,7 +29189,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" } ], "type": { @@ -29417,7 +29427,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "type": { @@ -29433,7 +29443,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "indexSignatures": [ @@ -29448,7 +29458,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "parameters": [ @@ -29485,7 +29495,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 26, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" } ] } @@ -29505,7 +29515,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" } ] }, @@ -29534,7 +29544,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" } ], "signatures": [ @@ -29549,7 +29559,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" } ], "parameters": [ @@ -29572,7 +29582,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 9, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" } ], "signatures": [ @@ -29587,7 +29597,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 9, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" } ], "type": { @@ -29650,7 +29660,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "type": { @@ -29675,7 +29685,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" } ], "signatures": [ @@ -29709,7 +29719,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" } ], "typeParameters": [ @@ -29762,7 +29772,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 23, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" } ], "signatures": [ @@ -29777,7 +29787,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 23, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" } ], "parameters": [ @@ -29901,7 +29911,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "signatures": [ @@ -29935,7 +29945,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "parameters": [ @@ -29975,7 +29985,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "signatures": [ @@ -29990,7 +30000,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "type": { @@ -30063,7 +30073,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" } ], "signatures": [ @@ -30097,7 +30107,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" } ], "typeParameters": [ @@ -30180,7 +30190,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 15, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" } ], "signatures": [ @@ -30195,7 +30205,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 15, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" } ], "parameters": [ @@ -30303,7 +30313,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 17, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" } ], "signatures": [ @@ -30318,7 +30328,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 17, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" } ], "parameters": [ @@ -30435,7 +30445,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 4, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" } ], "implementedTypes": [ @@ -30481,7 +30491,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" } ] }, @@ -30496,7 +30506,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" } ] }, @@ -30511,7 +30521,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorDataApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" } ] }, @@ -30553,7 +30563,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" } ], "type": { @@ -30578,7 +30588,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" } ], "type": { @@ -30601,7 +30611,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" } ], "type": { @@ -30626,7 +30636,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" } ], "type": { @@ -30651,7 +30661,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" } ], "type": { @@ -30676,7 +30686,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" } ], "type": { @@ -30696,7 +30706,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" } ] } @@ -30712,7 +30722,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json index 18c4a8eb83adb..d121fa2e9f39a 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json @@ -46,7 +46,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L149" } ], "type": { @@ -73,7 +73,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 155, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L155" } ], "type": { @@ -100,7 +100,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L151" } ], "type": { @@ -127,7 +127,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L157" } ], "type": { @@ -154,7 +154,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 159, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L159" } ], "type": { @@ -181,7 +181,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L153" } ], "type": { @@ -201,7 +201,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 147, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L147" } ] }, @@ -231,7 +231,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L62" } ], "signatures": [ @@ -246,7 +246,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L62" } ], "parameters": [ @@ -328,7 +328,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -352,7 +352,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -376,7 +376,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -391,7 +391,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -414,7 +414,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -433,7 +433,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -452,7 +452,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -480,7 +480,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -509,7 +509,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -547,7 +547,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 58, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L58" } ], "extendedTypes": [ @@ -584,7 +584,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L36" } ], "signatures": [ @@ -647,7 +647,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L36" } ], "parameters": [ @@ -681,7 +681,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 38, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L38" } ], "indexSignatures": [ @@ -696,7 +696,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 38, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L38" } ], "parameters": [ @@ -989,7 +989,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 95, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L95" } ], "getSignature": { @@ -1041,7 +1041,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 95, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L95" } ], "type": { @@ -1064,7 +1064,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L75" } ], "getSignature": { @@ -1116,7 +1116,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 75, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L75" } ], "type": { @@ -1140,7 +1140,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "signatures": [ @@ -1245,7 +1245,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "parameters": [ @@ -1304,7 +1304,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" } ], "type": { @@ -1345,7 +1345,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 192, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" } ], "type": { @@ -1385,7 +1385,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -1426,7 +1426,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" } ], "type": { @@ -1448,7 +1448,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ] } @@ -1486,7 +1486,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ], "type": { @@ -1522,7 +1522,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -1542,7 +1542,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 199, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" } ] } @@ -1567,7 +1567,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -1586,7 +1586,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -1608,7 +1608,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -1645,7 +1645,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "signatures": [ @@ -1766,7 +1766,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "parameters": [ @@ -1820,7 +1820,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -1843,7 +1843,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -1863,7 +1863,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ] } @@ -1880,7 +1880,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" } ], "type": { @@ -1900,7 +1900,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ] } @@ -1925,7 +1925,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 384, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" } ], "type": { @@ -1944,7 +1944,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 385, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" } ], "type": { @@ -1966,7 +1966,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 383, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" } ] } @@ -2003,7 +2003,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "signatures": [ @@ -2124,7 +2124,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "parameters": [ @@ -2178,7 +2178,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -2201,7 +2201,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -2221,7 +2221,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ] } @@ -2238,7 +2238,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" } ], "type": { @@ -2258,7 +2258,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ] } @@ -2283,7 +2283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" } ], "type": { @@ -2302,7 +2302,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 338, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" } ], "type": { @@ -2324,7 +2324,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 336, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" } ] } @@ -2359,7 +2359,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L58" } ], "signatures": [ @@ -2412,7 +2412,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L58" } ], "parameters": [ @@ -2459,7 +2459,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "signatures": [ @@ -2564,7 +2564,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "parameters": [ @@ -2618,7 +2618,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 131, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" } ], "type": { @@ -2639,7 +2639,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ], "type": { @@ -2659,7 +2659,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ] } @@ -2684,7 +2684,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" } ], "type": { @@ -2703,7 +2703,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 136, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" } ], "type": { @@ -2725,7 +2725,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ] } @@ -2762,7 +2762,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "signatures": [ @@ -2869,7 +2869,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "parameters": [ @@ -2959,7 +2959,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -2983,7 +2983,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 74, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" } ], "type": { @@ -3003,7 +3003,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ] } @@ -3028,7 +3028,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -3047,7 +3047,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "type": { @@ -3069,7 +3069,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ] } @@ -3107,7 +3107,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -3143,7 +3143,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -3217,7 +3217,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -3253,7 +3253,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -3286,7 +3286,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "signatures": [ @@ -3399,7 +3399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "parameters": [ @@ -3458,7 +3458,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -3499,7 +3499,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ], "type": { @@ -3539,7 +3539,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 270, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" } ], "type": { @@ -3559,7 +3559,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 269, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" } ] } @@ -3596,7 +3596,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -3619,7 +3619,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -3639,7 +3639,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ] } @@ -3656,7 +3656,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -3676,7 +3676,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -3701,7 +3701,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" } ], "type": { @@ -3720,7 +3720,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" } ], "type": { @@ -3742,7 +3742,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 279, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" } ] } @@ -3796,7 +3796,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L11" } ], "extendedTypes": [ @@ -3834,7 +3834,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "signatures": [ @@ -3849,7 +3849,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L17" } ], "parameters": [ @@ -3935,7 +3935,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -3963,7 +3963,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -3991,7 +3991,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -4006,7 +4006,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -4029,7 +4029,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -4048,7 +4048,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -4067,7 +4067,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -4095,7 +4095,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -4124,7 +4124,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -4152,7 +4152,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L11" } ], "extendedTypes": [ @@ -4210,7 +4210,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "signatures": [ @@ -4225,7 +4225,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L93" } ], "parameters": [ @@ -4296,7 +4296,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -4317,7 +4317,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -4352,7 +4352,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -4387,7 +4387,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -4404,7 +4404,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -4427,7 +4427,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -4446,7 +4446,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -4465,7 +4465,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -4493,7 +4493,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -4522,7 +4522,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -4560,7 +4560,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L90" } ], "extendedTypes": [ @@ -4611,7 +4611,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "signatures": [ @@ -4626,7 +4626,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L128" } ], "parameters": [ @@ -4696,7 +4696,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 59, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L59" } ], "type": { @@ -4722,7 +4722,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 60, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L60" } ], "type": { @@ -4748,7 +4748,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "signatures": [ @@ -4765,7 +4765,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ], "type": { @@ -4788,7 +4788,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 76, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L76" } ], "type": { @@ -4807,7 +4807,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 75, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L75" } ], "type": { @@ -4826,7 +4826,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 77, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L77" } ], "type": { @@ -4854,7 +4854,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L78" } ], "type": { @@ -4883,7 +4883,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L74" } ] } @@ -4921,7 +4921,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 127, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L127" } ], "extendedTypes": [ @@ -4965,7 +4965,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "signatures": [ @@ -4980,7 +4980,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L109" } ], "parameters": [ @@ -5028,7 +5028,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -5063,7 +5063,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -5098,7 +5098,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -5115,7 +5115,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -5138,7 +5138,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -5157,7 +5157,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -5176,7 +5176,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -5204,7 +5204,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -5233,7 +5233,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -5271,7 +5271,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 108, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L108" } ], "extendedTypes": [ @@ -5315,7 +5315,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "signatures": [ @@ -5330,7 +5330,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L138" } ], "parameters": [ @@ -5389,7 +5389,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L91" } ], "type": { @@ -5415,7 +5415,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L14" } ], "type": { @@ -5450,7 +5450,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L15" } ], "type": { @@ -5485,7 +5485,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "signatures": [ @@ -5502,7 +5502,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ], "type": { @@ -5525,7 +5525,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 32, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L32" } ], "type": { @@ -5544,7 +5544,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 31, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L31" } ], "type": { @@ -5563,7 +5563,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L33" } ], "type": { @@ -5591,7 +5591,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L34" } ], "type": { @@ -5620,7 +5620,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L30" } ] } @@ -5658,7 +5658,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 137, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L137" } ], "extendedTypes": [ @@ -5704,7 +5704,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 42, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L42" } ], "type": { @@ -5731,7 +5731,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L40" } ], "type": { @@ -5758,7 +5758,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L36" } ], "type": { @@ -5785,7 +5785,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L38" } ], "type": { @@ -5812,7 +5812,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L44" } ], "type": { @@ -5832,7 +5832,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 34, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L34" } ] }, @@ -5856,7 +5856,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L16" } ], "type": { @@ -5878,7 +5878,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L17" } ], "type": { @@ -5899,7 +5899,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L15" } ], "type": { @@ -5918,7 +5918,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L11" } ], "type": { @@ -5937,7 +5937,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L13" } ], "type": { @@ -5956,7 +5956,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L14" } ], "type": { @@ -5975,7 +5975,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L19" } ], "type": { @@ -5996,7 +5996,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L12" } ], "type": { @@ -6017,7 +6017,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L18" } ], "type": { @@ -6037,7 +6037,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 10, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L10" } ] }, @@ -6075,7 +6075,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L549" } ], "type": { @@ -6102,7 +6102,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L550" } ], "type": { @@ -6132,7 +6132,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L548" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L548" } ], "type": { @@ -6152,7 +6152,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 547, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L547" } ] }, @@ -6176,7 +6176,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L176" } ], "type": { @@ -6196,7 +6196,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 175, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L175" } ] }, @@ -6236,7 +6236,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L362" } ], "type": { @@ -6265,7 +6265,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 363, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L363" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L363" } ], "type": { @@ -6285,7 +6285,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 361, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L361" } ] }, @@ -6323,7 +6323,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 646, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L646" } ], "type": { @@ -6350,7 +6350,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 647, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L647" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L647" } ], "type": { @@ -6372,7 +6372,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 645, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L645" } ] }, @@ -6404,7 +6404,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L296" } ], "type": { @@ -6458,7 +6458,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 285, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L285" } ], "type": { @@ -6483,7 +6483,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 281, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L281" } ] }, @@ -6521,7 +6521,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L59" } ], "type": { @@ -6548,7 +6548,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L63" } ], "type": { @@ -6575,7 +6575,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L53" } ], "type": { @@ -6602,7 +6602,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L65" } ], "type": { @@ -6629,7 +6629,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L61" } ], "type": { @@ -6656,7 +6656,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L57" } ], "type": { @@ -6683,7 +6683,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L55" } ], "type": { @@ -6703,7 +6703,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 51, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L51" } ], "indexSignatures": [ @@ -6726,7 +6726,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L67" } ], "parameters": [ @@ -6791,7 +6791,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L94" } ], "type": { @@ -6826,7 +6826,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L104" } ], "type": { @@ -6855,7 +6855,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L85" } ], "type": { @@ -6891,7 +6891,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L81" } ], "type": { @@ -6933,7 +6933,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L87" } ], "type": { @@ -6969,7 +6969,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L89" } ], "type": { @@ -7007,7 +7007,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L79" } ], "type": { @@ -7042,7 +7042,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L99" } ], "type": { @@ -7069,7 +7069,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L83" } ], "type": { @@ -7098,7 +7098,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 77, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L77" } ] }, @@ -7136,7 +7136,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L119" } ], "type": { @@ -7165,7 +7165,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L125" } ], "type": { @@ -7194,7 +7194,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L127" } ], "type": { @@ -7221,7 +7221,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L121" } ], "type": { @@ -7250,7 +7250,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L129" } ], "type": { @@ -7277,7 +7277,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L113" } ], "type": { @@ -7306,7 +7306,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L131" } ], "type": { @@ -7335,7 +7335,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 133, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L133" } ], "type": { @@ -7364,7 +7364,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L117" } ], "type": { @@ -7393,7 +7393,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L123" } ], "type": { @@ -7428,7 +7428,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L138" } ], "type": { @@ -7455,7 +7455,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L115" } ], "type": { @@ -7475,7 +7475,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 111, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L111" } ] }, @@ -7515,7 +7515,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L150" } ], "type": { @@ -7592,7 +7592,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 154, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L154" } ], "type": { @@ -7621,7 +7621,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L162" } ], "type": { @@ -7650,7 +7650,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 172, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L172" } ], "type": { @@ -7694,7 +7694,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 167, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L167" } ], "type": { @@ -7738,7 +7738,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L158" } ], "type": { @@ -7758,7 +7758,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 146, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L146" } ] }, @@ -7796,7 +7796,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L515" } ], "type": { @@ -7823,7 +7823,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 516, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L516" } ], "type": { @@ -7855,7 +7855,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 517, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L517" } ], "type": { @@ -7884,7 +7884,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 518, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L518" } ], "type": { @@ -7911,7 +7911,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 514, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L514" } ], "type": { @@ -7931,7 +7931,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 513, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L513" } ] }, @@ -7969,7 +7969,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 526, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L526" } ], "type": { @@ -7994,7 +7994,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 525, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L525" } ] }, @@ -8018,7 +8018,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L23" } ], "type": { @@ -8039,7 +8039,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L24" } ], "type": { @@ -8060,7 +8060,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L27" } ], "type": { @@ -8081,7 +8081,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L25" } ], "type": { @@ -8119,7 +8119,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L26" } ], "type": { @@ -8148,7 +8148,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L22" } ] }, @@ -8188,7 +8188,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L491" } ], "type": { @@ -8217,7 +8217,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L492" } ], "type": { @@ -8246,7 +8246,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 490, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L490" } ], "type": { @@ -8273,7 +8273,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 489, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L489" } ], "type": { @@ -8293,7 +8293,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 488, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L488" } ] }, @@ -8331,7 +8331,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -8356,7 +8356,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L501" } ], "type": { @@ -8376,7 +8376,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 501, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L501" } ] } @@ -8404,7 +8404,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 502, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L502" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L502" } ], "type": { @@ -8424,7 +8424,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 500, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L500" } ] }, @@ -8464,7 +8464,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 467, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L467" } ], "type": { @@ -8493,7 +8493,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 468, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L468" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L468" } ], "type": { @@ -8522,7 +8522,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 466, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L466" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L466" } ], "type": { @@ -8542,7 +8542,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 465, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L465" } ] }, @@ -8582,7 +8582,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L478" } ], "type": { @@ -8609,7 +8609,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -8634,7 +8634,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L477" } ], "type": { @@ -8654,7 +8654,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 477, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L477" } ] } @@ -8673,7 +8673,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 476, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L476" } ] }, @@ -8711,7 +8711,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 567, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L567" } ], "type": { @@ -8740,7 +8740,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 568, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L568" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L568" } ], "type": { @@ -8769,7 +8769,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L569" } ], "type": { @@ -8798,7 +8798,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L570" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L570" } ], "type": { @@ -8827,7 +8827,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L571" } ], "type": { @@ -8856,7 +8856,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 572, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L572" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L572" } ], "type": { @@ -8885,7 +8885,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 573, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L573" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L573" } ], "type": { @@ -8912,7 +8912,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L566" } ], "type": { @@ -8932,7 +8932,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 565, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L565" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L565" } ] }, @@ -8972,7 +8972,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 583, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L583" } ], "type": { @@ -8999,7 +8999,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 582, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L582" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L582" } ], "type": { @@ -9024,7 +9024,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 581, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L581" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L581" } ] }, @@ -9046,7 +9046,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L301" } ], "type": { @@ -9066,7 +9066,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 300, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L300" } ] }, @@ -9106,7 +9106,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L384" } ], "type": { @@ -9129,7 +9129,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 383, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L383" } ] }, @@ -9167,7 +9167,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 537, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L537" } ], "type": { @@ -9194,7 +9194,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L536" } ], "type": { @@ -9221,7 +9221,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L538" } ], "type": { @@ -9246,7 +9246,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 535, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L535" } ] }, @@ -9286,7 +9286,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 607, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L607" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L607" } ], "type": { @@ -9315,7 +9315,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L604" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L604" } ], "type": { @@ -9342,7 +9342,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 605, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L605" } ], "type": { @@ -9373,7 +9373,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 608, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L608" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L608" } ], "type": { @@ -9402,7 +9402,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 609, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L609" } ], "type": { @@ -9431,7 +9431,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 606, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L606" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L606" } ], "type": { @@ -9458,7 +9458,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 603, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L603" } ], "type": { @@ -9478,7 +9478,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 602, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L602" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L602" } ] }, @@ -9518,7 +9518,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 619, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L619" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L619" } ], "type": { @@ -9547,7 +9547,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L618" } ], "type": { @@ -9572,7 +9572,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 617, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L617" } ] }, @@ -9615,7 +9615,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L184" } ], "type": { @@ -9644,7 +9644,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L189" } ], "type": { @@ -9673,7 +9673,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L199" } ], "type": { @@ -9702,7 +9702,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 194, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L194" } ], "type": { @@ -9724,7 +9724,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 179, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L179" } ] }, @@ -9764,7 +9764,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 271, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L271" } ], "type": { @@ -9791,7 +9791,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 269, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L269" } ], "type": { @@ -9811,7 +9811,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 267, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L267" } ] }, @@ -9849,7 +9849,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L257" } ], "type": { @@ -9876,7 +9876,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L253" } ], "type": { @@ -9905,7 +9905,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L251" } ], "type": { @@ -9938,7 +9938,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L261" } ], "type": { @@ -9965,7 +9965,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L259" } ], "type": { @@ -10003,7 +10003,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L249" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L249" } ], "type": { @@ -10030,7 +10030,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L255" } ], "type": { @@ -10050,7 +10050,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 247, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L247" } ] }, @@ -10082,7 +10082,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L222" } ], "type": { @@ -10122,7 +10122,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 212, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L212" } ], "type": { @@ -10151,7 +10151,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L217" } ], "type": { @@ -10191,7 +10191,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L239" } ], "type": { @@ -10249,7 +10249,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L233" } ], "type": { @@ -10269,7 +10269,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 207, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L207" } ] }, @@ -10291,7 +10291,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 276, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L276" } ], "type": { @@ -10315,7 +10315,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L275" } ], "type": { @@ -10336,7 +10336,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 278, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L278" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L278" } ], "type": { @@ -10355,7 +10355,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 277, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L277" } ], "type": { @@ -10380,7 +10380,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 274, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L274" } ] }, @@ -10404,7 +10404,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L142" } ], "type": { @@ -10425,7 +10425,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L143" } ], "type": { @@ -10445,7 +10445,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 141, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L141" } ] }, @@ -10467,7 +10467,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 203, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L203" } ], "type": { @@ -10501,7 +10501,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 204, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L204" } ], "type": { @@ -10530,7 +10530,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 202, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L202" } ] }, @@ -10554,7 +10554,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L8" } ], "type": { @@ -10574,7 +10574,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 7, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/StorageClient.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/StorageClient.ts#L7" } ] }, @@ -10612,7 +10612,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L636" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L636" } ], "type": { @@ -10643,7 +10643,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L637" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L637" } ], "type": { @@ -10663,7 +10663,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L635" } ], "typeParameters": [ @@ -10704,7 +10704,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L332" } ], "type": { @@ -10733,7 +10733,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 312, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L312" } ], "type": { @@ -10762,7 +10762,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 325, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L325" } ], "type": { @@ -10791,7 +10791,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 319, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L319" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L319" } ], "type": { @@ -10833,7 +10833,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 308, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L308" } ], "type": { @@ -10853,7 +10853,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 304, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L304" } ] }, @@ -10893,7 +10893,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L374" } ], "type": { @@ -10922,7 +10922,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L375" } ], "type": { @@ -10951,7 +10951,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L373" } ], "type": { @@ -10971,7 +10971,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 372, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L372" } ] }, @@ -11009,7 +11009,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 424, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L424" } ], "type": { @@ -11032,7 +11032,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 423, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L423" } ] }, @@ -11072,7 +11072,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 627, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L627" } ], "type": { @@ -11097,7 +11097,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 626, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L626" } ] }, @@ -11137,7 +11137,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L415" } ], "type": { @@ -11164,7 +11164,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L411" } ], "type": { @@ -11193,7 +11193,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 412, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L412" } ], "type": { @@ -11220,7 +11220,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L413" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L413" } ], "type": { @@ -11249,7 +11249,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L409" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L409" } ], "type": { @@ -11278,7 +11278,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 414, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L414" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L414" } ], "type": { @@ -11307,7 +11307,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L410" } ], "type": { @@ -11327,7 +11327,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 408, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L408" } ] }, @@ -11367,7 +11367,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L454" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L454" } ], "type": { @@ -11398,7 +11398,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L456" } ], "type": { @@ -11425,7 +11425,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L453" } ], "type": { @@ -11454,7 +11454,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L455" } ], "type": { @@ -11476,7 +11476,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 452, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L452" } ] }, @@ -11514,7 +11514,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L441" } ], "type": { @@ -11543,7 +11543,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 440, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L440" } ], "type": { @@ -11572,7 +11572,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L442" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L442" } ], "type": { @@ -11594,7 +11594,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 439, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L439" } ] }, @@ -11617,7 +11617,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 654, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L654" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L654" } ], "typeParameters": [ @@ -11675,7 +11675,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L8" } ], "type": { @@ -11709,7 +11709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 62, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L8" } ] } @@ -11730,7 +11730,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 339, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L339" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L339" } ], "typeParameters": [ @@ -11833,7 +11833,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 396, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L396" } ], "type": { @@ -11871,7 +11871,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 396, "character": 79, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L396" } ] } @@ -11892,7 +11892,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 343, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L343" } ], "typeParameters": [ @@ -11927,7 +11927,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 345, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L345" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L345" } ], "type": { @@ -11949,7 +11949,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 346, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L346" } ], "type": { @@ -11969,7 +11969,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 344, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L344" } ] } @@ -11994,7 +11994,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 349, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L349" } ], "type": { @@ -12013,7 +12013,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 350, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L350" } ], "type": { @@ -12035,7 +12035,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 348, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L348" } ] } @@ -12062,7 +12062,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 5, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L5" } ], "type": { @@ -12098,7 +12098,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 391, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L391" } ], "type": { @@ -12128,7 +12128,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 391, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L391" } ] } @@ -12157,7 +12157,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 590, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L590" } ], "type": { @@ -12199,7 +12199,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 431, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/types.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/types.ts#L431" } ], "type": { @@ -12233,7 +12233,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "signatures": [ @@ -12267,7 +12267,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 50, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L50" } ], "parameters": [ @@ -12316,7 +12316,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "signatures": [ @@ -12350,7 +12350,7 @@ "fileName": "packages/core/storage-js/src/lib/common/errors.ts", "line": 119, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/errors.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/errors.ts#L119" } ], "parameters": [ @@ -12399,7 +12399,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 15, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L15" } ], "target": 912 @@ -12415,7 +12415,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 3, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L3" } ], "target": 48 @@ -12431,7 +12431,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L7" } ], "target": 549 @@ -12447,7 +12447,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 11, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L11" } ], "target": 536 @@ -12463,7 +12463,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L8" } ], "target": 604 @@ -12479,7 +12479,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L9" } ], "target": 672 @@ -12520,7 +12520,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/index.ts#L1" } ] }, @@ -12549,7 +12549,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "signatures": [ @@ -12564,7 +12564,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "parameters": [ @@ -12587,7 +12587,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "signatures": [ @@ -12602,7 +12602,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "type": { @@ -12665,7 +12665,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" } ], "type": { @@ -12690,7 +12690,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "signatures": [ @@ -12705,7 +12705,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "type": { @@ -12729,7 +12729,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "signatures": [ @@ -12763,7 +12763,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "typeParameters": [ @@ -12816,7 +12816,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "signatures": [ @@ -12831,7 +12831,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "parameters": [ @@ -12949,7 +12949,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -12983,7 +12983,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "parameters": [ @@ -13023,7 +13023,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -13038,7 +13038,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "type": { @@ -13105,7 +13105,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "signatures": [ @@ -13139,7 +13139,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "typeParameters": [ @@ -13216,7 +13216,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "signatures": [ @@ -13231,7 +13231,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "parameters": [ @@ -13333,7 +13333,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "signatures": [ @@ -13348,7 +13348,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "parameters": [ @@ -13465,7 +13465,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 5, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" } ], "implementedTypes": [ @@ -13511,7 +13511,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" } ] }, @@ -13548,7 +13548,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "signatures": [ @@ -13612,7 +13612,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "parameters": [ @@ -13662,7 +13662,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "indexSignatures": [ @@ -13677,7 +13677,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 50, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L50" } ], "parameters": [ @@ -13964,7 +13964,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 95, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ], "signatures": [ @@ -14044,7 +14044,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 95, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ], "parameters": [ @@ -14098,7 +14098,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 97, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L97" } ], "type": { @@ -14119,7 +14119,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 98, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L98" } ], "type": { @@ -14139,7 +14139,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 96, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" } ] } @@ -14164,7 +14164,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 101, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L101" } ], "type": { @@ -14183,7 +14183,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 102, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L102" } ], "type": { @@ -14205,7 +14205,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 100, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L100" } ] } @@ -14230,7 +14230,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 228, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" } ], "signatures": [ @@ -14310,7 +14310,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 228, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" } ], "parameters": [ @@ -14364,7 +14364,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ], "type": { @@ -14387,7 +14387,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ], "type": { @@ -14407,7 +14407,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 230, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L230" } ] } @@ -14424,7 +14424,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 231, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L231" } ], "type": { @@ -14444,7 +14444,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L229" } ] } @@ -14469,7 +14469,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 234, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L234" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L234" } ], "type": { @@ -14488,7 +14488,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 235, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" } ], "type": { @@ -14510,7 +14510,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 233, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L233" } ] } @@ -14535,7 +14535,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" } ], "signatures": [ @@ -14718,7 +14718,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L372" } ], "parameters": [ @@ -14762,7 +14762,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "signatures": [ @@ -14842,7 +14842,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "parameters": [ @@ -14892,7 +14892,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 162, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" } ], "type": { @@ -14921,7 +14921,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" } ], "type": { @@ -14950,7 +14950,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 166, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" } ], "type": { @@ -14979,7 +14979,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 164, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L164" } ], "type": { @@ -15021,7 +15021,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 165, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" } ], "type": { @@ -15050,7 +15050,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 161, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ] } @@ -15087,7 +15087,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 169, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" } ], "type": { @@ -15111,7 +15111,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 170, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" } ], "type": { @@ -15131,7 +15131,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L168" } ] } @@ -15156,7 +15156,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 173, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L173" } ], "type": { @@ -15175,7 +15175,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 174, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L174" } ], "type": { @@ -15197,7 +15197,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L172" } ] } @@ -15225,7 +15225,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -15261,7 +15261,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -15335,7 +15335,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -15371,7 +15371,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -15417,7 +15417,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 21, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21" } ], "extendedTypes": [ @@ -15451,7 +15451,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13" } ], "type": { @@ -15521,7 +15521,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" } ] }, @@ -15550,7 +15550,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "signatures": [ @@ -15565,7 +15565,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9" } ], "parameters": [ @@ -15599,7 +15599,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "indexSignatures": [ @@ -15614,7 +15614,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 11, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11" } ], "parameters": [ @@ -15908,7 +15908,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "signatures": [ @@ -16011,7 +16011,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188" } ], "parameters": [ @@ -16070,7 +16070,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 193, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193" } ], "type": { @@ -16111,7 +16111,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 192, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192" } ], "type": { @@ -16151,7 +16151,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 191, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191" } ], "type": { @@ -16192,7 +16192,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 194, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L194" } ], "type": { @@ -16214,7 +16214,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 190, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190" } ] } @@ -16252,7 +16252,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 200, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L200" } ], "type": { @@ -16288,7 +16288,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "type": { @@ -16308,7 +16308,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 199, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L199" } ] } @@ -16333,7 +16333,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -16352,7 +16352,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -16374,7 +16374,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -16399,7 +16399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "signatures": [ @@ -16518,7 +16518,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 378, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L378" } ], "parameters": [ @@ -16572,7 +16572,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -16595,7 +16595,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ], "type": { @@ -16615,7 +16615,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 380, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L380" } ] } @@ -16632,7 +16632,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L381" } ], "type": { @@ -16652,7 +16652,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 379, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L379" } ] } @@ -16677,7 +16677,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 384, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L384" } ], "type": { @@ -16696,7 +16696,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 385, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L385" } ], "type": { @@ -16718,7 +16718,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 383, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L383" } ] } @@ -16743,7 +16743,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "signatures": [ @@ -16862,7 +16862,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 331, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L331" } ], "parameters": [ @@ -16916,7 +16916,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -16939,7 +16939,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ], "type": { @@ -16959,7 +16959,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 333, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L333" } ] } @@ -16976,7 +16976,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 334, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L334" } ], "type": { @@ -16996,7 +16996,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 332, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L332" } ] } @@ -17021,7 +17021,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 337, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337" } ], "type": { @@ -17040,7 +17040,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 338, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338" } ], "type": { @@ -17062,7 +17062,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 336, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336" } ] } @@ -17087,7 +17087,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "signatures": [ @@ -17190,7 +17190,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 129, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129" } ], "parameters": [ @@ -17244,7 +17244,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 131, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131" } ], "type": { @@ -17265,7 +17265,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 132, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132" } ], "type": { @@ -17285,7 +17285,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 130, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130" } ] } @@ -17310,7 +17310,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 135, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135" } ], "type": { @@ -17329,7 +17329,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 136, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136" } ], "type": { @@ -17351,7 +17351,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 134, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134" } ] } @@ -17376,7 +17376,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "signatures": [ @@ -17481,7 +17481,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 71, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71" } ], "parameters": [ @@ -17571,7 +17571,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 73, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L73" } ], "type": { @@ -17595,7 +17595,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 74, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L74" } ], "type": { @@ -17615,7 +17615,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 72, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L72" } ] } @@ -17640,7 +17640,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 77, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77" } ], "type": { @@ -17659,7 +17659,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "type": { @@ -17681,7 +17681,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 76, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L76" } ] } @@ -17709,7 +17709,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -17745,7 +17745,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -17819,7 +17819,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -17855,7 +17855,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -17886,7 +17886,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "signatures": [ @@ -17997,7 +17997,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 267, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267" } ], "parameters": [ @@ -18056,7 +18056,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 272, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L272" } ], "type": { @@ -18097,7 +18097,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 271, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L271" } ], "type": { @@ -18137,7 +18137,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 270, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270" } ], "type": { @@ -18157,7 +18157,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 269, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269" } ] } @@ -18194,7 +18194,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -18217,7 +18217,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ], "type": { @@ -18237,7 +18237,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 276, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L276" } ] } @@ -18254,7 +18254,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 277, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L277" } ], "type": { @@ -18274,7 +18274,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 275, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L275" } ] } @@ -18299,7 +18299,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 280, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L280" } ], "type": { @@ -18318,7 +18318,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 281, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L281" } ], "type": { @@ -18340,7 +18340,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 279, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L279" } ] } @@ -18380,7 +18380,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" } ], "extendedTypes": [ @@ -18422,7 +18422,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" } ] }, @@ -18451,7 +18451,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "signatures": [ @@ -18466,7 +18466,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L55" } ], "parameters": [ @@ -18500,7 +18500,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "indexSignatures": [ @@ -18515,7 +18515,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 57, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L57" } ], "parameters": [ @@ -18805,9 +18805,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 585, + "line": 600, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L600" } ], "signatures": [ @@ -18916,9 +18916,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 585, + "line": 600, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L585" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L600" } ], "parameters": [ @@ -19028,9 +19028,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 591, + "line": 606, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L591" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L606" } ], "type": { @@ -19051,9 +19051,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 591, + "line": 606, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L591" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L606" } ], "type": { @@ -19071,9 +19071,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 591, + "line": 606, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L591" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L606" } ] } @@ -19088,9 +19088,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 592, + "line": 607, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L592" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L607" } ], "type": { @@ -19108,9 +19108,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 590, + "line": 605, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L605" } ] } @@ -19133,9 +19133,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 595, + "line": 610, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L595" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L610" } ], "type": { @@ -19152,9 +19152,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 596, + "line": 611, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L596" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L611" } ], "type": { @@ -19174,9 +19174,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 594, + "line": 609, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L594" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L609" } ] } @@ -19199,9 +19199,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 365, + "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L380" } ], "signatures": [ @@ -19302,9 +19302,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 365, + "line": 380, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L380" } ], "parameters": [ @@ -19369,9 +19369,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 367, + "line": 382, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L382" } ], "type": { @@ -19389,9 +19389,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 367, + "line": 382, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L382" } ] } @@ -19426,9 +19426,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -19449,9 +19449,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -19468,9 +19468,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -19487,9 +19487,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ], "type": { @@ -19507,9 +19507,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 370, + "line": 385, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L385" } ] } @@ -19524,9 +19524,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 371, + "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L371" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L386" } ], "type": { @@ -19544,9 +19544,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 369, + "line": 384, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L369" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L384" } ] } @@ -19569,9 +19569,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 374, + "line": 389, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L389" } ], "type": { @@ -19588,9 +19588,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 375, + "line": 390, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L390" } ], "type": { @@ -19610,9 +19610,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 373, + "line": 388, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L388" } ] } @@ -19635,9 +19635,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L689" } ], "signatures": [ @@ -19758,9 +19758,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 674, + "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L689" } ], "parameters": [ @@ -19854,9 +19854,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 680, + "line": 695, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L695" } ], "type": { @@ -19883,9 +19883,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 678, + "line": 693, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L678" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L693" } ], "type": { @@ -19921,9 +19921,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 679, + "line": 694, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L679" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L694" } ], "type": { @@ -19943,9 +19943,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 677, + "line": 692, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L692" } ] } @@ -19980,9 +19980,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 684, + "line": 699, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L699" } ], "type": { @@ -20003,9 +20003,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 684, + "line": 699, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L699" } ], "type": { @@ -20023,9 +20023,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 684, + "line": 699, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L699" } ] } @@ -20040,9 +20040,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 685, + "line": 700, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L685" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L700" } ], "type": { @@ -20060,9 +20060,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 683, + "line": 698, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L698" } ] } @@ -20085,9 +20085,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 688, + "line": 703, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L688" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L703" } ], "type": { @@ -20104,9 +20104,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 689, + "line": 704, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L704" } ], "type": { @@ -20126,9 +20126,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 687, + "line": 702, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L687" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L702" } ] } @@ -20151,9 +20151,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 769, + "line": 784, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L784" } ], "signatures": [ @@ -20254,9 +20254,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 769, + "line": 784, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L784" } ], "parameters": [ @@ -20353,9 +20353,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 772, + "line": 787, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L787" } ], "type": { @@ -20382,9 +20382,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 772, + "line": 787, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L787" } ], "type": { @@ -20411,9 +20411,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 772, + "line": 787, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L787" } ] } @@ -20448,9 +20448,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -20473,9 +20473,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -20501,9 +20501,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -20529,9 +20529,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ], "type": { @@ -20558,9 +20558,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 775, + "line": 790, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L790" } ] } @@ -20576,9 +20576,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 776, + "line": 791, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L776" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L791" } ], "type": { @@ -20596,9 +20596,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 774, + "line": 789, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L774" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L789" } ] } @@ -20621,9 +20621,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 779, + "line": 794, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L779" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L794" } ], "type": { @@ -20640,9 +20640,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 780, + "line": 795, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L780" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L795" } ], "type": { @@ -20662,9 +20662,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 778, + "line": 793, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L778" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L793" } ] } @@ -20687,9 +20687,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "signatures": [ @@ -20828,9 +20828,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "typeParameters": [ @@ -20860,9 +20860,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "type": { @@ -20881,9 +20881,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "type": { @@ -20903,9 +20903,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 874, + "line": 889, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L874" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ] } @@ -20999,9 +20999,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 965, + "line": 980, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L965" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L980" } ], "signatures": [ @@ -21061,9 +21061,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 965, + "line": 980, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L965" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L980" } ], "parameters": [ @@ -21123,9 +21123,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 967, + "line": 982, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L982" } ], "type": { @@ -21142,9 +21142,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 968, + "line": 983, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L968" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L983" } ], "type": { @@ -21162,9 +21162,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 966, + "line": 981, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L966" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L981" } ] } @@ -21187,9 +21187,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 971, + "line": 986, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L971" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L986" } ], "type": { @@ -21206,9 +21206,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 972, + "line": 987, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L987" } ], "type": { @@ -21228,9 +21228,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 970, + "line": 985, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L985" } ] } @@ -21253,9 +21253,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1064, + "line": 1079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1064" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1079" } ], "signatures": [ @@ -21368,9 +21368,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1064, + "line": 1079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1064" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1079" } ], "parameters": [ @@ -21437,9 +21437,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1069, + "line": 1084, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1069" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1084" } ], "type": { @@ -21466,9 +21466,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1067, + "line": 1082, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1067" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1082" } ], "type": { @@ -21504,9 +21504,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1068, + "line": 1083, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1068" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1083" } ], "type": { @@ -21526,9 +21526,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1066, + "line": 1081, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1066" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1081" } ] } @@ -21553,9 +21553,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ], "type": { @@ -21576,9 +21576,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ], "type": { @@ -21596,9 +21596,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ] } @@ -21614,9 +21614,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1071, + "line": 1086, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1071" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1086" } ] } @@ -21633,9 +21633,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 928, + "line": 943, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L943" } ], "signatures": [ @@ -21711,9 +21711,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 928, + "line": 943, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L928" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L943" } ], "parameters": [ @@ -21773,9 +21773,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 930, + "line": 945, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L930" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L945" } ], "type": { @@ -21802,9 +21802,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 931, + "line": 946, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L931" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L946" } ], "type": { @@ -21822,9 +21822,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 929, + "line": 944, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L929" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L944" } ] } @@ -21847,9 +21847,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 934, + "line": 949, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L934" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L949" } ], "type": { @@ -21866,9 +21866,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 935, + "line": 950, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L935" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L950" } ], "type": { @@ -21888,9 +21888,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 933, + "line": 948, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L933" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L948" } ] } @@ -21913,9 +21913,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1293, + "line": 1308, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1308" } ], "signatures": [ @@ -22098,9 +22098,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1293, + "line": 1308, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1293" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1308" } ], "parameters": [ @@ -22200,9 +22200,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1299, + "line": 1314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1299" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1314" } ], "type": { @@ -22224,9 +22224,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1300, + "line": 1315, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1315" } ], "type": { @@ -22244,9 +22244,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1298, + "line": 1313, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1298" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1313" } ] } @@ -22269,9 +22269,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1303, + "line": 1318, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1303" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1318" } ], "type": { @@ -22288,9 +22288,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1304, + "line": 1319, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1304" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1319" } ], "type": { @@ -22310,9 +22310,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1302, + "line": 1317, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1302" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1317" } ] } @@ -22335,9 +22335,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1366, + "line": 1381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1381" } ], "signatures": [ @@ -22446,9 +22446,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1366, + "line": 1381, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1381" } ], "parameters": [ @@ -22527,9 +22527,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1371, + "line": 1386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1386" } ], "type": { @@ -22548,9 +22548,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1372, + "line": 1387, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1372" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1387" } ], "type": { @@ -22568,9 +22568,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1370, + "line": 1385, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1370" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1385" } ] } @@ -22593,9 +22593,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1375, + "line": 1390, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1375" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1390" } ], "type": { @@ -22612,9 +22612,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1376, + "line": 1391, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1376" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1391" } ], "type": { @@ -22634,9 +22634,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1374, + "line": 1389, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1374" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1389" } ] } @@ -22659,9 +22659,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 522, + "line": 537, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L537" } ], "signatures": [ @@ -22770,9 +22770,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 522, + "line": 537, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L537" } ], "parameters": [ @@ -22882,9 +22882,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 528, + "line": 543, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L543" } ], "type": { @@ -22905,9 +22905,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 528, + "line": 543, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L543" } ], "type": { @@ -22925,9 +22925,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 528, + "line": 543, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L543" } ] } @@ -22942,9 +22942,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 529, + "line": 544, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L544" } ], "type": { @@ -22962,9 +22962,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 527, + "line": 542, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L527" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L542" } ] } @@ -22987,9 +22987,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 532, + "line": 547, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L532" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L547" } ], "type": { @@ -23006,9 +23006,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 533, + "line": 548, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L533" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L548" } ], "type": { @@ -23028,9 +23028,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 531, + "line": 546, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L531" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L546" } ] } @@ -23053,9 +23053,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1128, + "line": 1143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1143" } ], "signatures": [ @@ -23172,9 +23172,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1128, + "line": 1143, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1128" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1143" } ], "parameters": [ @@ -23237,9 +23237,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1130, + "line": 1145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1130" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1145" } ], "type": { @@ -23261,9 +23261,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1131, + "line": 1146, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1146" } ], "type": { @@ -23281,9 +23281,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1129, + "line": 1144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1144" } ] } @@ -23306,9 +23306,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1134, + "line": 1149, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1149" } ], "type": { @@ -23325,9 +23325,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1135, + "line": 1150, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1135" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1150" } ], "type": { @@ -23347,9 +23347,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1133, + "line": 1148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1148" } ] } @@ -23377,7 +23377,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -23413,7 +23413,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -23487,7 +23487,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -23523,7 +23523,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -23552,9 +23552,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1395, + "line": 1410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1395" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1410" } ], "signatures": [ @@ -23567,9 +23567,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 1395, + "line": 1410, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1395" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1410" } ], "parameters": [ @@ -23601,9 +23601,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 461, + "line": 476, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" } ], "signatures": [ @@ -23770,9 +23770,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 461, + "line": 476, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" } ], "parameters": [ @@ -24038,9 +24038,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -24061,9 +24061,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -24080,9 +24080,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -24099,9 +24099,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ], "type": { @@ -24119,9 +24119,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 477, + "line": 492, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L492" } ] } @@ -24136,9 +24136,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 478, + "line": 493, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L493" } ], "type": { @@ -24156,9 +24156,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 476, + "line": 491, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L491" } ] } @@ -24181,9 +24181,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 481, + "line": 496, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ], "type": { @@ -24200,9 +24200,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 482, + "line": 497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L482" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L497" } ], "type": { @@ -24222,9 +24222,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 480, + "line": 495, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L495" } ] } @@ -24247,9 +24247,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 204, + "line": 219, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L219" } ], "signatures": [ @@ -24322,6 +24322,16 @@ } ] }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .upload('public/avatar1.png', avatarFile)\n\nif (error) {\n // Log the full error so fields like `statusCode` and `error` (the\n // Storage error name, e.g. \"Duplicate\") aren't hidden behind `error.message`.\n console.error(error)\n return\n}\n```" + } + ] + }, { "tag": "@remarks", "content": [ @@ -24416,9 +24426,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 204, + "line": 219, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L219" } ], "parameters": [ @@ -24525,9 +24535,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -24548,9 +24558,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -24567,9 +24577,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -24586,9 +24596,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -24606,9 +24616,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 210, + "line": 225, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ] } @@ -24623,9 +24633,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 211, + "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L226" } ], "type": { @@ -24643,9 +24653,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 209, + "line": 224, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L224" } ] } @@ -24668,9 +24678,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 214, + "line": 229, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L229" } ], "type": { @@ -24687,9 +24697,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 215, + "line": 230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L230" } ], "type": { @@ -24709,9 +24719,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 213, + "line": 228, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L228" } ] } @@ -24734,9 +24744,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 259, + "line": 274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L274" } ], "signatures": [ @@ -24837,9 +24847,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 259, + "line": 274, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L259" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L274" } ], "parameters": [ @@ -24995,7 +25005,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -25014,7 +25024,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -25036,7 +25046,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -25061,7 +25071,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -25082,9 +25092,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 324, + "line": 339, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L339" } ], "type": { @@ -25102,9 +25112,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 324, + "line": 339, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L339" } ], "type": { @@ -25123,9 +25133,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", - "line": 324, + "line": 339, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L324" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L339" } ] } @@ -25142,7 +25152,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ], "type": { @@ -25162,7 +25172,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 90, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L90" } ] } @@ -25207,7 +25217,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "extendedTypes": [ @@ -25242,7 +25252,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" } ] }, @@ -25284,7 +25294,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" } ], "signatures": [ @@ -25348,7 +25358,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L109" } ], "parameters": [ @@ -25446,7 +25456,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" } ], "signatures": [ @@ -25509,7 +25519,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L158" } ], "parameters": [ @@ -25580,7 +25590,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 242, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" } ], "signatures": [ @@ -25643,7 +25653,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 242, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L242" } ], "parameters": [ @@ -25714,7 +25724,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" } ], "signatures": [ @@ -25777,7 +25787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L132" } ], "parameters": [ @@ -25821,7 +25831,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ], "signatures": [ @@ -25884,7 +25894,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ], "parameters": [ @@ -25939,7 +25949,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ], "type": { @@ -25961,7 +25971,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 185, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L185" } ] } @@ -25998,7 +26008,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" } ], "signatures": [ @@ -26061,7 +26071,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L214" } ], "parameters": [ @@ -26140,7 +26150,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -26177,7 +26187,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -26251,7 +26261,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -26288,7 +26298,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -26334,7 +26344,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80" } ], "extendedTypes": [ @@ -26373,7 +26383,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 273, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" } ], "signatures": [ @@ -26427,7 +26437,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 273, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L273" } ], "parameters": [ @@ -26461,7 +26471,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 275, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" } ], "indexSignatures": [ @@ -26476,7 +26486,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 275, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L275" } ], "parameters": [ @@ -26764,7 +26774,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 311, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" } ], "signatures": [ @@ -26827,7 +26837,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 311, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L311" } ], "parameters": [ @@ -26915,7 +26925,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 390, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" } ], "signatures": [ @@ -26978,7 +26988,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 390, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L390" } ], "parameters": [ @@ -27049,7 +27059,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 366, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" } ], "signatures": [ @@ -27112,7 +27122,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 366, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L366" } ], "parameters": [ @@ -27167,7 +27177,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ], "type": { @@ -27189,7 +27199,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 58, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58" } ] } @@ -27226,7 +27236,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" } ], "signatures": [ @@ -27289,7 +27299,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L426" } ], "parameters": [ @@ -27333,7 +27343,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 338, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" } ], "signatures": [ @@ -27396,7 +27406,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 338, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L338" } ], "parameters": [ @@ -27490,7 +27500,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -27527,7 +27537,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -27601,7 +27611,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -27638,7 +27648,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -27684,7 +27694,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 256, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256" } ], "extendedTypes": [ @@ -27723,7 +27733,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" } ], "signatures": [ @@ -27777,7 +27787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L465" } ], "parameters": [ @@ -27811,7 +27821,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 467, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" } ], "indexSignatures": [ @@ -27826,7 +27836,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 467, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L467" } ], "parameters": [ @@ -28125,7 +28135,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" } ], "signatures": [ @@ -28188,7 +28198,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 635, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L635" } ], "parameters": [ @@ -28285,7 +28295,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 536, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" } ], "signatures": [ @@ -28348,7 +28358,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 536, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L536" } ], "parameters": [ @@ -28447,7 +28457,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 567, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" } ], "signatures": [ @@ -28510,7 +28520,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 567, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L567" } ], "parameters": [ @@ -28610,7 +28620,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 505, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" } ], "signatures": [ @@ -28673,7 +28683,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 505, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L505" } ], "parameters": [ @@ -28770,7 +28780,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 603, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" } ], "signatures": [ @@ -28833,7 +28843,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 603, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L603" } ], "parameters": [ @@ -28935,7 +28945,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "signatures": [ @@ -28972,7 +28982,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 58, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L58" } ], "parameters": [ @@ -29046,7 +29056,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "signatures": [ @@ -29083,7 +29093,7 @@ "fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts", "line": 45, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L45" } ], "type": { @@ -29129,7 +29139,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 446, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L446" } ], "extendedTypes": [ @@ -29179,7 +29189,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35" } ], "type": { @@ -29417,7 +29427,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "type": { @@ -29433,7 +29443,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "indexSignatures": [ @@ -29448,7 +29458,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 30, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30" } ], "parameters": [ @@ -29485,7 +29495,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 26, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26" } ] } @@ -29505,7 +29515,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1" } ] }, @@ -29534,7 +29544,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" } ], "signatures": [ @@ -29549,7 +29559,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L8" } ], "parameters": [ @@ -29572,7 +29582,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 9, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" } ], "signatures": [ @@ -29587,7 +29597,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 9, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L9" } ], "type": { @@ -29650,7 +29660,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "type": { @@ -29675,7 +29685,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" } ], "signatures": [ @@ -29709,7 +29719,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L22" } ], "typeParameters": [ @@ -29762,7 +29772,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 23, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" } ], "signatures": [ @@ -29777,7 +29787,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 23, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L23" } ], "parameters": [ @@ -29901,7 +29911,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "signatures": [ @@ -29935,7 +29945,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "parameters": [ @@ -29975,7 +29985,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "signatures": [ @@ -29990,7 +30000,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 28, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L28" } ], "type": { @@ -30063,7 +30073,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" } ], "signatures": [ @@ -30097,7 +30107,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L13" } ], "typeParameters": [ @@ -30180,7 +30190,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 15, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" } ], "signatures": [ @@ -30195,7 +30205,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 15, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L15" } ], "parameters": [ @@ -30303,7 +30313,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 17, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" } ], "signatures": [ @@ -30318,7 +30328,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 17, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L17" } ], "parameters": [ @@ -30435,7 +30445,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 4, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" } ], "implementedTypes": [ @@ -30481,7 +30491,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" } ] }, @@ -30496,7 +30506,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1" } ] }, @@ -30511,7 +30521,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorDataApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorDataApi.ts#L1" } ] }, @@ -30553,7 +30563,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25" } ], "type": { @@ -30578,7 +30588,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26" } ], "type": { @@ -30601,7 +30611,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27" } ], "type": { @@ -30626,7 +30636,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24" } ], "type": { @@ -30651,7 +30661,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28" } ], "type": { @@ -30676,7 +30686,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23" } ], "type": { @@ -30696,7 +30706,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22" } ] } @@ -30712,7 +30722,7 @@ "fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/supabase.json b/apps/docs/spec/enrichments/tsdoc_v2/supabase.json index 6a8b50cfa26da..3716a5110c90a 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/supabase.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/supabase.json @@ -51,7 +51,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/cors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/cors.ts#L54" } ], "type": { @@ -116,7 +116,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/cors.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/cors.ts#L80" } ], "type": { @@ -153,7 +153,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/cors.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/cors.ts#L1" } ] }, @@ -459,14 +459,14 @@ ] }, { - "id": 3371, + "id": 3393, "name": "REALTIME_LISTEN_TYPES", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3372, + "id": 3394, "name": "BROADCAST", "variant": "declaration", "kind": 16, @@ -484,7 +484,7 @@ } }, { - "id": 3374, + "id": 3396, "name": "POSTGRES_CHANGES", "variant": "declaration", "kind": 16, @@ -502,7 +502,7 @@ } }, { - "id": 3373, + "id": 3395, "name": "PRESENCE", "variant": "declaration", "kind": 16, @@ -520,7 +520,7 @@ } }, { - "id": 3375, + "id": 3397, "name": "SYSTEM", "variant": "declaration", "kind": 16, @@ -541,7 +541,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3372, 3374, 3373, 3375] + "children": [3394, 3396, 3395, 3397] } ], "sources": [ @@ -553,14 +553,14 @@ ] }, { - "id": 3376, + "id": 3398, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3377, + "id": 3399, "name": "ALL", "variant": "declaration", "kind": 16, @@ -578,7 +578,7 @@ } }, { - "id": 3380, + "id": 3402, "name": "DELETE", "variant": "declaration", "kind": 16, @@ -596,7 +596,7 @@ } }, { - "id": 3378, + "id": 3400, "name": "INSERT", "variant": "declaration", "kind": 16, @@ -614,7 +614,7 @@ } }, { - "id": 3379, + "id": 3401, "name": "UPDATE", "variant": "declaration", "kind": 16, @@ -635,7 +635,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3377, 3380, 3378, 3379] + "children": [3399, 3402, 3400, 3401] } ], "sources": [ @@ -647,14 +647,14 @@ ] }, { - "id": 3381, + "id": 3403, "name": "REALTIME_PRESENCE_LISTEN_EVENTS", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3383, + "id": 3405, "name": "JOIN", "variant": "declaration", "kind": 16, @@ -672,7 +672,7 @@ } }, { - "id": 3384, + "id": 3406, "name": "LEAVE", "variant": "declaration", "kind": 16, @@ -690,7 +690,7 @@ } }, { - "id": 3382, + "id": 3404, "name": "SYNC", "variant": "declaration", "kind": 16, @@ -711,7 +711,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3383, 3384, 3382] + "children": [3405, 3406, 3404] } ], "sources": [ @@ -723,14 +723,14 @@ ] }, { - "id": 3385, + "id": 3407, "name": "REALTIME_SUBSCRIBE_STATES", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3389, + "id": 3411, "name": "CHANNEL_ERROR", "variant": "declaration", "kind": 16, @@ -748,7 +748,7 @@ } }, { - "id": 3388, + "id": 3410, "name": "CLOSED", "variant": "declaration", "kind": 16, @@ -766,7 +766,7 @@ } }, { - "id": 3386, + "id": 3408, "name": "SUBSCRIBED", "variant": "declaration", "kind": 16, @@ -784,7 +784,7 @@ } }, { - "id": 3387, + "id": 3409, "name": "TIMED_OUT", "variant": "declaration", "kind": 16, @@ -805,7 +805,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3389, 3388, 3386, 3387] + "children": [3411, 3410, 3408, 3409] } ], "sources": [ @@ -817,7 +817,7 @@ ] }, { - "id": 2556, + "id": 2561, "name": "AuthApiError", "variant": "declaration", "kind": 128, @@ -843,7 +843,7 @@ }, "children": [ { - "id": 2557, + "id": 2562, "name": "constructor", "variant": "declaration", "kind": 512, @@ -857,7 +857,7 @@ ], "signatures": [ { - "id": 2558, + "id": 2563, "name": "AuthApiError", "variant": "signature", "kind": 16384, @@ -871,7 +871,7 @@ ], "parameters": [ { - "id": 2559, + "id": 2564, "name": "message", "variant": "param", "kind": 32768, @@ -882,7 +882,7 @@ } }, { - "id": 2560, + "id": 2565, "name": "status", "variant": "param", "kind": 32768, @@ -893,7 +893,7 @@ } }, { - "id": 2561, + "id": 2566, "name": "code", "variant": "param", "kind": 32768, @@ -915,25 +915,25 @@ ], "type": { "type": "reference", - "target": 2556, + "target": 2561, "name": "AuthApiError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2540, + "target": 2545, "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2539, + "target": 2544, "name": "AuthError.constructor" } }, { - "id": 2565, + "id": 2570, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -954,12 +954,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2547, + "target": 2552, "name": "AuthError.__isAuthError" } }, { - "id": 2563, + "id": 2568, "name": "code", "variant": "declaration", "kind": 1024, @@ -1016,7 +1016,7 @@ { "type": "reflection", "declaration": { - "id": 2564, + "id": 2569, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1029,12 +1029,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2544, + "target": 2549, "name": "AuthError.code" } }, { - "id": 2562, + "id": 2567, "name": "status", "variant": "declaration", "kind": 1024, @@ -1060,12 +1060,12 @@ }, "overwrites": { "type": "reference", - "target": 2546, + "target": 2551, "name": "AuthError.status" } }, { - "id": 2566, + "id": 2571, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1081,7 +1081,7 @@ ], "signatures": [ { - "id": 2567, + "id": 2572, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1098,14 +1098,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2568, + "id": 2573, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2572, + "id": 2577, "name": "code", "variant": "declaration", "kind": 1024, @@ -1143,7 +1143,7 @@ { "type": "reflection", "declaration": { - "id": 2573, + "id": 2578, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1156,7 +1156,7 @@ } }, { - "id": 2570, + "id": 2575, "name": "message", "variant": "declaration", "kind": 1024, @@ -1174,7 +1174,7 @@ } }, { - "id": 2569, + "id": 2574, "name": "name", "variant": "declaration", "kind": 1024, @@ -1192,7 +1192,7 @@ } }, { - "id": 2571, + "id": 2576, "name": "status", "variant": "declaration", "kind": 1024, @@ -1222,7 +1222,7 @@ "groups": [ { "title": "Properties", - "children": [2572, 2570, 2569, 2571] + "children": [2577, 2575, 2574, 2576] } ], "sources": [ @@ -1236,14 +1236,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2549, + "target": 2554, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2548, + "target": 2553, "name": "AuthError.toJSON" } } @@ -1251,15 +1251,15 @@ "groups": [ { "title": "Constructors", - "children": [2557] + "children": [2562] }, { "title": "Properties", - "children": [2565, 2563, 2562] + "children": [2570, 2568, 2567] }, { "title": "Methods", - "children": [2566] + "children": [2571] } ], "sources": [ @@ -1272,14 +1272,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2538, + "id": 2543, "name": "AuthError", "variant": "declaration", "kind": 128, @@ -1305,7 +1305,7 @@ }, "children": [ { - "id": 2539, + "id": 2544, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1319,7 +1319,7 @@ ], "signatures": [ { - "id": 2540, + "id": 2545, "name": "AuthError", "variant": "signature", "kind": 16384, @@ -1333,7 +1333,7 @@ ], "parameters": [ { - "id": 2541, + "id": 2546, "name": "message", "variant": "param", "kind": 32768, @@ -1344,7 +1344,7 @@ } }, { - "id": 2542, + "id": 2547, "name": "status", "variant": "param", "kind": 32768, @@ -1357,7 +1357,7 @@ } }, { - "id": 2543, + "id": 2548, "name": "code", "variant": "param", "kind": 32768, @@ -1372,7 +1372,7 @@ ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -1390,7 +1390,7 @@ } }, { - "id": 2547, + "id": 2552, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -1410,7 +1410,7 @@ } }, { - "id": 2544, + "id": 2549, "name": "code", "variant": "declaration", "kind": 1024, @@ -1465,7 +1465,7 @@ { "type": "reflection", "declaration": { - "id": 2545, + "id": 2550, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1478,7 +1478,7 @@ } }, { - "id": 2546, + "id": 2551, "name": "status", "variant": "declaration", "kind": 1024, @@ -1513,7 +1513,7 @@ } }, { - "id": 2548, + "id": 2553, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1527,7 +1527,7 @@ ], "signatures": [ { - "id": 2549, + "id": 2554, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1542,14 +1542,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2550, + "id": 2555, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2554, + "id": 2559, "name": "code", "variant": "declaration", "kind": 1024, @@ -1587,7 +1587,7 @@ { "type": "reflection", "declaration": { - "id": 2555, + "id": 2560, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1600,7 +1600,7 @@ } }, { - "id": 2552, + "id": 2557, "name": "message", "variant": "declaration", "kind": 1024, @@ -1618,7 +1618,7 @@ } }, { - "id": 2551, + "id": 2556, "name": "name", "variant": "declaration", "kind": 1024, @@ -1636,7 +1636,7 @@ } }, { - "id": 2553, + "id": 2558, "name": "status", "variant": "declaration", "kind": 1024, @@ -1666,7 +1666,7 @@ "groups": [ { "title": "Properties", - "children": [2554, 2552, 2551, 2553] + "children": [2559, 2557, 2556, 2558] } ], "sources": [ @@ -1685,15 +1685,15 @@ "groups": [ { "title": "Constructors", - "children": [2539] + "children": [2544] }, { "title": "Properties", - "children": [2547, 2544, 2546] + "children": [2552, 2549, 2551] }, { "title": "Methods", - "children": [2548] + "children": [2553] } ], "sources": [ @@ -1717,23 +1717,23 @@ "extendedBy": [ { "type": "reference", - "target": 2556, + "target": 2561, "name": "AuthApiError" }, { "type": "reference", - "target": 2574, + "target": 2579, "name": "AuthUnknownError" }, { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError" } ] }, { - "id": 2661, + "id": 2666, "name": "AuthImplicitGrantRedirectError", "variant": "declaration", "kind": 128, @@ -1759,7 +1759,7 @@ }, "children": [ { - "id": 2662, + "id": 2667, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1773,7 +1773,7 @@ ], "signatures": [ { - "id": 2663, + "id": 2668, "name": "AuthImplicitGrantRedirectError", "variant": "signature", "kind": 16384, @@ -1787,7 +1787,7 @@ ], "parameters": [ { - "id": 2664, + "id": 2669, "name": "message", "variant": "param", "kind": 32768, @@ -1798,7 +1798,7 @@ } }, { - "id": 2665, + "id": 2670, "name": "details", "variant": "param", "kind": 32768, @@ -1815,14 +1815,14 @@ { "type": "reflection", "declaration": { - "id": 2666, + "id": 2671, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2668, + "id": 2673, "name": "code", "variant": "declaration", "kind": 1024, @@ -1840,7 +1840,7 @@ } }, { - "id": 2667, + "id": 2672, "name": "error", "variant": "declaration", "kind": 1024, @@ -1861,7 +1861,7 @@ "groups": [ { "title": "Properties", - "children": [2668, 2667] + "children": [2673, 2672] } ], "sources": [ @@ -1879,25 +1879,25 @@ ], "type": { "type": "reference", - "target": 2661, + "target": 2666, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2689, + "id": 2694, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -1918,12 +1918,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2687, + "id": 2692, "name": "code", "variant": "declaration", "kind": 1024, @@ -1980,7 +1980,7 @@ { "type": "reflection", "declaration": { - "id": 2688, + "id": 2693, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1993,12 +1993,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2669, + "id": 2674, "name": "details", "variant": "declaration", "kind": 1024, @@ -2020,14 +2020,14 @@ { "type": "reflection", "declaration": { - "id": 2670, + "id": 2675, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2672, + "id": 2677, "name": "code", "variant": "declaration", "kind": 1024, @@ -2045,7 +2045,7 @@ } }, { - "id": 2671, + "id": 2676, "name": "error", "variant": "declaration", "kind": 1024, @@ -2066,7 +2066,7 @@ "groups": [ { "title": "Properties", - "children": [2672, 2671] + "children": [2677, 2676] } ], "sources": [ @@ -2082,7 +2082,7 @@ } }, { - "id": 2685, + "id": 2690, "name": "name", "variant": "declaration", "kind": 1024, @@ -2102,12 +2102,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2686, + "id": 2691, "name": "status", "variant": "declaration", "kind": 1024, @@ -2135,12 +2135,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2673, + "id": 2678, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2154,7 +2154,7 @@ ], "signatures": [ { - "id": 2674, + "id": 2679, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2169,14 +2169,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2675, + "id": 2680, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2679, + "id": 2684, "name": "code", "variant": "declaration", "kind": 1024, @@ -2214,7 +2214,7 @@ { "type": "reflection", "declaration": { - "id": 2680, + "id": 2685, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2227,7 +2227,7 @@ } }, { - "id": 2681, + "id": 2686, "name": "details", "variant": "declaration", "kind": 1024, @@ -2249,14 +2249,14 @@ { "type": "reflection", "declaration": { - "id": 2682, + "id": 2687, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2684, + "id": 2689, "name": "code", "variant": "declaration", "kind": 1024, @@ -2274,7 +2274,7 @@ } }, { - "id": 2683, + "id": 2688, "name": "error", "variant": "declaration", "kind": 1024, @@ -2295,7 +2295,7 @@ "groups": [ { "title": "Properties", - "children": [2684, 2683] + "children": [2689, 2688] } ], "sources": [ @@ -2311,7 +2311,7 @@ } }, { - "id": 2677, + "id": 2682, "name": "message", "variant": "declaration", "kind": 1024, @@ -2329,7 +2329,7 @@ } }, { - "id": 2676, + "id": 2681, "name": "name", "variant": "declaration", "kind": 1024, @@ -2347,7 +2347,7 @@ } }, { - "id": 2678, + "id": 2683, "name": "status", "variant": "declaration", "kind": 1024, @@ -2377,7 +2377,7 @@ "groups": [ { "title": "Properties", - "children": [2679, 2681, 2677, 2676, 2678] + "children": [2684, 2686, 2682, 2681, 2683] } ], "sources": [ @@ -2391,14 +2391,14 @@ }, "overwrites": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -2406,15 +2406,15 @@ "groups": [ { "title": "Constructors", - "children": [2662] + "children": [2667] }, { "title": "Properties", - "children": [2689, 2687, 2669, 2685, 2686] + "children": [2694, 2692, 2674, 2690, 2691] }, { "title": "Methods", - "children": [2673] + "children": [2678] } ], "sources": [ @@ -2427,14 +2427,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2644, + "id": 2649, "name": "AuthInvalidCredentialsError", "variant": "declaration", "kind": 128, @@ -2460,7 +2460,7 @@ }, "children": [ { - "id": 2645, + "id": 2650, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2474,7 +2474,7 @@ ], "signatures": [ { - "id": 2646, + "id": 2651, "name": "AuthInvalidCredentialsError", "variant": "signature", "kind": 16384, @@ -2488,7 +2488,7 @@ ], "parameters": [ { - "id": 2647, + "id": 2652, "name": "message", "variant": "param", "kind": 32768, @@ -2501,25 +2501,25 @@ ], "type": { "type": "reference", - "target": 2644, + "target": 2649, "name": "AuthInvalidCredentialsError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2652, + "id": 2657, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -2540,12 +2540,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2650, + "id": 2655, "name": "code", "variant": "declaration", "kind": 1024, @@ -2602,7 +2602,7 @@ { "type": "reflection", "declaration": { - "id": 2651, + "id": 2656, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2615,12 +2615,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2648, + "id": 2653, "name": "name", "variant": "declaration", "kind": 1024, @@ -2640,12 +2640,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2649, + "id": 2654, "name": "status", "variant": "declaration", "kind": 1024, @@ -2673,12 +2673,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2653, + "id": 2658, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2694,7 +2694,7 @@ ], "signatures": [ { - "id": 2654, + "id": 2659, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2711,14 +2711,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2655, + "id": 2660, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2659, + "id": 2664, "name": "code", "variant": "declaration", "kind": 1024, @@ -2756,7 +2756,7 @@ { "type": "reflection", "declaration": { - "id": 2660, + "id": 2665, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2769,7 +2769,7 @@ } }, { - "id": 2657, + "id": 2662, "name": "message", "variant": "declaration", "kind": 1024, @@ -2787,7 +2787,7 @@ } }, { - "id": 2656, + "id": 2661, "name": "name", "variant": "declaration", "kind": 1024, @@ -2805,7 +2805,7 @@ } }, { - "id": 2658, + "id": 2663, "name": "status", "variant": "declaration", "kind": 1024, @@ -2835,7 +2835,7 @@ "groups": [ { "title": "Properties", - "children": [2659, 2657, 2656, 2658] + "children": [2664, 2662, 2661, 2663] } ], "sources": [ @@ -2849,14 +2849,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -2864,15 +2864,15 @@ "groups": [ { "title": "Constructors", - "children": [2645] + "children": [2650] }, { "title": "Properties", - "children": [2652, 2650, 2648, 2649] + "children": [2657, 2655, 2653, 2654] }, { "title": "Methods", - "children": [2653] + "children": [2658] } ], "sources": [ @@ -2885,14 +2885,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2774, + "id": 2796, "name": "AuthInvalidJwtError", "variant": "declaration", "kind": 128, @@ -2918,7 +2918,7 @@ }, "children": [ { - "id": 2775, + "id": 2797, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2926,13 +2926,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 256, + "line": 280, "character": 4 } ], "signatures": [ { - "id": 2776, + "id": 2798, "name": "AuthInvalidJwtError", "variant": "signature", "kind": 16384, @@ -2940,13 +2940,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 256, + "line": 280, "character": 4 } ], "parameters": [ { - "id": 2777, + "id": 2799, "name": "message", "variant": "param", "kind": 32768, @@ -2959,25 +2959,25 @@ ], "type": { "type": "reference", - "target": 2774, + "target": 2796, "name": "AuthInvalidJwtError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2782, + "id": 2804, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -2998,12 +2998,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2780, + "id": 2802, "name": "code", "variant": "declaration", "kind": 1024, @@ -3060,7 +3060,7 @@ { "type": "reflection", "declaration": { - "id": 2781, + "id": 2803, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3073,12 +3073,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2778, + "id": 2800, "name": "name", "variant": "declaration", "kind": 1024, @@ -3098,12 +3098,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2779, + "id": 2801, "name": "status", "variant": "declaration", "kind": 1024, @@ -3131,12 +3131,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2783, + "id": 2805, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3152,7 +3152,7 @@ ], "signatures": [ { - "id": 2784, + "id": 2806, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3169,14 +3169,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2785, + "id": 2807, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2789, + "id": 2811, "name": "code", "variant": "declaration", "kind": 1024, @@ -3214,7 +3214,7 @@ { "type": "reflection", "declaration": { - "id": 2790, + "id": 2812, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3227,7 +3227,7 @@ } }, { - "id": 2787, + "id": 2809, "name": "message", "variant": "declaration", "kind": 1024, @@ -3245,7 +3245,7 @@ } }, { - "id": 2786, + "id": 2808, "name": "name", "variant": "declaration", "kind": 1024, @@ -3263,7 +3263,7 @@ } }, { - "id": 2788, + "id": 2810, "name": "status", "variant": "declaration", "kind": 1024, @@ -3293,7 +3293,7 @@ "groups": [ { "title": "Properties", - "children": [2789, 2787, 2786, 2788] + "children": [2811, 2809, 2808, 2810] } ], "sources": [ @@ -3307,14 +3307,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -3322,35 +3322,35 @@ "groups": [ { "title": "Constructors", - "children": [2775] + "children": [2797] }, { "title": "Properties", - "children": [2782, 2780, 2778, 2779] + "children": [2804, 2802, 2800, 2801] }, { "title": "Methods", - "children": [2783] + "children": [2805] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 255, + "line": 279, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2628, + "id": 2633, "name": "AuthInvalidTokenResponseError", "variant": "declaration", "kind": 128, @@ -3376,7 +3376,7 @@ }, "children": [ { - "id": 2629, + "id": 2634, "name": "constructor", "variant": "declaration", "kind": 512, @@ -3390,7 +3390,7 @@ ], "signatures": [ { - "id": 2630, + "id": 2635, "name": "AuthInvalidTokenResponseError", "variant": "signature", "kind": 16384, @@ -3404,25 +3404,25 @@ ], "type": { "type": "reference", - "target": 2628, + "target": 2633, "name": "AuthInvalidTokenResponseError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2635, + "id": 2640, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -3443,12 +3443,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2633, + "id": 2638, "name": "code", "variant": "declaration", "kind": 1024, @@ -3505,7 +3505,7 @@ { "type": "reflection", "declaration": { - "id": 2634, + "id": 2639, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3518,12 +3518,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2631, + "id": 2636, "name": "name", "variant": "declaration", "kind": 1024, @@ -3543,12 +3543,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2632, + "id": 2637, "name": "status", "variant": "declaration", "kind": 1024, @@ -3576,12 +3576,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2636, + "id": 2641, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3597,7 +3597,7 @@ ], "signatures": [ { - "id": 2637, + "id": 2642, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3614,14 +3614,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2638, + "id": 2643, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2642, + "id": 2647, "name": "code", "variant": "declaration", "kind": 1024, @@ -3659,7 +3659,7 @@ { "type": "reflection", "declaration": { - "id": 2643, + "id": 2648, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3672,7 +3672,7 @@ } }, { - "id": 2640, + "id": 2645, "name": "message", "variant": "declaration", "kind": 1024, @@ -3690,7 +3690,7 @@ } }, { - "id": 2639, + "id": 2644, "name": "name", "variant": "declaration", "kind": 1024, @@ -3708,7 +3708,7 @@ } }, { - "id": 2641, + "id": 2646, "name": "status", "variant": "declaration", "kind": 1024, @@ -3738,7 +3738,7 @@ "groups": [ { "title": "Properties", - "children": [2642, 2640, 2639, 2641] + "children": [2647, 2645, 2644, 2646] } ], "sources": [ @@ -3752,14 +3752,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -3767,15 +3767,15 @@ "groups": [ { "title": "Constructors", - "children": [2629] + "children": [2634] }, { "title": "Properties", - "children": [2635, 2633, 2631, 2632] + "children": [2640, 2638, 2636, 2637] }, { "title": "Methods", - "children": [2636] + "children": [2641] } ], "sources": [ @@ -3788,14 +3788,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2719, + "id": 2724, "name": "AuthPKCECodeVerifierMissingError", "variant": "declaration", "kind": 128, @@ -3821,7 +3821,7 @@ }, "children": [ { - "id": 2720, + "id": 2725, "name": "constructor", "variant": "declaration", "kind": 512, @@ -3835,7 +3835,7 @@ ], "signatures": [ { - "id": 2721, + "id": 2726, "name": "AuthPKCECodeVerifierMissingError", "variant": "signature", "kind": 16384, @@ -3849,25 +3849,25 @@ ], "type": { "type": "reference", - "target": 2719, + "target": 2724, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2726, + "id": 2731, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -3888,12 +3888,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2724, + "id": 2729, "name": "code", "variant": "declaration", "kind": 1024, @@ -3950,7 +3950,7 @@ { "type": "reflection", "declaration": { - "id": 2725, + "id": 2730, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3963,12 +3963,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2722, + "id": 2727, "name": "name", "variant": "declaration", "kind": 1024, @@ -3988,12 +3988,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2723, + "id": 2728, "name": "status", "variant": "declaration", "kind": 1024, @@ -4021,12 +4021,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2727, + "id": 2732, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4042,7 +4042,7 @@ ], "signatures": [ { - "id": 2728, + "id": 2733, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4059,14 +4059,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2729, + "id": 2734, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2733, + "id": 2738, "name": "code", "variant": "declaration", "kind": 1024, @@ -4104,7 +4104,7 @@ { "type": "reflection", "declaration": { - "id": 2734, + "id": 2739, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4117,7 +4117,7 @@ } }, { - "id": 2731, + "id": 2736, "name": "message", "variant": "declaration", "kind": 1024, @@ -4135,7 +4135,7 @@ } }, { - "id": 2730, + "id": 2735, "name": "name", "variant": "declaration", "kind": 1024, @@ -4153,7 +4153,7 @@ } }, { - "id": 2732, + "id": 2737, "name": "status", "variant": "declaration", "kind": 1024, @@ -4183,7 +4183,7 @@ "groups": [ { "title": "Properties", - "children": [2733, 2731, 2730, 2732] + "children": [2738, 2736, 2735, 2737] } ], "sources": [ @@ -4197,14 +4197,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -4212,15 +4212,15 @@ "groups": [ { "title": "Constructors", - "children": [2720] + "children": [2725] }, { "title": "Properties", - "children": [2726, 2724, 2722, 2723] + "children": [2731, 2729, 2727, 2728] }, { "title": "Methods", - "children": [2727] + "children": [2732] } ], "sources": [ @@ -4233,14 +4233,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2690, + "id": 2695, "name": "AuthPKCEGrantCodeExchangeError", "variant": "declaration", "kind": 128, @@ -4266,7 +4266,7 @@ }, "children": [ { - "id": 2691, + "id": 2696, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4280,7 +4280,7 @@ ], "signatures": [ { - "id": 2692, + "id": 2697, "name": "AuthPKCEGrantCodeExchangeError", "variant": "signature", "kind": 16384, @@ -4294,7 +4294,7 @@ ], "parameters": [ { - "id": 2693, + "id": 2698, "name": "message", "variant": "param", "kind": 32768, @@ -4305,7 +4305,7 @@ } }, { - "id": 2694, + "id": 2699, "name": "details", "variant": "param", "kind": 32768, @@ -4322,14 +4322,14 @@ { "type": "reflection", "declaration": { - "id": 2695, + "id": 2700, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2697, + "id": 2702, "name": "code", "variant": "declaration", "kind": 1024, @@ -4347,7 +4347,7 @@ } }, { - "id": 2696, + "id": 2701, "name": "error", "variant": "declaration", "kind": 1024, @@ -4368,7 +4368,7 @@ "groups": [ { "title": "Properties", - "children": [2697, 2696] + "children": [2702, 2701] } ], "sources": [ @@ -4386,25 +4386,25 @@ ], "type": { "type": "reference", - "target": 2690, + "target": 2695, "name": "AuthPKCEGrantCodeExchangeError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2718, + "id": 2723, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -4425,12 +4425,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2716, + "id": 2721, "name": "code", "variant": "declaration", "kind": 1024, @@ -4487,7 +4487,7 @@ { "type": "reflection", "declaration": { - "id": 2717, + "id": 2722, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4500,12 +4500,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2698, + "id": 2703, "name": "details", "variant": "declaration", "kind": 1024, @@ -4527,14 +4527,14 @@ { "type": "reflection", "declaration": { - "id": 2699, + "id": 2704, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2701, + "id": 2706, "name": "code", "variant": "declaration", "kind": 1024, @@ -4552,7 +4552,7 @@ } }, { - "id": 2700, + "id": 2705, "name": "error", "variant": "declaration", "kind": 1024, @@ -4573,7 +4573,7 @@ "groups": [ { "title": "Properties", - "children": [2701, 2700] + "children": [2706, 2705] } ], "sources": [ @@ -4589,7 +4589,7 @@ } }, { - "id": 2714, + "id": 2719, "name": "name", "variant": "declaration", "kind": 1024, @@ -4609,12 +4609,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2715, + "id": 2720, "name": "status", "variant": "declaration", "kind": 1024, @@ -4642,12 +4642,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2702, + "id": 2707, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4661,7 +4661,7 @@ ], "signatures": [ { - "id": 2703, + "id": 2708, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4676,14 +4676,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2704, + "id": 2709, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2708, + "id": 2713, "name": "code", "variant": "declaration", "kind": 1024, @@ -4721,7 +4721,7 @@ { "type": "reflection", "declaration": { - "id": 2709, + "id": 2714, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4734,7 +4734,7 @@ } }, { - "id": 2710, + "id": 2715, "name": "details", "variant": "declaration", "kind": 1024, @@ -4756,14 +4756,14 @@ { "type": "reflection", "declaration": { - "id": 2711, + "id": 2716, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2713, + "id": 2718, "name": "code", "variant": "declaration", "kind": 1024, @@ -4781,7 +4781,7 @@ } }, { - "id": 2712, + "id": 2717, "name": "error", "variant": "declaration", "kind": 1024, @@ -4802,7 +4802,7 @@ "groups": [ { "title": "Properties", - "children": [2713, 2712] + "children": [2718, 2717] } ], "sources": [ @@ -4818,7 +4818,7 @@ } }, { - "id": 2706, + "id": 2711, "name": "message", "variant": "declaration", "kind": 1024, @@ -4836,7 +4836,7 @@ } }, { - "id": 2705, + "id": 2710, "name": "name", "variant": "declaration", "kind": 1024, @@ -4854,7 +4854,7 @@ } }, { - "id": 2707, + "id": 2712, "name": "status", "variant": "declaration", "kind": 1024, @@ -4884,7 +4884,7 @@ "groups": [ { "title": "Properties", - "children": [2708, 2710, 2706, 2705, 2707] + "children": [2713, 2715, 2711, 2710, 2712] } ], "sources": [ @@ -4898,14 +4898,14 @@ }, "overwrites": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -4913,15 +4913,15 @@ "groups": [ { "title": "Constructors", - "children": [2691] + "children": [2696] }, { "title": "Properties", - "children": [2718, 2716, 2698, 2714, 2715] + "children": [2723, 2721, 2703, 2719, 2720] }, { "title": "Methods", - "children": [2702] + "children": [2707] } ], "sources": [ @@ -4934,15 +4934,15 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2735, - "name": "AuthRetryableFetchError", + "id": 2758, + "name": "AuthRefreshDiscardedError", "variant": "declaration", "kind": 128, "flags": {}, @@ -4950,7 +4950,23 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a transient fetch issue occurs." + "text": "Returned when the server rotated a refresh token successfully but the\nclient chose not to persist the rotated tokens because the local session\nchanged mid-flight. Usually means a concurrent " + }, + { + "kind": "code", + "text": "`signOut`" + }, + { + "kind": "text", + "text": " cleared storage\nbetween when the refresh started and when it came back.\n\nSet on the " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " field of the refresh result so callers can tell \"we\ngot rotated tokens but threw them away\" apart from \"the refresh failed.\"\nThe rotated session on the server will be picked up on the next refresh\nvia GoTrue's parent-of-active path." } ], "blockTags": [ @@ -4959,7 +4975,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" + "text": "```ts\nimport { isAuthRefreshDiscardedError } from '@supabase/auth-js'\n\nif (isAuthRefreshDiscardedError(error)) {\n // Concurrent signOut/sign-in raced our refresh. Treat as a no-op.\n}\n```" } ] } @@ -4967,7 +4983,7 @@ }, "children": [ { - "id": 2736, + "id": 2759, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4975,69 +4991,60 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 212, + "line": 236, "character": 4 } ], "signatures": [ { - "id": 2737, - "name": "AuthRetryableFetchError", + "id": 2760, + "name": "AuthRefreshDiscardedError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 212, + "line": 236, "character": 4 } ], "parameters": [ { - "id": 2738, + "id": 2761, "name": "message", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", "name": "string" } - }, - { - "id": 2739, - "name": "status", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } } ], "type": { "type": "reference", - "target": 2735, - "name": "AuthRetryableFetchError", + "target": 2758, + "name": "AuthRefreshDiscardedError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2744, + "id": 2766, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -5058,12 +5065,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2742, + "id": 2764, "name": "code", "variant": "declaration", "kind": 1024, @@ -5120,7 +5127,7 @@ { "type": "reflection", "declaration": { - "id": 2743, + "id": 2765, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5133,12 +5140,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2740, + "id": 2762, "name": "name", "variant": "declaration", "kind": 1024, @@ -5158,12 +5165,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2741, + "id": 2763, "name": "status", "variant": "declaration", "kind": 1024, @@ -5191,12 +5198,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2745, + "id": 2767, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -5212,7 +5219,7 @@ ], "signatures": [ { - "id": 2746, + "id": 2768, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -5229,14 +5236,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2747, + "id": 2769, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2751, + "id": 2773, "name": "code", "variant": "declaration", "kind": 1024, @@ -5274,7 +5281,7 @@ { "type": "reflection", "declaration": { - "id": 2752, + "id": 2774, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5287,7 +5294,7 @@ } }, { - "id": 2749, + "id": 2771, "name": "message", "variant": "declaration", "kind": 1024, @@ -5305,7 +5312,7 @@ } }, { - "id": 2748, + "id": 2770, "name": "name", "variant": "declaration", "kind": 1024, @@ -5323,7 +5330,7 @@ } }, { - "id": 2750, + "id": 2772, "name": "status", "variant": "declaration", "kind": 1024, @@ -5353,7 +5360,7 @@ "groups": [ { "title": "Properties", - "children": [2751, 2749, 2748, 2750] + "children": [2773, 2771, 2770, 2772] } ], "sources": [ @@ -5367,14 +5374,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -5382,36 +5389,36 @@ "groups": [ { "title": "Constructors", - "children": [2736] + "children": [2759] }, { "title": "Properties", - "children": [2744, 2742, 2740, 2741] + "children": [2766, 2764, 2762, 2763] }, { "title": "Methods", - "children": [2745] + "children": [2767] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 211, + "line": 235, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2612, - "name": "AuthSessionMissingError", + "id": 2740, + "name": "AuthRetryableFetchError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5419,7 +5426,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when an operation requires a session but none is present." + "text": "Error thrown when a transient fetch issue occurs." } ], "blockTags": [ @@ -5428,7 +5435,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" + "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" } ] } @@ -5436,7 +5443,7 @@ }, "children": [ { - "id": 2613, + "id": 2741, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5444,45 +5451,69 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 92, + "line": 212, "character": 4 } ], "signatures": [ { - "id": 2614, - "name": "AuthSessionMissingError", + "id": 2742, + "name": "AuthRetryableFetchError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 92, + "line": 212, "character": 4 } ], + "parameters": [ + { + "id": 2743, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2744, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], "type": { "type": "reference", - "target": 2612, - "name": "AuthSessionMissingError", + "target": 2740, + "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2619, + "id": 2749, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -5503,12 +5534,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2617, + "id": 2747, "name": "code", "variant": "declaration", "kind": 1024, @@ -5565,7 +5596,7 @@ { "type": "reflection", "declaration": { - "id": 2618, + "id": 2748, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5578,12 +5609,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2615, + "id": 2745, "name": "name", "variant": "declaration", "kind": 1024, @@ -5603,12 +5634,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2616, + "id": 2746, "name": "status", "variant": "declaration", "kind": 1024, @@ -5636,12 +5667,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2620, + "id": 2750, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -5657,7 +5688,7 @@ ], "signatures": [ { - "id": 2621, + "id": 2751, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -5674,14 +5705,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2622, + "id": 2752, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2626, + "id": 2756, "name": "code", "variant": "declaration", "kind": 1024, @@ -5719,7 +5750,7 @@ { "type": "reflection", "declaration": { - "id": 2627, + "id": 2757, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5732,7 +5763,7 @@ } }, { - "id": 2624, + "id": 2754, "name": "message", "variant": "declaration", "kind": 1024, @@ -5750,7 +5781,7 @@ } }, { - "id": 2623, + "id": 2753, "name": "name", "variant": "declaration", "kind": 1024, @@ -5768,7 +5799,7 @@ } }, { - "id": 2625, + "id": 2755, "name": "status", "variant": "declaration", "kind": 1024, @@ -5798,7 +5829,7 @@ "groups": [ { "title": "Properties", - "children": [2626, 2624, 2623, 2625] + "children": [2756, 2754, 2753, 2755] } ], "sources": [ @@ -5812,14 +5843,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -5827,36 +5858,36 @@ "groups": [ { "title": "Constructors", - "children": [2613] + "children": [2741] }, { "title": "Properties", - "children": [2619, 2617, 2615, 2616] + "children": [2749, 2747, 2745, 2746] }, { "title": "Methods", - "children": [2620] + "children": [2750] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 91, + "line": 211, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2574, - "name": "AuthUnknownError", + "id": 2617, + "name": "AuthSessionMissingError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5864,7 +5895,7 @@ "summary": [ { "kind": "text", - "text": "Wraps non-standard errors so callers can inspect the root cause." + "text": "Error thrown when an operation requires a session but none is present." } ], "blockTags": [ @@ -5873,7 +5904,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" + "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" } ] } @@ -5881,7 +5912,7 @@ }, "children": [ { - "id": 2575, + "id": 2618, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5889,69 +5920,45 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 64, + "line": 92, "character": 4 } ], "signatures": [ { - "id": 2576, - "name": "AuthUnknownError", + "id": 2619, + "name": "AuthSessionMissingError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 64, + "line": 92, "character": 4 } ], - "parameters": [ - { - "id": 2577, - "name": "message", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2578, - "name": "originalError", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "unknown" - } - } - ], "type": { "type": "reference", - "target": 2574, - "name": "AuthUnknownError", + "target": 2617, + "name": "AuthSessionMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2540, - "name": "AuthError.constructor" + "target": 2599, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2539, - "name": "AuthError.constructor" + "target": 2598, + "name": "CustomAuthError.constructor" } }, { - "id": 2583, + "id": 2624, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -5972,12 +5979,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2547, - "name": "AuthError.__isAuthError" + "target": 2608, + "name": "CustomAuthError.__isAuthError" } }, { - "id": 2580, + "id": 2622, "name": "code", "variant": "declaration", "kind": 1024, @@ -6034,7 +6041,7 @@ { "type": "reflection", "declaration": { - "id": 2581, + "id": 2623, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6047,30 +6054,37 @@ }, "inheritedFrom": { "type": "reference", - "target": 2544, - "name": "AuthError.code" + "target": 2606, + "name": "CustomAuthError.code" } }, { - "id": 2579, - "name": "originalError", + "id": 2620, + "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 63, + "line": 77, "character": 4 } ], "type": { "type": "intrinsic", - "name": "unknown" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 2604, + "name": "CustomAuthError.name" } }, { - "id": 2582, + "id": 2621, "name": "status", "variant": "declaration", "kind": 1024, @@ -6088,31 +6102,22 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 22, + "line": 78, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": 2546, - "name": "AuthError.status" + "target": 2605, + "name": "CustomAuthError.status" } }, { - "id": 2584, + "id": 2625, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -6128,7 +6133,7 @@ ], "signatures": [ { - "id": 2585, + "id": 2626, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -6145,14 +6150,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2586, + "id": 2627, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2590, + "id": 2631, "name": "code", "variant": "declaration", "kind": 1024, @@ -6190,7 +6195,7 @@ { "type": "reflection", "declaration": { - "id": 2591, + "id": 2632, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6203,7 +6208,7 @@ } }, { - "id": 2588, + "id": 2629, "name": "message", "variant": "declaration", "kind": 1024, @@ -6221,7 +6226,7 @@ } }, { - "id": 2587, + "id": 2628, "name": "name", "variant": "declaration", "kind": 1024, @@ -6239,7 +6244,7 @@ } }, { - "id": 2589, + "id": 2630, "name": "status", "variant": "declaration", "kind": 1024, @@ -6269,7 +6274,7 @@ "groups": [ { "title": "Properties", - "children": [2590, 2588, 2587, 2589] + "children": [2631, 2629, 2628, 2630] } ], "sources": [ @@ -6283,51 +6288,51 @@ }, "inheritedFrom": { "type": "reference", - "target": 2549, - "name": "AuthError.toJSON" + "target": 2610, + "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2548, - "name": "AuthError.toJSON" + "target": 2609, + "name": "CustomAuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [2575] + "children": [2618] }, { "title": "Properties", - "children": [2583, 2580, 2579, 2582] + "children": [2624, 2622, 2620, 2621] }, { "title": "Methods", - "children": [2584] + "children": [2625] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 62, + "line": 91, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2538, - "name": "AuthError", + "target": 2597, + "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2753, - "name": "AuthWeakPasswordError", + "id": 2579, + "name": "AuthUnknownError", "variant": "declaration", "kind": 128, "flags": {}, @@ -6335,7 +6340,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a supplied password is considered weak." + "text": "Wraps non-standard errors so callers can inspect the root cause." } ], "blockTags": [ @@ -6344,7 +6349,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" + "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" } ] } @@ -6352,7 +6357,7 @@ }, "children": [ { - "id": 2754, + "id": 2580, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6360,27 +6365,27 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 235, + "line": 64, "character": 4 } ], "signatures": [ { - "id": 2755, - "name": "AuthWeakPasswordError", + "id": 2581, + "name": "AuthUnknownError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 235, + "line": 64, "character": 4 } ], "parameters": [ { - "id": 2756, + "id": 2582, "name": "message", "variant": "param", "kind": 32768, @@ -6391,65 +6396,38 @@ } }, { - "id": 2757, - "name": "status", + "id": 2583, + "name": "originalError", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2758, - "name": "reasons", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "name": "unknown" } } ], "type": { "type": "reference", - "target": 2753, - "name": "AuthWeakPasswordError", + "target": 2579, + "name": "AuthUnknownError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, - "name": "CustomAuthError.constructor" + "target": 2545, + "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, - "name": "CustomAuthError.constructor" + "target": 2544, + "name": "AuthError.constructor" } }, { - "id": 2773, + "id": 2588, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -6470,12 +6448,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, - "name": "CustomAuthError.__isAuthError" + "target": 2552, + "name": "AuthError.__isAuthError" } }, { - "id": 2771, + "id": 2585, "name": "code", "variant": "declaration", "kind": 1024, @@ -6532,7 +6510,7 @@ { "type": "reflection", "declaration": { - "id": 2772, + "id": 2586, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6545,79 +6523,30 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, - "name": "CustomAuthError.code" - } - }, - { - "id": 2769, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 77, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 2599, - "name": "CustomAuthError.name" + "target": 2549, + "name": "AuthError.code" } }, { - "id": 2759, - "name": "reasons", + "id": 2584, + "name": "originalError", "variant": "declaration", "kind": 1024, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Reasons why the password is deemed weak." - } - ] - }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 234, + "line": 63, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "type": "intrinsic", + "name": "unknown" } }, { - "id": 2770, + "id": 2587, "name": "status", "variant": "declaration", "kind": 1024, @@ -6635,58 +6564,71 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 78, + "line": 22, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] }, "inheritedFrom": { "type": "reference", - "target": 2600, - "name": "CustomAuthError.status" + "target": 2551, + "name": "AuthError.status" } }, { - "id": 2760, + "id": 2589, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 236, + "line": 25, "character": 4 } ], "signatures": [ { - "id": 2761, + "id": 2590, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 236, + "line": 25, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2762, + "id": 2591, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2766, + "id": 2595, "name": "code", "variant": "declaration", "kind": 1024, @@ -6694,7 +6636,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 240, + "line": 29, "character": 8 } ], @@ -6724,7 +6666,7 @@ { "type": "reflection", "declaration": { - "id": 2767, + "id": 2596, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6737,7 +6679,7 @@ } }, { - "id": 2764, + "id": 2593, "name": "message", "variant": "declaration", "kind": 1024, @@ -6745,7 +6687,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 238, + "line": 27, "character": 8 } ], @@ -6755,7 +6697,7 @@ } }, { - "id": 2763, + "id": 2592, "name": "name", "variant": "declaration", "kind": 1024, @@ -6763,7 +6705,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 237, + "line": 26, "character": 8 } ], @@ -6773,41 +6715,7 @@ } }, { - "id": 2768, - "name": "reasons", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 241, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } - } - }, - { - "id": 2765, + "id": 2594, "name": "status", "variant": "declaration", "kind": 1024, @@ -6815,7 +6723,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 239, + "line": 28, "character": 8 } ], @@ -6837,65 +6745,65 @@ "groups": [ { "title": "Properties", - "children": [2766, 2764, 2763, 2768, 2765] + "children": [2595, 2593, 2592, 2594] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 236, + "line": 25, "character": 14 } ] } }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 2605, - "name": "CustomAuthError.toJSON" + "target": 2554, + "name": "AuthError.toJSON" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 2604, - "name": "CustomAuthError.toJSON" + "target": 2553, + "name": "AuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [2754] + "children": [2580] }, { "title": "Properties", - "children": [2773, 2771, 2769, 2759, 2770] + "children": [2588, 2585, 2584, 2587] }, { "title": "Methods", - "children": [2760] + "children": [2589] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 230, + "line": 62, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, - "name": "CustomAuthError", + "target": 2543, + "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2592, - "name": "CustomAuthError", + "id": 2775, + "name": "AuthWeakPasswordError", "variant": "declaration", "kind": 128, "flags": {}, @@ -6903,7 +6811,7 @@ "summary": [ { "kind": "text", - "text": "Flexible error class used to create named auth errors at runtime." + "text": "Error thrown when a supplied password is considered weak." } ], "blockTags": [ @@ -6912,7 +6820,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" } ] } @@ -6920,7 +6828,7 @@ }, "children": [ { - "id": 2593, + "id": 2776, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6928,27 +6836,27 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 79, + "line": 259, "character": 4 } ], "signatures": [ { - "id": 2594, - "name": "CustomAuthError", + "id": 2777, + "name": "AuthWeakPasswordError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 79, + "line": 259, "character": 4 } ], "parameters": [ { - "id": 2595, + "id": 2778, "name": "message", "variant": "param", "kind": 32768, @@ -6959,18 +6867,7 @@ } }, { - "id": 2596, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2597, + "id": 2779, "name": "status", "variant": "param", "kind": 32768, @@ -6981,47 +6878,54 @@ } }, { - "id": 2598, - "name": "code", + "id": 2780, + "name": "reasons", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } } } ], "type": { "type": "reference", - "target": 2592, - "name": "CustomAuthError", + "target": 2775, + "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2540, - "name": "AuthError.constructor" + "target": 2599, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2539, - "name": "AuthError.constructor" + "target": 2598, + "name": "CustomAuthError.constructor" } }, { - "id": 2603, + "id": 2795, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -7042,12 +6946,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2547, - "name": "AuthError.__isAuthError" + "target": 2608, + "name": "CustomAuthError.__isAuthError" } }, { - "id": 2601, + "id": 2793, "name": "code", "variant": "declaration", "kind": 1024, @@ -7104,7 +7008,7 @@ { "type": "reflection", "declaration": { - "id": 2602, + "id": 2794, "name": "__type", "variant": "declaration", "kind": 65536, @@ -7117,16 +7021,18 @@ }, "inheritedFrom": { "type": "reference", - "target": 2544, - "name": "AuthError.code" + "target": 2606, + "name": "CustomAuthError.code" } }, { - "id": 2599, + "id": 2791, "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", @@ -7138,18 +7044,62 @@ "type": "intrinsic", "name": "string" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": -1, - "name": "AuthError.name" + "target": 2604, + "name": "CustomAuthError.name" } }, { - "id": 2600, - "name": "status", + "id": 2781, + "name": "reasons", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reasons why the password is deemed weak." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 258, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 2792, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, "comment": { "summary": [ { @@ -7169,54 +7119,50 @@ "type": "intrinsic", "name": "number" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 2546, - "name": "AuthError.status" + "target": 2605, + "name": "CustomAuthError.status" } }, { - "id": 2604, + "id": 2782, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 25, + "line": 260, "character": 4 } ], "signatures": [ { - "id": 2605, + "id": 2783, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 25, + "line": 260, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2606, + "id": 2784, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2610, + "id": 2788, "name": "code", "variant": "declaration", "kind": 1024, @@ -7224,7 +7170,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 29, + "line": 264, "character": 8 } ], @@ -7254,7 +7200,7 @@ { "type": "reflection", "declaration": { - "id": 2611, + "id": 2789, "name": "__type", "variant": "declaration", "kind": 65536, @@ -7267,7 +7213,7 @@ } }, { - "id": 2608, + "id": 2786, "name": "message", "variant": "declaration", "kind": 1024, @@ -7275,7 +7221,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 27, + "line": 262, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2785, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 261, "character": 8 } ], @@ -7285,7 +7249,519 @@ } }, { + "id": 2790, + "name": "reasons", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 265, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 2787, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 263, + "character": 8 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [2788, 2786, 2785, 2790, 2787] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 260, + "character": 14 + } + ] + } + }, + "overwrites": { + "type": "reference", + "target": 2610, + "name": "CustomAuthError.toJSON" + } + } + ], + "overwrites": { + "type": "reference", + "target": 2609, + "name": "CustomAuthError.toJSON" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [2776] + }, + { + "title": "Properties", + "children": [2795, 2793, 2791, 2781, 2792] + }, + { + "title": "Methods", + "children": [2782] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 254, + "character": 21 + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 2597, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + } + ] + }, + { + "id": 2597, + "name": "CustomAuthError", + "variant": "declaration", + "kind": 128, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Flexible error class used to create named auth errors at runtime." + } + ], + "blockTags": [ + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + } + ] + } + ] + }, + "children": [ + { + "id": 2598, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 79, + "character": 4 + } + ], + "signatures": [ + { + "id": 2599, + "name": "CustomAuthError", + "variant": "signature", + "kind": 16384, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 79, + "character": 4 + } + ], + "parameters": [ + { + "id": 2600, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2601, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2602, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2603, + "name": "code", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "type": { + "type": "reference", + "target": 2597, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + }, + "overwrites": { + "type": "reference", + "target": 2545, + "name": "AuthError.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "target": 2544, + "name": "AuthError.constructor" + } + }, + { + "id": 2608, + "name": "__isAuthError", + "variant": "declaration", + "kind": 1024, + "flags": { + "isProtected": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 23, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": 2552, + "name": "AuthError.__isAuthError" + } + }, + { + "id": 2606, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#status" + }, + { + "kind": "text", + "text": " will also be undefined." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 20, + "character": 4 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../auth-js/src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { "id": 2607, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 2549, + "name": "AuthError.code" + } + }, + { + "id": 2604, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 77, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "AuthError.name" + } + }, + { + "id": 2605, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP status code that caused the error." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 78, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "overwrites": { + "type": "reference", + "target": 2551, + "name": "AuthError.status" + } + }, + { + "id": 2609, + "name": "toJSON", + "variant": "declaration", + "kind": 2048, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 25, + "character": 4 + } + ], + "signatures": [ + { + "id": 2610, + "name": "toJSON", + "variant": "signature", + "kind": 4096, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 25, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2611, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2615, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 29, + "character": 8 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../auth-js/src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 2616, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + } + ] + } + }, + { + "id": 2613, + "name": "message", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 27, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2612, "name": "name", "variant": "declaration", "kind": 1024, @@ -7303,7 +7779,7 @@ } }, { - "id": 2609, + "id": 2614, "name": "status", "variant": "declaration", "kind": 1024, @@ -7333,7 +7809,7 @@ "groups": [ { "title": "Properties", - "children": [2610, 2608, 2607, 2609] + "children": [2615, 2613, 2612, 2614] } ], "sources": [ @@ -7347,14 +7823,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2549, + "target": 2554, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2548, + "target": 2553, "name": "AuthError.toJSON" } } @@ -7362,15 +7838,15 @@ "groups": [ { "title": "Constructors", - "children": [2593] + "children": [2598] }, { "title": "Properties", - "children": [2603, 2601, 2599, 2600] + "children": [2608, 2606, 2604, 2605] }, { "title": "Methods", - "children": [2604] + "children": [2609] } ], "sources": [ @@ -7383,7 +7859,7 @@ "extendedTypes": [ { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -7391,47 +7867,52 @@ "extendedBy": [ { "type": "reference", - "target": 2612, + "target": 2617, "name": "AuthSessionMissingError" }, { "type": "reference", - "target": 2628, + "target": 2633, "name": "AuthInvalidTokenResponseError" }, { "type": "reference", - "target": 2644, + "target": 2649, "name": "AuthInvalidCredentialsError" }, { "type": "reference", - "target": 2661, + "target": 2666, "name": "AuthImplicitGrantRedirectError" }, { "type": "reference", - "target": 2690, + "target": 2695, "name": "AuthPKCEGrantCodeExchangeError" }, { "type": "reference", - "target": 2719, + "target": 2724, "name": "AuthPKCECodeVerifierMissingError" }, { "type": "reference", - "target": 2735, + "target": 2740, "name": "AuthRetryableFetchError" }, { "type": "reference", - "target": 2753, + "target": 2758, + "name": "AuthRefreshDiscardedError" + }, + { + "type": "reference", + "target": 2775, "name": "AuthWeakPasswordError" }, { "type": "reference", - "target": 2774, + "target": 2796, "name": "AuthInvalidJwtError" } ] @@ -8533,7 +9014,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 48, + "line": 47, "character": 4 } ], @@ -8577,7 +9058,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 48, + "line": 47, "character": 4 } ], @@ -8608,13 +9089,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 54, + "line": 53, "character": 8 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } @@ -8630,7 +9111,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 53, + "line": 52, "character": 8 } ], @@ -8858,7 +9339,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 50, + "line": 49, "character": 8 } ], @@ -8873,7 +9354,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 50, + "line": 49, "character": 18 } ], @@ -8887,7 +9368,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 51, + "line": 50, "character": 12 } ], @@ -8922,7 +9403,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 49, + "line": 48, "character": 8 } ], @@ -8941,7 +9422,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 48, + "line": 47, "character": 56 } ] @@ -8982,13 +9463,13 @@ ], "type": { "type": "reference", - "target": 2341, + "target": 2343, "name": "GoTrueAdminCustomProvidersApi", "package": "@supabase/auth-js" } }, { - "id": 1161, + "id": 1160, "name": "experimental", "variant": "declaration", "kind": 1024, @@ -8998,19 +9479,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 26, + "line": 25, "character": 14 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } }, { - "id": 1153, + "id": 1152, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -9020,14 +9501,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 25, + "line": 24, "character": 14 } ], "type": { "type": "reflection", "declaration": { - "id": 1154, + "id": 1153, "name": "__type", "variant": "declaration", "kind": 65536, @@ -9046,7 +9527,7 @@ ], "signatures": [ { - "id": 1155, + "id": 1154, "name": "__type", "variant": "signature", "kind": 4096, @@ -9068,7 +9549,7 @@ ], "parameters": [ { - "id": 1156, + "id": 1155, "name": "input", "variant": "param", "kind": 32768, @@ -9098,7 +9579,7 @@ } }, { - "id": 1157, + "id": 1156, "name": "init", "variant": "param", "kind": 32768, @@ -9138,7 +9619,7 @@ } }, { - "id": 1158, + "id": 1157, "name": "__type", "variant": "signature", "kind": 4096, @@ -9160,7 +9641,7 @@ ], "parameters": [ { - "id": 1159, + "id": 1158, "name": "input", "variant": "param", "kind": 32768, @@ -9194,7 +9675,7 @@ } }, { - "id": 1160, + "id": 1159, "name": "init", "variant": "param", "kind": 32768, @@ -9326,7 +9807,7 @@ ], "type": { "type": "reference", - "target": 2094, + "target": 2096, "name": "GoTrueAdminMFAApi", "package": "@supabase/auth-js" } @@ -9354,7 +9835,7 @@ ], "type": { "type": "reference", - "target": 2226, + "target": 2228, "name": "GoTrueAdminOAuthApi", "package": "@supabase/auth-js" } @@ -9390,7 +9871,7 @@ ], "type": { "type": "reference", - "target": 2510, + "target": 2512, "name": "GoTrueAdminPasskeyApi", "package": "@supabase/auth-js" } @@ -9416,7 +9897,7 @@ } }, { - "id": 1179, + "id": 1178, "name": "createUser", "variant": "declaration", "kind": 2048, @@ -9424,13 +9905,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 336, + "line": 335, "character": 4 } ], "signatures": [ { - "id": 1180, + "id": 1179, "name": "createUser", "variant": "signature", "kind": 4096, @@ -9582,20 +10063,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 336, + "line": 335, "character": 4 } ], "parameters": [ { - "id": 1181, + "id": 1180, "name": "attributes", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1748, + "target": 1750, "name": "AdminUserAttributes", "package": "@supabase/auth-js" } @@ -9610,7 +10091,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -9622,7 +10103,7 @@ ] }, { - "id": 1203, + "id": 1202, "name": "deleteUser", "variant": "declaration", "kind": 2048, @@ -9630,13 +10111,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 614, + "line": 613, "character": 4 } ], "signatures": [ { - "id": 1204, + "id": 1203, "name": "deleteUser", "variant": "signature", "kind": 4096, @@ -9728,13 +10209,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 614, + "line": 613, "character": 4 } ], "parameters": [ { - "id": 1205, + "id": 1204, "name": "id", "variant": "param", "kind": 32768, @@ -9753,7 +10234,7 @@ } }, { - "id": 1206, + "id": 1205, "name": "shouldSoftDelete", "variant": "param", "kind": 32768, @@ -9791,7 +10272,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -9803,7 +10284,7 @@ ] }, { - "id": 1176, + "id": 1175, "name": "generateLink", "variant": "declaration", "kind": 2048, @@ -9811,13 +10292,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 255, + "line": 254, "character": 4 } ], "signatures": [ { - "id": 1177, + "id": 1176, "name": "generateLink", "variant": "signature", "kind": 4096, @@ -10037,20 +10518,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 255, + "line": 254, "character": 4 } ], "parameters": [ { - "id": 1178, + "id": 1177, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1962, + "target": 1964, "name": "GenerateLinkParams", "package": "@supabase/auth-js" } @@ -10065,7 +10546,7 @@ "typeArguments": [ { "type": "reference", - "target": 1963, + "target": 1965, "name": "GenerateLinkResponse", "package": "@supabase/auth-js" } @@ -10077,7 +10558,7 @@ ] }, { - "id": 1196, + "id": 1195, "name": "getUserById", "variant": "declaration", "kind": 2048, @@ -10085,13 +10566,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 436, + "line": 435, "character": 4 } ], "signatures": [ { - "id": 1197, + "id": 1196, "name": "getUserById", "variant": "signature", "kind": 4096, @@ -10175,13 +10656,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 436, + "line": 435, "character": 4 } ], "parameters": [ { - "id": 1198, + "id": 1197, "name": "uid", "variant": "param", "kind": 32768, @@ -10217,7 +10698,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -10229,7 +10710,7 @@ ] }, { - "id": 1169, + "id": 1168, "name": "inviteUserByEmail", "variant": "declaration", "kind": 2048, @@ -10237,13 +10718,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 132, + "line": 131, "character": 4 } ], "signatures": [ { - "id": 1170, + "id": 1169, "name": "inviteUserByEmail", "variant": "signature", "kind": 4096, @@ -10327,13 +10808,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 132, + "line": 131, "character": 4 } ], "parameters": [ { - "id": 1171, + "id": 1170, "name": "email", "variant": "param", "kind": 32768, @@ -10352,7 +10833,7 @@ } }, { - "id": 1172, + "id": 1171, "name": "options", "variant": "param", "kind": 32768, @@ -10370,14 +10851,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1173, + "id": 1172, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1174, + "id": 1173, "name": "data", "variant": "declaration", "kind": 1024, @@ -10403,7 +10884,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 134, + "line": 133, "character": 8 } ], @@ -10413,7 +10894,7 @@ } }, { - "id": 1175, + "id": 1174, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -10431,7 +10912,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 136, + "line": 135, "character": 8 } ], @@ -10444,13 +10925,13 @@ "groups": [ { "title": "Properties", - "children": [1174, 1175] + "children": [1173, 1174] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 132, + "line": 131, "character": 47 } ] @@ -10467,7 +10948,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -10479,7 +10960,7 @@ ] }, { - "id": 1182, + "id": 1181, "name": "listUsers", "variant": "declaration", "kind": 2048, @@ -10487,13 +10968,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 362, + "line": 361, "character": 4 } ], "signatures": [ { - "id": 1183, + "id": 1182, "name": "listUsers", "variant": "signature", "kind": 4096, @@ -10566,13 +11047,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 362, + "line": 361, "character": 4 } ], "parameters": [ { - "id": 1184, + "id": 1183, "name": "params", "variant": "param", "kind": 32768, @@ -10605,7 +11086,7 @@ }, "type": { "type": "reference", - "target": 2115, + "target": 2117, "name": "PageParams", "package": "@supabase/auth-js" } @@ -10624,14 +11105,14 @@ { "type": "reflection", "declaration": { - "id": 1185, + "id": 1184, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1186, + "id": 1185, "name": "data", "variant": "declaration", "kind": 1024, @@ -10639,7 +11120,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 363, + "line": 362, "character": 8 } ], @@ -10649,14 +11130,14 @@ { "type": "reflection", "declaration": { - "id": 1187, + "id": 1186, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1189, + "id": 1188, "name": "aud", "variant": "declaration", "kind": 1024, @@ -10664,7 +11145,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 365, + "line": 364, "character": 12 } ], @@ -10674,7 +11155,7 @@ } }, { - "id": 1188, + "id": 1187, "name": "users", "variant": "declaration", "kind": 1024, @@ -10682,7 +11163,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 364, + "line": 363, "character": 12 } ], @@ -10700,13 +11181,13 @@ "groups": [ { "title": "Properties", - "children": [1189, 1188] + "children": [1188, 1187] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 363, + "line": 362, "character": 14 } ] @@ -10714,7 +11195,7 @@ }, { "type": "reference", - "target": 2108, + "target": 2110, "name": "Pagination", "package": "@supabase/auth-js" } @@ -10722,7 +11203,7 @@ } }, { - "id": 1190, + "id": 1189, "name": "error", "variant": "declaration", "kind": 1024, @@ -10730,7 +11211,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 367, + "line": 366, "character": 8 } ], @@ -10743,13 +11224,13 @@ "groups": [ { "title": "Properties", - "children": [1186, 1190] + "children": [1185, 1189] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 362, + "line": 361, "character": 44 } ] @@ -10758,14 +11239,14 @@ { "type": "reflection", "declaration": { - "id": 1191, + "id": 1190, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1192, + "id": 1191, "name": "data", "variant": "declaration", "kind": 1024, @@ -10773,21 +11254,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 369, + "line": 368, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1193, + "id": 1192, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1194, + "id": 1193, "name": "users", "variant": "declaration", "kind": 1024, @@ -10795,7 +11276,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 370, + "line": 369, "character": 12 } ], @@ -10807,13 +11288,13 @@ "groups": [ { "title": "Properties", - "children": [1194] + "children": [1193] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 369, + "line": 368, "character": 14 } ] @@ -10821,7 +11302,7 @@ } }, { - "id": 1195, + "id": 1194, "name": "error", "variant": "declaration", "kind": 1024, @@ -10829,13 +11310,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 372, + "line": 371, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -10844,13 +11325,13 @@ "groups": [ { "title": "Properties", - "children": [1192, 1195] + "children": [1191, 1194] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 368, + "line": 367, "character": 8 } ] @@ -10866,7 +11347,7 @@ ] }, { - "id": 1162, + "id": 1161, "name": "signOut", "variant": "declaration", "kind": 2048, @@ -10874,13 +11355,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 64, + "line": 63, "character": 4 } ], "signatures": [ { - "id": 1163, + "id": 1162, "name": "signOut", "variant": "signature", "kind": 4096, @@ -10916,13 +11397,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 64, + "line": 63, "character": 4 } ], "parameters": [ { - "id": 1164, + "id": 1163, "name": "jwt", "variant": "param", "kind": 32768, @@ -10941,7 +11422,7 @@ } }, { - "id": 1165, + "id": 1164, "name": "scope", "variant": "param", "kind": 32768, @@ -10985,14 +11466,14 @@ { "type": "reflection", "declaration": { - "id": 1166, + "id": 1165, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1167, + "id": 1166, "name": "data", "variant": "declaration", "kind": 1024, @@ -11000,7 +11481,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 65, + "line": 64, "character": 8 } ], @@ -11010,7 +11491,7 @@ } }, { - "id": 1168, + "id": 1167, "name": "error", "variant": "declaration", "kind": 1024, @@ -11018,7 +11499,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 66, + "line": 65, "character": 8 } ], @@ -11031,7 +11512,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -11042,13 +11523,13 @@ "groups": [ { "title": "Properties", - "children": [1167, 1168] + "children": [1166, 1167] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 64, + "line": 63, "character": 56 } ] @@ -11062,7 +11543,7 @@ ] }, { - "id": 1199, + "id": 1198, "name": "updateUserById", "variant": "declaration", "kind": 2048, @@ -11070,13 +11551,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 581, + "line": 580, "character": 4 } ], "signatures": [ { - "id": 1200, + "id": 1199, "name": "updateUserById", "variant": "signature", "kind": 4096, @@ -11278,13 +11759,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 581, + "line": 580, "character": 4 } ], "parameters": [ { - "id": 1201, + "id": 1200, "name": "uid", "variant": "param", "kind": 32768, @@ -11303,7 +11784,7 @@ } }, { - "id": 1202, + "id": 1201, "name": "attributes", "variant": "param", "kind": 32768, @@ -11326,7 +11807,7 @@ }, "type": { "type": "reference", - "target": 1748, + "target": 1750, "name": "AdminUserAttributes", "package": "@supabase/auth-js" } @@ -11341,7 +11822,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -11360,21 +11841,21 @@ }, { "title": "Properties", - "children": [1145, 1161, 1153, 1148, 1143, 1144, 1146, 1147] + "children": [1145, 1160, 1152, 1148, 1143, 1144, 1146, 1147] }, { "title": "Methods", - "children": [1179, 1203, 1176, 1196, 1169, 1182, 1162, 1199] + "children": [1178, 1202, 1175, 1195, 1168, 1181, 1161, 1198] } ], "categories": [ { "title": "Auth", - "children": [1179, 1203, 1176, 1196, 1169, 1182, 1162, 1199] + "children": [1178, 1202, 1175, 1195, 1168, 1181, 1161, 1198] }, { "title": "Other", - "children": [1125, 1145, 1161, 1153, 1148, 1143, 1144, 1146, 1147] + "children": [1125, 1145, 1160, 1152, 1148, 1143, 1144, 1146, 1147] } ], "sources": [ @@ -11386,14 +11867,14 @@ ] }, { - "id": 1222, + "id": 1221, "name": "GoTrueClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1224, + "id": 1223, "name": "constructor", "variant": "declaration", "kind": 512, @@ -11401,13 +11882,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 117, + "line": 134, "character": 4 } ], "signatures": [ { - "id": 1225, + "id": 1224, "name": "GoTrueClient", "variant": "signature", "kind": 16384, @@ -11445,20 +11926,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 117, + "line": 134, "character": 4 } ], "parameters": [ { - "id": 1226, + "id": 1225, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1597, + "target": 1599, "name": "GoTrueClientOptions", "package": "@supabase/auth-js" } @@ -11466,7 +11947,7 @@ ], "type": { "type": "reference", - "target": 1222, + "target": 1221, "name": "GoTrueClient", "package": "@supabase/auth-js", "qualifiedName": "default" @@ -11475,7 +11956,83 @@ ] }, { - "id": 1228, + "id": 1260, + "name": "_sessionRemovalEpoch", + "variant": "declaration", + "kind": 1024, + "flags": { + "isProtected": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Monotonic counter incremented at the top of " + }, + { + "kind": "code", + "text": "`_removeSession`" + }, + { + "kind": "text", + "text": ", before any\n" + }, + { + "kind": "code", + "text": "`await`" + }, + { + "kind": "text", + "text": ". The commit guard inside " + }, + { + "kind": "code", + "text": "`_callRefreshToken`" + }, + { + "kind": "text", + "text": " captures this value\nbefore " + }, + { + "kind": "code", + "text": "`_saveSession`" + }, + { + "kind": "text", + "text": " and re-checks it after, so a " + }, + { + "kind": "code", + "text": "`signOut`" + }, + { + "kind": "text", + "text": " that\ninterleaves inside " + }, + { + "kind": "code", + "text": "`_saveSession`" + }, + { + "kind": "text", + "text": "'s storage-write awaits is still caught\n(the post-fetch storage snapshot alone misses that window)." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", + "line": 69, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1227, "name": "admin", "variant": "declaration", "kind": 1024, @@ -11504,7 +12061,7 @@ } }, { - "id": 1255, + "id": 1254, "name": "autoRefreshTicker", "variant": "declaration", "kind": 1024, @@ -11539,7 +12096,7 @@ } }, { - "id": 1256, + "id": 1255, "name": "autoRefreshTickTimeout", "variant": "declaration", "kind": 1024, @@ -11574,7 +12131,7 @@ } }, { - "id": 1246, + "id": 1245, "name": "autoRefreshToken", "variant": "declaration", "kind": 1024, @@ -11612,7 +12169,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 92, + "line": 109, "character": 14 } ], @@ -11646,7 +12203,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 14 } ], @@ -11668,7 +12225,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 45 } ], @@ -11682,7 +12239,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 45 } ], @@ -11720,7 +12277,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 64 } ], @@ -11734,7 +12291,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 70, + "line": 78, "character": 8 } ], @@ -11799,13 +12356,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 88, + "line": 105, "character": 14 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } @@ -11821,7 +12378,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 78, + "line": 86, "character": 14 } ], @@ -12039,7 +12596,7 @@ } }, { - "id": 1233, + "id": 1232, "name": "flowType", "variant": "declaration", "kind": 1024, @@ -12055,7 +12612,7 @@ ], "type": { "type": "reference", - "target": 1808, + "target": 1810, "name": "AuthFlowType", "package": "@supabase/auth-js" } @@ -12071,7 +12628,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 76, + "line": 84, "character": 14 } ], @@ -12091,7 +12648,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 73, + "line": 81, "character": 14 } ], @@ -12106,7 +12663,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 73, + "line": 81, "character": 23 } ], @@ -12120,7 +12677,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 74, + "line": 82, "character": 8 } ], @@ -12173,7 +12730,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 68, + "line": 76, "character": 14 } ], @@ -12193,7 +12750,7 @@ "typeArguments": [ { "type": "reference", - "target": 2104, + "target": 2106, "name": "InitializeResult", "package": "@supabase/auth-js" } @@ -12212,18 +12769,51 @@ "flags": { "isProtected": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Custom lock function passed via " + }, + { + "kind": "code", + "text": "`settings.lock`" + }, + { + "kind": "text", + "text": ". When non-null, every auth\noperation runs inside " + }, + { + "kind": "code", + "text": "`_acquireLock`" + }, + { + "kind": "text", + "text": ". When null (the default), the client\nuses its lockless coordination (refresh single-flight + commit guard).\nTODO(v3): remove along with the legacy lock path." + } + ] + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 79, + "line": 93, "character": 14 } ], "type": { - "type": "reference", - "target": 1588, - "name": "LockFunc", - "package": "@supabase/auth-js" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 1590, + "name": "LockFunc", + "package": "@supabase/auth-js" + } + ] } }, { @@ -12237,7 +12827,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 80, + "line": 94, "character": 14 } ], @@ -12254,10 +12844,26 @@ "flags": { "isProtected": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Only consulted when a custom " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " is supplied. TODO(v3): remove." + } + ] + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 83, + "line": 100, "character": 14 } ], @@ -12277,7 +12883,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 93, + "line": 110, "character": 14 } ], @@ -12297,7 +12903,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 94, + "line": 111, "character": 14 } ], @@ -12312,7 +12918,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 94, + "line": 111, "character": 22 } ], @@ -12326,7 +12932,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 94, + "line": 111, "character": 22 } ], @@ -12369,7 +12975,7 @@ } }, { - "id": 1250, + "id": 1249, "name": "memoryStorage", "variant": "declaration", "kind": 1024, @@ -12393,7 +12999,7 @@ { "type": "reflection", "declaration": { - "id": 1251, + "id": 1250, "name": "__type", "variant": "declaration", "kind": 65536, @@ -12407,7 +13013,7 @@ ], "indexSignatures": [ { - "id": 1252, + "id": 1251, "name": "__index", "variant": "signature", "kind": 8192, @@ -12421,7 +13027,7 @@ ], "parameters": [ { - "id": 1253, + "id": 1252, "name": "key", "variant": "param", "kind": 32768, @@ -12444,7 +13050,7 @@ } }, { - "id": 1229, + "id": 1228, "name": "mfa", "variant": "declaration", "kind": 1024, @@ -12466,13 +13072,13 @@ ], "type": { "type": "reference", - "target": 2023, + "target": 2025, "name": "GoTrueMFAApi", "package": "@supabase/auth-js" } }, { - "id": 1230, + "id": 1229, "name": "oauth", "variant": "declaration", "kind": 1024, @@ -12494,13 +13100,13 @@ ], "type": { "type": "reference", - "target": 2390, + "target": 2392, "name": "AuthOAuthServerApi", "package": "@supabase/auth-js" } }, { - "id": 1231, + "id": 1230, "name": "passkey", "variant": "declaration", "kind": 1024, @@ -12530,7 +13136,7 @@ ], "type": { "type": "reference", - "target": 2490, + "target": 2492, "name": "AuthPasskeyApi", "package": "@supabase/auth-js" } @@ -12546,7 +13152,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 81, + "line": 95, "character": 14 } ], @@ -12570,7 +13176,7 @@ } }, { - "id": 1247, + "id": 1246, "name": "persistSession", "variant": "declaration", "kind": 1024, @@ -12590,7 +13196,7 @@ } }, { - "id": 1260, + "id": 1259, "name": "refreshingDeferred", "variant": "declaration", "kind": 1024, @@ -12620,7 +13226,7 @@ "typeArguments": [ { "type": "reference", - "target": 2107, + "target": 2109, "name": "CallRefreshTokenResult", "package": "@supabase/auth-js" } @@ -12632,7 +13238,7 @@ } }, { - "id": 1254, + "id": 1253, "name": "stateChangeEmitters", "variant": "declaration", "kind": 1024, @@ -12668,7 +13274,7 @@ }, { "type": "reference", - "target": 1762, + "target": 1764, "name": "Subscription", "package": "@supabase/auth-js" } @@ -12678,7 +13284,7 @@ } }, { - "id": 1248, + "id": 1247, "name": "storage", "variant": "declaration", "kind": 1024, @@ -12694,13 +13300,13 @@ ], "type": { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } }, { - "id": 1232, + "id": 1231, "name": "storageKey", "variant": "declaration", "kind": 1024, @@ -12738,7 +13344,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 77, + "line": 85, "character": 14 } ], @@ -12758,7 +13364,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 82, + "line": 96, "character": 14 } ], @@ -12778,7 +13384,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 72, + "line": 80, "character": 14 } ], @@ -12788,7 +13394,7 @@ } }, { - "id": 1249, + "id": 1248, "name": "userStorage", "variant": "declaration", "kind": 1024, @@ -12815,7 +13421,7 @@ }, { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } @@ -12823,7 +13429,7 @@ } }, { - "id": 1257, + "id": 1256, "name": "visibilityChangedCallback", "variant": "declaration", "kind": 1024, @@ -12847,7 +13453,7 @@ { "type": "reflection", "declaration": { - "id": 1258, + "id": 1257, "name": "__type", "variant": "declaration", "kind": 65536, @@ -12861,7 +13467,7 @@ ], "signatures": [ { - "id": 1259, + "id": 1258, "name": "__type", "variant": "signature", "kind": 4096, @@ -12896,7 +13502,7 @@ } }, { - "id": 1234, + "id": 1233, "name": "jwks", "variant": "declaration", "kind": 262144, @@ -12916,7 +13522,7 @@ } ], "getSignature": { - "id": 1235, + "id": 1234, "name": "jwks", "variant": "signature", "kind": 524288, @@ -12939,14 +13545,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1236, + "id": 1235, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1237, + "id": 1236, "name": "keys", "variant": "declaration", "kind": 1024, @@ -12962,7 +13568,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -12972,7 +13578,7 @@ "groups": [ { "title": "Properties", - "children": [1237] + "children": [1236] } ], "sources": [ @@ -12986,7 +13592,7 @@ } }, "setSignature": { - "id": 1238, + "id": 1237, "name": "jwks", "variant": "signature", "kind": 1048576, @@ -13000,7 +13606,7 @@ ], "parameters": [ { - "id": 1239, + "id": 1238, "name": "value", "variant": "param", "kind": 32768, @@ -13008,14 +13614,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1240, + "id": 1239, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1241, + "id": 1240, "name": "keys", "variant": "declaration", "kind": 1024, @@ -13031,7 +13637,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -13041,7 +13647,7 @@ "groups": [ { "title": "Properties", - "children": [1241] + "children": [1240] } ], "sources": [ @@ -13062,7 +13668,7 @@ } }, { - "id": 1242, + "id": 1241, "name": "jwks_cached_at", "variant": "declaration", "kind": 262144, @@ -13082,7 +13688,7 @@ } ], "getSignature": { - "id": 1243, + "id": 1242, "name": "jwks_cached_at", "variant": "signature", "kind": 524288, @@ -13100,7 +13706,7 @@ } }, "setSignature": { - "id": 1244, + "id": 1243, "name": "jwks_cached_at", "variant": "signature", "kind": 1048576, @@ -13114,7 +13720,7 @@ ], "parameters": [ { - "id": 1245, + "id": 1244, "name": "value", "variant": "param", "kind": 32768, @@ -13142,7 +13748,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1875, + "line": 1910, "character": 14 } ], @@ -13156,7 +13762,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1875, + "line": 1910, "character": 14 } ], @@ -13187,7 +13793,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1876, + "line": 1911, "character": 8 } ], @@ -13206,7 +13812,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1875, + "line": 1910, "character": 47 } ] @@ -13223,7 +13829,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -13245,7 +13851,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1743, + "line": 1778, "character": 14 } ], @@ -13259,7 +13865,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1743, + "line": 1778, "character": 14 } ], @@ -13288,7 +13894,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1744, + "line": 1779, "character": 8 } ], @@ -13306,7 +13912,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1745, + "line": 1780, "character": 8 } ], @@ -13325,7 +13931,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1743, + "line": 1778, "character": 42 } ] @@ -13342,7 +13948,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -13364,7 +13970,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1973, "character": 14 } ], @@ -13378,7 +13984,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1973, "character": 14 } ], @@ -13393,7 +13999,7 @@ }, "type": { "type": "reference", - "target": 2119, + "target": 2121, "name": "SignOut", "package": "@supabase/auth-js" } @@ -13424,7 +14030,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1939, + "line": 1974, "character": 8 } ], @@ -13437,7 +14043,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -13454,7 +14060,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1973, "character": 53 } ] @@ -13478,7 +14084,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1612, + "line": 1647, "character": 14 } ], @@ -13492,7 +14098,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1612, + "line": 1647, "character": 14 } ], @@ -13505,7 +14111,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1741, + "target": 1743, "name": "UserAttributes", "package": "@supabase/auth-js" } @@ -13538,7 +14144,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1613, + "line": 1648, "character": 8 } ], @@ -13557,7 +14163,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1612, + "line": 1647, "character": 64 } ] @@ -13574,7 +14180,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -13585,6 +14191,152 @@ } ] }, + { + "id": 1506, + "name": "dispose", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", + "line": 2320, + "character": 4 + } + ], + "signatures": [ + { + "id": 1507, + "name": "dispose", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tears down the client's background work: stops the auto-refresh interval,\nremoves the " + }, + { + "kind": "code", + "text": "`visibilitychange`" + }, + { + "kind": "text", + "text": " listener, closes the cross-tab\n" + }, + { + "kind": "code", + "text": "`BroadcastChannel`" + }, + { + "kind": "text", + "text": ", and clears registered " + }, + { + "kind": "code", + "text": "`onAuthStateChange`" + }, + { + "kind": "text", + "text": " subscribers.\n\nCall this from cleanup hooks when the client is being replaced before\nits JS realm is destroyed. React Strict Mode and HMR are the common\ncases. Any in-flight " + }, + { + "kind": "code", + "text": "`fetch`" + }, + { + "kind": "text", + "text": " calls continue to completion and may still\nwrite to storage; dispose doesn't abort them or erase storage.\n\nLifecycle caveat: because in-flight refreshes are not aborted, a\ndisposed instance can still persist a rotated session to storage after\n" + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " returns. A subsequent " + }, + { + "kind": "code", + "text": "`createClient`" + }, + { + "kind": "text", + "text": " against the same\n" + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " will pick up that session on its next read. If you need\nstrict isolation between client lifecycles, await any pending auth\noperation before calling " + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " (or change the " + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " for\nthe replacement client).\n\nSafe to call repeatedly." + } + ], + "blockTags": [ + { + "tag": "@category", + "content": [ + { + "kind": "text", + "text": "Auth" + } + ] + }, + { + "tag": "@example", + "name": "Cleanup on React unmount", + "content": [ + { + "kind": "code", + "text": "```ts\nuseEffect(() => {\n const client = createClient(...)\n return () => { client.auth.dispose() }\n}, [])\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", + "line": 2320, + "character": 4 + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, { "id": 1318, "name": "exchangeCodeForSession", @@ -13594,7 +14346,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 765, + "line": 797, "character": 4 } ], @@ -13675,7 +14427,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 765, + "line": 797, "character": 4 } ], @@ -13701,7 +14453,7 @@ "typeArguments": [ { "type": "reference", - "target": 1674, + "target": 1676, "name": "AuthTokenResponse", "package": "@supabase/auth-js" } @@ -13713,7 +14465,7 @@ ] }, { - "id": 1523, + "id": 1525, "name": "getClaims", "variant": "declaration", "kind": 2048, @@ -13721,13 +14473,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2462, "character": 4 } ], "signatures": [ { - "id": 1524, + "id": 1526, "name": "getClaims", "variant": "signature", "kind": 4096, @@ -13828,13 +14580,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2462, "character": 4 } ], "parameters": [ { - "id": 1525, + "id": 1527, "name": "jwt", "variant": "param", "kind": 32768, @@ -13864,7 +14616,7 @@ } }, { - "id": 1526, + "id": 1528, "name": "options", "variant": "param", "kind": 32768, @@ -13882,14 +14634,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1527, + "id": 1529, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1529, + "id": 1531, "name": "allowExpired", "variant": "declaration", "kind": 1024, @@ -13923,7 +14675,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2399, + "line": 2468, "character": 8 } ], @@ -13933,7 +14685,7 @@ } }, { - "id": 1530, + "id": 1532, "name": "jwks", "variant": "declaration", "kind": 1024, @@ -13951,21 +14703,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2401, + "line": 2470, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1531, + "id": 1533, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1532, + "id": 1534, "name": "keys", "variant": "declaration", "kind": 1024, @@ -13973,7 +14725,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2402, + "line": 2471, "character": 12 } ], @@ -13981,7 +14733,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -13991,13 +14743,13 @@ "groups": [ { "title": "Properties", - "children": [1532] + "children": [1534] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2401, + "line": 2470, "character": 15 } ] @@ -14005,7 +14757,7 @@ } }, { - "id": 1528, + "id": 1530, "name": "keys", "variant": "declaration", "kind": 1024, @@ -14029,7 +14781,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2397, + "line": 2466, "character": 8 } ], @@ -14037,7 +14789,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -14047,13 +14799,13 @@ "groups": [ { "title": "Properties", - "children": [1529, 1530, 1528] + "children": [1531, 1532, 1530] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2462, "character": 38 } ] @@ -14074,14 +14826,14 @@ { "type": "reflection", "declaration": { - "id": 1533, + "id": 1535, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1534, + "id": 1536, "name": "data", "variant": "declaration", "kind": 1024, @@ -14089,21 +14841,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2405, + "line": 2474, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1535, + "id": 1537, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1536, + "id": 1538, "name": "claims", "variant": "declaration", "kind": 1024, @@ -14111,19 +14863,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2406, + "line": 2475, "character": 12 } ], "type": { "type": "reference", - "target": 2144, + "target": 2146, "name": "JwtPayload", "package": "@supabase/auth-js" } }, { - "id": 1537, + "id": 1539, "name": "header", "variant": "declaration", "kind": 1024, @@ -14131,19 +14883,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2407, + "line": 2476, "character": 12 } ], "type": { "type": "reference", - "target": 2128, + "target": 2130, "name": "JwtHeader", "package": "@supabase/auth-js" } }, { - "id": 1538, + "id": 1540, "name": "signature", "variant": "declaration", "kind": 1024, @@ -14151,7 +14903,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2408, + "line": 2477, "character": 12 } ], @@ -14169,13 +14921,13 @@ "groups": [ { "title": "Properties", - "children": [1536, 1537, 1538] + "children": [1538, 1539, 1540] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2405, + "line": 2474, "character": 14 } ] @@ -14183,7 +14935,7 @@ } }, { - "id": 1539, + "id": 1541, "name": "error", "variant": "declaration", "kind": 1024, @@ -14191,7 +14943,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2410, + "line": 2479, "character": 8 } ], @@ -14204,13 +14956,13 @@ "groups": [ { "title": "Properties", - "children": [1534, 1539] + "children": [1536, 1541] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2404, + "line": 2473, "character": 16 } ] @@ -14219,14 +14971,14 @@ { "type": "reflection", "declaration": { - "id": 1540, + "id": 1542, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1541, + "id": 1543, "name": "data", "variant": "declaration", "kind": 1024, @@ -14234,7 +14986,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2412, + "line": 2481, "character": 8 } ], @@ -14244,7 +14996,7 @@ } }, { - "id": 1542, + "id": 1544, "name": "error", "variant": "declaration", "kind": 1024, @@ -14252,13 +15004,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2413, + "line": 2482, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14267,13 +15019,13 @@ "groups": [ { "title": "Properties", - "children": [1541, 1542] + "children": [1543, 1544] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2411, + "line": 2480, "character": 8 } ] @@ -14282,14 +15034,14 @@ { "type": "reflection", "declaration": { - "id": 1543, + "id": 1545, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1544, + "id": 1546, "name": "data", "variant": "declaration", "kind": 1024, @@ -14297,7 +15049,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2415, + "line": 2484, "character": 8 } ], @@ -14307,7 +15059,7 @@ } }, { - "id": 1545, + "id": 1547, "name": "error", "variant": "declaration", "kind": 1024, @@ -14315,7 +15067,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2416, + "line": 2485, "character": 8 } ], @@ -14328,13 +15080,13 @@ "groups": [ { "title": "Properties", - "children": [1544, 1545] + "children": [1546, 1547] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2414, + "line": 2483, "character": 8 } ] @@ -14358,7 +15110,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1384, + "line": 1416, "character": 4 } ], @@ -14440,15 +15192,7 @@ }, { "kind": "text", - "text": " to fetch the user object directly from the Auth server for this purpose.\n- When using in a browser, this function is synchronized across 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 " - }, - { - "kind": "code", - "text": "`lock`" - }, - { - "kind": "text", - "text": " property, if necessary, to make sure there are no race conditions while the session is being refreshed." + "text": " to fetch the user object directly from the Auth server for this purpose.\n- Cross-tab refresh races are handled by the GoTrue server (the rotated token from the first tab is returned to subsequent tabs via the parent-of-active mechanism), so no client-side serialization is needed." } ] }, @@ -14480,7 +15224,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1384, + "line": 1416, "character": 4 } ], @@ -14512,7 +15256,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1385, + "line": 1417, "character": 8 } ], @@ -14534,7 +15278,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1386, + "line": 1418, "character": 12 } ], @@ -14555,7 +15299,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1385, + "line": 1417, "character": 14 } ] @@ -14571,7 +15315,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1388, + "line": 1420, "character": 8 } ], @@ -14590,7 +15334,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1384, + "line": 1416, "character": 26 } ] @@ -14614,7 +15358,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1390, + "line": 1422, "character": 8 } ], @@ -14636,7 +15380,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1391, + "line": 1423, "character": 12 } ], @@ -14655,7 +15399,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1390, + "line": 1422, "character": 14 } ] @@ -14671,13 +15415,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1393, + "line": 1425, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14692,7 +15436,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1389, + "line": 1421, "character": 8 } ] @@ -14716,7 +15460,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1395, + "line": 1427, "character": 8 } ], @@ -14738,7 +15482,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1396, + "line": 1428, "character": 12 } ], @@ -14757,7 +15501,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1395, + "line": 1427, "character": 14 } ] @@ -14773,7 +15517,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1398, + "line": 1430, "character": 8 } ], @@ -14792,7 +15536,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1394, + "line": 1426, "character": 8 } ] @@ -14816,7 +15560,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1493, + "line": 1528, "character": 4 } ], @@ -14907,7 +15651,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1493, + "line": 1528, "character": 4 } ], @@ -14943,7 +15687,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -14963,7 +15707,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2087, + "line": 2125, "character": 4 } ], @@ -15036,7 +15780,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2087, + "line": 2125, "character": 4 } ], @@ -15068,7 +15812,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2088, + "line": 2126, "character": 8 } ], @@ -15090,7 +15834,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2089, + "line": 2127, "character": 12 } ], @@ -15098,7 +15842,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1708, + "target": 1710, "name": "UserIdentity", "package": "@supabase/auth-js" } @@ -15114,7 +15858,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2088, + "line": 2126, "character": 14 } ] @@ -15130,7 +15874,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2091, + "line": 2129, "character": 8 } ], @@ -15149,7 +15893,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2087, + "line": 2125, "character": 33 } ] @@ -15173,7 +15917,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2093, + "line": 2131, "character": 8 } ], @@ -15191,13 +15935,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2094, + "line": 2132, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -15212,7 +15956,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2092, + "line": 2130, "character": 8 } ] @@ -15236,7 +15980,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 137, + "line": 154, "character": 4 } ], @@ -15269,7 +16013,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 137, + "line": 154, "character": 4 } ], @@ -15282,7 +16026,7 @@ "typeArguments": [ { "type": "reference", - "target": 2104, + "target": 2106, "name": "InitializeResult", "package": "@supabase/auth-js" } @@ -15302,7 +16046,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 121, + "line": 138, "character": 4 } ], @@ -15324,7 +16068,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 121, + "line": 138, "character": 4 } ], @@ -15344,12 +16088,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2100, + "line": 2138, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2104, + "line": 2142, "character": 4 } ], @@ -15371,7 +16115,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2100, + "line": 2138, "character": 4 } ], @@ -15384,7 +16128,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1810, + "target": 1812, "name": "SignInWithOAuthCredentials", "package": "@supabase/auth-js" } @@ -15399,7 +16143,7 @@ "typeArguments": [ { "type": "reference", - "target": 1683, + "target": 1685, "name": "OAuthResponse", "package": "@supabase/auth-js" } @@ -15425,7 +16169,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2104, + "line": 2142, "character": 4 } ], @@ -15438,7 +16182,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1822, + "target": 1824, "name": "SignInWithIdTokenCredentials", "package": "@supabase/auth-js" } @@ -15453,7 +16197,7 @@ "typeArguments": [ { "type": "reference", - "target": 1674, + "target": 1676, "name": "AuthTokenResponse", "package": "@supabase/auth-js" } @@ -15473,12 +16217,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 4 } ], @@ -15500,7 +16244,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 4 } ], @@ -15530,7 +16274,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 32 } ], @@ -15544,7 +16288,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 32 } ], @@ -15557,7 +16301,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1587, + "target": 1589, "name": "AuthChangeEvent", "package": "@supabase/auth-js" } @@ -15613,7 +16357,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1948, + "line": 1983, "character": 8 } ], @@ -15635,13 +16379,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1949, + "line": 1984, "character": 12 } ], "type": { "type": "reference", - "target": 1762, + "target": 1764, "name": "Subscription", "package": "@supabase/auth-js" } @@ -15656,7 +16400,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1948, + "line": 1983, "character": 14 } ] @@ -15673,7 +16417,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 92 } ] @@ -15690,15 +16434,63 @@ "summary": [ { "kind": "text", - "text": "Avoid using an async function inside " + "text": "Receive a notification every time an auth event happens. Common reentry\npatterns (" }, { "kind": "code", - "text": "`onAuthStateChange`" + "text": "`getUser`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`setSession`" }, { "kind": "text", - "text": " as you might end\nup with a deadlock. The callback function runs inside an exclusive lock,\nso calling other Supabase Client APIs that also try to acquire the\nexclusive lock, might cause a deadlock. This behavior is observable across\ntabs. In the next major library version, this behavior will not be supported.\n\nReceive a notification every time an auth event happens." + "text": ", reading the session from inside a\nhandler) complete normally. One hazard remains: calling " + }, + { + "kind": "code", + "text": "`refreshSession`" + }, + { + "kind": "text", + "text": "\n(or anything that routes through " + }, + { + "kind": "code", + "text": "`_callRefreshToken`" + }, + { + "kind": "text", + "text": ") from inside a\n" + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " handler. " + }, + { + "kind": "code", + "text": "`refreshingDeferred`" + }, + { + "kind": "text", + "text": " resolves only after\n" + }, + { + "kind": "code", + "text": "`_notifyAllSubscribers`" + }, + { + "kind": "text", + "text": " returns, so the inner refresh dedupes onto the\nouter's unresolved promise and the two wait on each other." } ], "blockTags": [ @@ -15707,7 +16499,15 @@ "content": [ { "kind": "text", - "text": "Due to the possibility of deadlocks with async functions as callbacks, use the version without an async function." + "text": "Async callbacks can deadlock when they trigger a nested\nrefresh from a " + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " event. Prefer the sync overload, or move\nrefresh-triggering work outside the callback." } ] } @@ -15716,7 +16516,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 4 } ], @@ -15746,7 +16546,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 32 } ], @@ -15760,7 +16560,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 32 } ], @@ -15773,7 +16573,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1587, + "target": 1589, "name": "AuthChangeEvent", "package": "@supabase/auth-js" } @@ -15840,7 +16640,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1965, + "line": 2003, "character": 8 } ], @@ -15862,13 +16662,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1966, + "line": 2004, "character": 12 } ], "type": { "type": "reference", - "target": 1762, + "target": 1764, "name": "Subscription", "package": "@supabase/auth-js" } @@ -15883,7 +16683,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1965, + "line": 2003, "character": 14 } ] @@ -15900,7 +16700,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 101 } ] @@ -15918,7 +16718,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1237, + "line": 1269, "character": 4 } ], @@ -16003,7 +16803,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1237, + "line": 1269, "character": 4 } ], @@ -16016,7 +16816,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -16036,7 +16836,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1872, + "line": 1907, "character": 4 } ], @@ -16111,7 +16911,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1872, + "line": 1907, "character": 4 } ], @@ -16150,7 +16950,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1873, + "line": 1908, "character": 8 } ], @@ -16169,7 +16969,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1872, + "line": 1907, "character": 36 } ] @@ -16186,7 +16986,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -16198,7 +16998,7 @@ ] }, { - "id": 1549, + "id": 1551, "name": "registerPasskey", "variant": "declaration", "kind": 2048, @@ -16206,13 +17006,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2439, + "line": 2508, "character": 4 } ], "signatures": [ { - "id": 1550, + "id": 1552, "name": "registerPasskey", "variant": "signature", "kind": 4096, @@ -16247,13 +17047,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2439, + "line": 2508, "character": 4 } ], "parameters": [ { - "id": 1551, + "id": 1553, "name": "credentials", "variant": "param", "kind": 32768, @@ -16262,7 +17062,7 @@ }, "type": { "type": "reference", - "target": 2448, + "target": 2450, "name": "RegisterPasskeyCredentials", "package": "@supabase/auth-js" } @@ -16277,7 +17077,7 @@ "typeArguments": [ { "type": "reference", - "target": 2474, + "target": 2476, "name": "AuthPasskeyRegistrationVerifyResponse", "package": "@supabase/auth-js" } @@ -16297,7 +17097,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1298, + "line": 1330, "character": 4 } ], @@ -16447,7 +17247,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1298, + "line": 1330, "character": 4 } ], @@ -16460,7 +17260,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1908, + "target": 1910, "name": "ResendParams", "package": "@supabase/auth-js" } @@ -16475,7 +17275,7 @@ "typeArguments": [ { "type": "reference", - "target": 1669, + "target": 1671, "name": "AuthOtpResponse", "package": "@supabase/auth-js" } @@ -16495,7 +17295,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2037, + "line": 2075, "character": 4 } ], @@ -16622,7 +17422,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2037, + "line": 2075, "character": 4 } ], @@ -16682,7 +17482,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2039, + "line": 2077, "character": 8 } ], @@ -16710,7 +17510,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2038, + "line": 2076, "character": 8 } ], @@ -16729,7 +17529,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2037, + "line": 2075, "character": 51 } ] @@ -16765,7 +17565,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2041, + "line": 2079, "character": 8 } ], @@ -16789,7 +17589,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2042, + "line": 2080, "character": 8 } ], @@ -16808,7 +17608,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2040, + "line": 2078, "character": 16 } ] @@ -16832,7 +17632,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2044, + "line": 2082, "character": 8 } ], @@ -16850,13 +17650,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2045, + "line": 2083, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -16871,7 +17671,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2043, + "line": 2081, "character": 8 } ] @@ -16895,7 +17695,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1739, + "line": 1774, "character": 4 } ], @@ -16993,7 +17793,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1739, + "line": 1774, "character": 4 } ], @@ -17030,7 +17830,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1740, + "line": 1775, "character": 8 } ], @@ -17048,7 +17848,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1741, + "line": 1776, "character": 8 } ], @@ -17067,7 +17867,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1739, + "line": 1774, "character": 31 } ] @@ -17084,7 +17884,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -17104,7 +17904,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 218, + "line": 235, "character": 4 } ], @@ -17196,7 +17996,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 218, + "line": 235, "character": 4 } ], @@ -17211,7 +18011,7 @@ }, "type": { "type": "reference", - "target": 1772, + "target": 1774, "name": "SignInAnonymouslyCredentials", "package": "@supabase/auth-js" } @@ -17226,7 +18026,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -17246,7 +18046,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 945, + "line": 977, "character": 4 } ], @@ -17311,7 +18111,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 945, + "line": 977, "character": 4 } ], @@ -17324,7 +18124,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1822, + "target": 1824, "name": "SignInWithIdTokenCredentials", "package": "@supabase/auth-js" } @@ -17339,7 +18139,7 @@ "typeArguments": [ { "type": "reference", - "target": 1674, + "target": 1676, "name": "AuthTokenResponse", "package": "@supabase/auth-js" } @@ -17359,7 +18159,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 594, + "line": 626, "character": 4 } ], @@ -17526,7 +18326,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 594, + "line": 626, "character": 4 } ], @@ -17539,7 +18339,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1810, + "target": 1812, "name": "SignInWithOAuthCredentials", "package": "@supabase/auth-js" } @@ -17554,7 +18354,7 @@ "typeArguments": [ { "type": "reference", - "target": 1683, + "target": 1685, "name": "OAuthResponse", "package": "@supabase/auth-js" } @@ -17574,7 +18374,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1023, + "line": 1055, "character": 4 } ], @@ -17758,7 +18558,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1023, + "line": 1055, "character": 4 } ], @@ -17771,7 +18571,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1791, + "target": 1793, "name": "SignInWithPasswordlessCredentials", "package": "@supabase/auth-js" } @@ -17786,7 +18586,7 @@ "typeArguments": [ { "type": "reference", - "target": 1669, + "target": 1671, "name": "AuthOtpResponse", "package": "@supabase/auth-js" } @@ -17798,7 +18598,7 @@ ] }, { - "id": 1546, + "id": 1548, "name": "signInWithPasskey", "variant": "declaration", "kind": 2048, @@ -17806,13 +18606,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2428, + "line": 2497, "character": 4 } ], "signatures": [ { - "id": 1547, + "id": 1549, "name": "signInWithPasskey", "variant": "signature", "kind": 4096, @@ -17847,13 +18647,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2428, + "line": 2497, "character": 4 } ], "parameters": [ { - "id": 1548, + "id": 1550, "name": "credentials", "variant": "param", "kind": 32768, @@ -17862,7 +18662,7 @@ }, "type": { "type": "reference", - "target": 2442, + "target": 2444, "name": "SignInWithPasskeyCredentials", "package": "@supabase/auth-js" } @@ -17877,7 +18677,7 @@ "typeArguments": [ { "type": "reference", - "target": 2476, + "target": 2478, "name": "AuthPasskeyAuthenticationVerifyResponse", "package": "@supabase/auth-js" } @@ -17897,7 +18697,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 514, + "line": 546, "character": 4 } ], @@ -17966,13 +18766,96 @@ "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n phone: '+13334445555',\n password: 'some-password',\n})\n```" } ] + }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nLog the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so fields like " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": ", and " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": " aren't hidden. The " + }, + { + "kind": "code", + "text": "`error.code`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`'invalid_credentials'`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`'email_not_confirmed'`" + }, + { + "kind": "text", + "text": ") is often more useful for branching than " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": ", and the full object surfaces both." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n email: 'example@email.com',\n password: 'example-password',\n})\nif (error) {\n console.error(error)\n return\n}\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 514, + "line": 546, "character": 4 } ], @@ -17985,7 +18868,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1786, + "target": 1788, "name": "SignInWithPasswordCredentials", "package": "@supabase/auth-js" } @@ -18000,7 +18883,7 @@ "typeArguments": [ { "type": "reference", - "target": 1678, + "target": 1680, "name": "AuthTokenResponsePassword", "package": "@supabase/auth-js" } @@ -18020,7 +18903,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1215, + "line": 1247, "character": 4 } ], @@ -18098,7 +18981,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1215, + "line": 1247, "character": 4 } ], @@ -18111,7 +18994,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1922, + "target": 1924, "name": "SignInWithSSO", "package": "@supabase/auth-js" } @@ -18126,7 +19009,7 @@ "typeArguments": [ { "type": "reference", - "target": 1696, + "target": 1698, "name": "SSOResponse", "package": "@supabase/auth-js" } @@ -18146,7 +19029,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 854, + "line": 886, "character": 4 } ], @@ -18237,7 +19120,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 854, + "line": 886, "character": 4 } ], @@ -18250,7 +19133,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1883, + "target": 1885, "name": "Web3Credentials", "package": "@supabase/auth-js" } @@ -18284,7 +19167,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 855, + "line": 887, "character": 8 } ], @@ -18306,7 +19189,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 856, + "line": 888, "character": 12 } ], @@ -18326,7 +19209,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 857, + "line": 889, "character": 12 } ], @@ -18347,7 +19230,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 855, + "line": 887, "character": 14 } ] @@ -18363,7 +19246,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 859, + "line": 891, "character": 8 } ], @@ -18382,7 +19265,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 854, + "line": 886, "character": 58 } ] @@ -18406,7 +19289,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 861, + "line": 893, "character": 8 } ], @@ -18428,7 +19311,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 862, + "line": 894, "character": 12 } ], @@ -18446,7 +19329,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 863, + "line": 895, "character": 12 } ], @@ -18465,7 +19348,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 861, + "line": 893, "character": 14 } ] @@ -18481,13 +19364,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 865, + "line": 897, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -18502,7 +19385,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 860, + "line": 892, "character": 8 } ] @@ -18526,7 +19409,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1935, + "line": 1970, "character": 4 } ], @@ -18686,7 +19569,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1935, + "line": 1970, "character": 4 } ], @@ -18701,7 +19584,7 @@ }, "type": { "type": "reference", - "target": 2119, + "target": 2121, "name": "SignOut", "package": "@supabase/auth-js" } @@ -18732,7 +19615,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1971, "character": 8 } ], @@ -18745,7 +19628,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -18762,7 +19645,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1935, + "line": 1970, "character": 40 } ] @@ -18784,7 +19667,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 396, + "line": 413, "character": 4 } ], @@ -18989,7 +19872,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 396, + "line": 413, "character": 4 } ], @@ -19002,7 +19885,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1780, "name": "SignUpWithPasswordCredentials", "package": "@supabase/auth-js" } @@ -19017,7 +19900,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -19037,7 +19920,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2220, + "line": 2258, "character": 4 } ], @@ -19058,7 +19941,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClientOptions#autoRefreshToken", - "target": 1613 + "target": 1615 }, { "kind": "text", @@ -19112,7 +19995,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2220, + "line": 2258, "character": 4 } ], @@ -19143,7 +20026,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2251, + "line": 2289, "character": 4 } ], @@ -19204,7 +20087,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2251, + "line": 2289, "character": 4 } ], @@ -19235,7 +20118,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2132, + "line": 2170, "character": 4 } ], @@ -19295,7 +20178,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2132, + "line": 2170, "character": 4 } ], @@ -19308,7 +20191,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1708, + "target": 1710, "name": "UserIdentity", "package": "@supabase/auth-js" } @@ -19342,7 +20225,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2133, + "line": 2171, "character": 8 } ], @@ -19366,7 +20249,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2134, + "line": 2172, "character": 8 } ], @@ -19385,7 +20268,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2132, + "line": 2170, "character": 52 } ] @@ -19409,7 +20292,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2136, + "line": 2174, "character": 8 } ], @@ -19427,13 +20310,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2137, + "line": 2175, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -19448,7 +20331,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2135, + "line": 2173, "character": 8 } ] @@ -19472,7 +20355,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1609, + "line": 1644, "character": 4 } ], @@ -19653,7 +20536,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1609, + "line": 1644, "character": 4 } ], @@ -19666,7 +20549,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1741, + "target": 1743, "name": "UserAttributes", "package": "@supabase/auth-js" } @@ -19699,7 +20582,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1610, + "line": 1645, "character": 8 } ], @@ -19718,7 +20601,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1609, + "line": 1644, "character": 53 } ] @@ -19735,7 +20618,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -19755,7 +20638,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1161, + "line": 1193, "character": 4 } ], @@ -19928,7 +20811,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1161, + "line": 1193, "character": 4 } ], @@ -19941,7 +20824,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1884, + "target": 1886, "name": "VerifyOtpParams", "package": "@supabase/auth-js" } @@ -19956,7 +20839,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -19971,26 +20854,26 @@ "groups": [ { "title": "Constructors", - "children": [1224] + "children": [1223] }, { "title": "Properties", "children": [ - 1228, 1255, 1256, 1246, 1291, 1262, 1290, 1277, 1233, 1275, 1271, 1261, 1285, 1286, - 1289, 1292, 1293, 1250, 1229, 1230, 1231, 1287, 1247, 1260, 1254, 1248, 1232, 1276, - 1288, 1270, 1249, 1257 + 1260, 1227, 1254, 1255, 1245, 1291, 1262, 1290, 1277, 1232, 1275, 1271, 1261, 1285, + 1286, 1289, 1292, 1293, 1249, 1228, 1229, 1230, 1287, 1246, 1259, 1253, 1247, 1231, + 1276, 1288, 1270, 1248, 1256 ] }, { "title": "Accessors", - "children": [1234, 1242] + "children": [1233, 1241] }, { "title": "Methods", "children": [ - 1410, 1399, 1423, 1387, 1318, 1523, 1357, 1377, 1464, 1303, 1298, 1474, 1428, 1351, - 1405, 1549, 1354, 1450, 1393, 1306, 1339, 1315, 1342, 1546, 1312, 1348, 1321, 1418, - 1309, 1502, 1504, 1481, 1381, 1345 + 1410, 1399, 1423, 1387, 1506, 1318, 1525, 1357, 1377, 1464, 1303, 1298, 1474, 1428, + 1351, 1405, 1551, 1354, 1450, 1393, 1306, 1339, 1315, 1342, 1548, 1312, 1348, 1321, + 1418, 1309, 1502, 1504, 1481, 1381, 1345 ] } ], @@ -19998,16 +20881,17 @@ { "title": "Auth", "children": [ - 1318, 1523, 1357, 1377, 1464, 1303, 1351, 1405, 1549, 1354, 1450, 1393, 1306, 1339, - 1315, 1342, 1546, 1312, 1348, 1321, 1418, 1309, 1502, 1504, 1481, 1381, 1345 + 1506, 1318, 1525, 1357, 1377, 1464, 1303, 1351, 1405, 1551, 1354, 1450, 1393, 1306, + 1339, 1315, 1342, 1548, 1312, 1348, 1321, 1418, 1309, 1502, 1504, 1481, 1381, 1345 ] }, { "title": "Other", "children": [ - 1224, 1228, 1255, 1256, 1246, 1291, 1262, 1290, 1277, 1233, 1275, 1271, 1261, 1285, - 1286, 1289, 1292, 1293, 1250, 1229, 1230, 1231, 1287, 1247, 1260, 1254, 1248, 1232, - 1276, 1288, 1270, 1249, 1257, 1234, 1242, 1410, 1399, 1423, 1387, 1298, 1474, 1428 + 1223, 1260, 1227, 1254, 1255, 1245, 1291, 1262, 1290, 1277, 1232, 1275, 1271, 1261, + 1285, 1286, 1289, 1292, 1293, 1249, 1228, 1229, 1230, 1287, 1246, 1259, 1253, 1247, + 1231, 1276, 1288, 1270, 1248, 1256, 1233, 1241, 1410, 1399, 1423, 1387, 1298, 1474, + 1428 ] } ], @@ -20020,25 +20904,44 @@ ] }, { - "id": 1569, + "id": 1571, "name": "NavigatorLockAcquireTimeoutError", "variant": "declaration", "kind": 128, "flags": {}, "comment": { - "summary": [ - { - "kind": "text", - "text": "Error thrown when the browser Navigator Lock API fails to acquire a lock." - } - ], + "summary": [], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "The auth client doesn't call " + }, + { + "kind": "code", + "text": "`navigator.locks`" + }, + { + "kind": "text", + "text": ", so this error\nnever originates from " + }, + { + "kind": "code", + "text": "`supabase.auth.*`" + }, + { + "kind": "text", + "text": " calls. Direct callers of\n" + }, { "kind": "code", - "text": "```ts\nimport { NavigatorLockAcquireTimeoutError } from '@supabase/auth-js'\n\nthrow new NavigatorLockAcquireTimeoutError('Lock timed out')\n```" + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " still receive it on acquire timeout." } ] } @@ -20046,7 +20949,7 @@ }, "children": [ { - "id": 1570, + "id": 1572, "name": "constructor", "variant": "declaration", "kind": 512, @@ -20054,13 +20957,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 28, + "line": 29, "character": 4 } ], "signatures": [ { - "id": 1571, + "id": 1573, "name": "NavigatorLockAcquireTimeoutError", "variant": "signature", "kind": 16384, @@ -20068,13 +20971,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 28, + "line": 29, "character": 4 } ], "parameters": [ { - "id": 1572, + "id": 1574, "name": "message", "variant": "param", "kind": 32768, @@ -20087,7 +20990,7 @@ ], "type": { "type": "reference", - "target": 1569, + "target": 1571, "name": "NavigatorLockAcquireTimeoutError", "package": "@supabase/auth-js" }, @@ -20105,7 +21008,7 @@ } }, { - "id": 1573, + "id": 1575, "name": "isAcquireTimeout", "variant": "declaration", "kind": 1024, @@ -20116,7 +21019,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 27, + "line": 28, "character": 13 } ], @@ -20135,17 +21038,17 @@ "groups": [ { "title": "Constructors", - "children": [1570] + "children": [1572] }, { "title": "Properties", - "children": [1573] + "children": [1575] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 40, + "line": 36, "character": 21 } ], @@ -20179,7 +21082,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -20232,7 +21135,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -20303,7 +21206,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 696, + "line": 715, "character": 4 } ], @@ -20323,7 +21226,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 699, + "line": 718, "character": 4 } ], @@ -20549,7 +21452,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 694, + "line": 713, "character": 4 } ], @@ -20574,7 +21477,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 700, + "line": 719, "character": 4 } ], @@ -20592,7 +21495,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 692, + "line": 711, "character": 4 } ], @@ -20633,7 +21536,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 703, + "line": 722, "character": 4 } ], @@ -20653,7 +21556,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 695, + "line": 714, "character": 4 } ], @@ -20673,7 +21576,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 701, + "line": 720, "character": 4 } ], @@ -20693,7 +21596,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 697, + "line": 716, "character": 4 } ], @@ -20713,7 +21616,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 698, + "line": 717, "character": 4 } ], @@ -20736,7 +21639,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 693, + "line": 712, "character": 4 } ], @@ -20761,7 +21664,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 702, + "line": 721, "character": 4 } ], @@ -20780,7 +21683,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 23 } ] @@ -20835,7 +21738,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 660, + "line": 679, "character": 12 } ], @@ -20855,7 +21758,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 663, + "line": 682, "character": 12 } ], @@ -21083,7 +21986,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 658, + "line": 677, "character": 12 } ], @@ -21108,7 +22011,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 664, + "line": 683, "character": 12 } ], @@ -21128,7 +22031,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 656, + "line": 675, "character": 12 } ], @@ -21169,7 +22072,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 667, + "line": 686, "character": 12 } ], @@ -21190,7 +22093,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 659, + "line": 678, "character": 12 } ], @@ -21210,7 +22113,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 665, + "line": 684, "character": 12 } ], @@ -21230,7 +22133,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 661, + "line": 680, "character": 12 } ], @@ -21251,7 +22154,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 662, + "line": 681, "character": 12 } ], @@ -21276,7 +22179,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 657, + "line": 676, "character": 12 } ], @@ -21301,7 +22204,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 666, + "line": 685, "character": 12 } ], @@ -21319,7 +22222,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -21489,7 +22392,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -21543,7 +22446,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 901, + "line": 920, "character": 4 } ], @@ -21562,7 +22465,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 43 } ] @@ -21586,7 +22489,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 903, + "line": 922, "character": 4 } ], @@ -21605,7 +22508,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 902, + "line": 921, "character": 6 } ] @@ -21828,7 +22731,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -21865,7 +22768,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -21906,7 +22809,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 805, + "line": 824, "character": 2 } ], @@ -21956,7 +22859,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 805, + "line": 824, "character": 2 } ], @@ -22039,7 +22942,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -22072,7 +22975,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -22116,7 +23019,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -22224,7 +23127,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -22244,7 +23147,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -22277,7 +23180,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -22386,7 +23289,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -22400,7 +23303,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -22534,7 +23437,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -22548,7 +23451,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -22655,7 +23558,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -22694,7 +23597,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -22798,7 +23701,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 655, + "line": 674, "character": 23 } ], @@ -22923,7 +23826,127 @@ "summary": [ { "kind": "text", - "text": "Error format\n\n" + "text": "Error format\n\nReturned by every PostgREST request that fails. When something fails, the\nsingle most useful field is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — Postgres often returns the\nactionable fix there, not in " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": ". Always log the full object (e.g.\n" + }, + { + "kind": "code", + "text": "`console.error(error)`" + }, + { + "kind": "text", + "text": "); logging only " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": " hides the hint.\n\nRead the fields in roughly this order of usefulness:\n\n- " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — actionable guidance from the database when available. For\n permission-denied errors (" + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "), this is the literal SQL to fix the\n problem, e.g.\n " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.users TO anon;\"`" + }, + { + "kind": "text", + "text": ".\n Missing column? " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " suggests the column you probably meant. Whenever\n Postgres knows the fix, it puts it in " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": ".\n- " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": " — stable error code from PostgREST (e.g. " + }, + { + "kind": "code", + "text": "`PGRST301`" + }, + { + "kind": "text", + "text": ") or Postgres\n (e.g. " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "). Branch on this rather than on " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " text.\n- " + }, + { + "kind": "code", + "text": "`details`" + }, + { + "kind": "text", + "text": " — extra context, often the offending value, key, or row.\n- " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " — human-readable summary. Useful in UI strings; less useful\n for debugging.\n\n" }, { "kind": "inline-tag", @@ -22943,7 +23966,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 24, + "line": 43, "character": 2 } ], @@ -22971,7 +23994,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 24, + "line": 43, "character": 2 } ], @@ -23000,7 +24023,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 28, + "line": 47, "character": 4 } ], @@ -23018,7 +24041,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 26, + "line": 45, "character": 4 } ], @@ -23036,7 +24059,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 27, + "line": 46, "character": 4 } ], @@ -23054,7 +24077,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 25, + "line": 44, "character": 4 } ], @@ -23073,7 +24096,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 24, + "line": 43, "character": 23 } ] @@ -23109,7 +24132,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 10, + "line": 29, "character": 2 } ], @@ -23127,7 +24150,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 8, + "line": 27, "character": 2 } ], @@ -23145,7 +24168,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 9, + "line": 28, "character": 2 } ], @@ -23163,7 +24186,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 30, + "line": 49, "character": 2 } ], @@ -23177,7 +24200,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 30, + "line": 49, "character": 2 } ], @@ -23199,7 +24222,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 35, + "line": 54, "character": 4 } ], @@ -23217,7 +24240,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 33, + "line": 52, "character": 4 } ], @@ -23235,7 +24258,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 34, + "line": 53, "character": 4 } ], @@ -23253,7 +24276,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 32, + "line": 51, "character": 4 } ], @@ -23271,7 +24294,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 31, + "line": 50, "character": 4 } ], @@ -23290,7 +24313,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 30, + "line": 49, "character": 12 } ] @@ -23317,7 +24340,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 7, + "line": 26, "character": 14 } ], @@ -23349,7 +24372,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -23402,7 +24425,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -23533,7 +24556,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 696, + "line": 715, "character": 4 } ], @@ -23553,7 +24576,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 699, + "line": 718, "character": 4 } ], @@ -23779,7 +24802,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 694, + "line": 713, "character": 4 } ], @@ -23804,7 +24827,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 700, + "line": 719, "character": 4 } ], @@ -23822,7 +24845,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 692, + "line": 711, "character": 4 } ], @@ -23863,7 +24886,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 703, + "line": 722, "character": 4 } ], @@ -23883,7 +24906,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 695, + "line": 714, "character": 4 } ], @@ -23903,7 +24926,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 701, + "line": 720, "character": 4 } ], @@ -23923,7 +24946,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 697, + "line": 716, "character": 4 } ], @@ -23943,7 +24966,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 698, + "line": 717, "character": 4 } ], @@ -23966,7 +24989,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 693, + "line": 712, "character": 4 } ], @@ -23991,7 +25014,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 702, + "line": 721, "character": 4 } ], @@ -24012,7 +25035,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 23 } ] @@ -24110,7 +25133,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 660, + "line": 679, "character": 12 } ], @@ -24136,7 +25159,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 663, + "line": 682, "character": 12 } ], @@ -24370,7 +25393,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 658, + "line": 677, "character": 12 } ], @@ -24401,7 +25424,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 664, + "line": 683, "character": 12 } ], @@ -24427,7 +25450,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 656, + "line": 675, "character": 12 } ], @@ -24474,7 +25497,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 667, + "line": 686, "character": 12 } ], @@ -24501,7 +25524,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 659, + "line": 678, "character": 12 } ], @@ -24527,7 +25550,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 665, + "line": 684, "character": 12 } ], @@ -24553,7 +25576,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 661, + "line": 680, "character": 12 } ], @@ -24580,7 +25603,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 662, + "line": 681, "character": 12 } ], @@ -24611,7 +25634,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 657, + "line": 676, "character": 12 } ], @@ -24642,7 +25665,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 666, + "line": 685, "character": 12 } ], @@ -24667,7 +25690,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -24799,7 +25822,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -24855,12 +25878,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1860, + "line": 1879, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1861, + "line": 1880, "character": 2 } ], @@ -24874,7 +25897,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1860, + "line": 1879, "character": 2 } ], @@ -24981,7 +26004,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1861, + "line": 1880, "character": 2 } ], @@ -25060,12 +26083,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1858, + "line": 1877, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1859, + "line": 1878, "character": 2 } ], @@ -25079,7 +26102,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1858, + "line": 1877, "character": 2 } ], @@ -25186,7 +26209,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1859, + "line": 1878, "character": 2 } ], @@ -25267,7 +26290,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -25364,7 +26387,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -25410,7 +26433,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1712, + "line": 1731, "character": 2 } ], @@ -25536,7 +26559,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1712, + "line": 1731, "character": 2 } ], @@ -25868,7 +26891,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -26026,7 +27049,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -26083,7 +27106,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1589, + "line": 1608, "character": 4 } ], @@ -26119,7 +27142,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1592, + "line": 1611, "character": 4 } ], @@ -26159,7 +27182,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1594, + "line": 1613, "character": 4 } ], @@ -26204,7 +27227,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1591, + "line": 1610, "character": 4 } ], @@ -26248,7 +27271,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1590, + "line": 1609, "character": 4 } ], @@ -26284,7 +27307,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1593, + "line": 1612, "character": 4 } ], @@ -26303,7 +27326,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1588, + "line": 1607, "character": 6 } ] @@ -26404,12 +27427,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2045, + "line": 2064, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2046, + "line": 2065, "character": 2 } ], @@ -26423,7 +27446,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2045, + "line": 2064, "character": 2 } ], @@ -26602,7 +27625,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2046, + "line": 2065, "character": 2 } ], @@ -26659,7 +27682,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -26702,7 +27725,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -26763,12 +27786,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1765, + "line": 1784, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1766, + "line": 1785, "character": 2 } ], @@ -26782,7 +27805,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1765, + "line": 1784, "character": 2 } ], @@ -26854,7 +27877,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1766, + "line": 1785, "character": 2 } ], @@ -26898,12 +27921,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1767, + "line": 1786, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1768, + "line": 1787, "character": 2 } ], @@ -26917,7 +27940,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1767, + "line": 1786, "character": 2 } ], @@ -26989,7 +28012,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1768, + "line": 1787, "character": 2 } ], @@ -27033,12 +28056,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1779, + "line": 1798, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1780, + "line": 1799, "character": 2 } ], @@ -27052,7 +28075,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1779, + "line": 1798, "character": 2 } ], @@ -27110,7 +28133,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1780, + "line": 1799, "character": 2 } ], @@ -27154,12 +28177,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1781, + "line": 1800, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1782, + "line": 1801, "character": 2 } ], @@ -27173,7 +28196,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1781, + "line": 1800, "character": 2 } ], @@ -27238,7 +28261,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1782, + "line": 1801, "character": 2 } ], @@ -27289,12 +28312,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1783, + "line": 1802, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1784, + "line": 1803, "character": 2 } ], @@ -27308,7 +28331,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1783, + "line": 1802, "character": 2 } ], @@ -27373,7 +28396,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1784, + "line": 1803, "character": 2 } ], @@ -27424,7 +28447,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1850, + "line": 1869, "character": 2 } ], @@ -27534,7 +28557,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1850, + "line": 1869, "character": 2 } ], @@ -27719,12 +28742,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1789, + "line": 1808, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1790, + "line": 1809, "character": 2 } ], @@ -27738,7 +28761,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1789, + "line": 1808, "character": 2 } ], @@ -27828,7 +28851,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1790, + "line": 1809, "character": 2 } ], @@ -27881,7 +28904,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1801, + "line": 1820, "character": 2 } ], @@ -27951,7 +28974,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1801, + "line": 1820, "character": 2 } ], @@ -28129,12 +29152,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1773, + "line": 1792, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1774, + "line": 1793, "character": 2 } ], @@ -28148,7 +29171,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1773, + "line": 1792, "character": 2 } ], @@ -28206,7 +29229,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1774, + "line": 1793, "character": 2 } ], @@ -28250,12 +29273,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1775, + "line": 1794, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1776, + "line": 1795, "character": 2 } ], @@ -28269,7 +29292,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1775, + "line": 1794, "character": 2 } ], @@ -28334,7 +29357,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1776, + "line": 1795, "character": 2 } ], @@ -28385,12 +29408,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1777, + "line": 1796, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1778, + "line": 1797, "character": 2 } ], @@ -28404,7 +29427,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1777, + "line": 1796, "character": 2 } ], @@ -28469,7 +29492,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1778, + "line": 1797, "character": 2 } ], @@ -28522,7 +29545,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -28662,7 +29685,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -28738,7 +29761,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1224, + "line": 1243, "character": 4 } ], @@ -28766,7 +29789,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1225, + "line": 1244, "character": 4 } ], @@ -28785,7 +29808,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1223, + "line": 1242, "character": 6 } ] @@ -28819,12 +29842,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1769, + "line": 1788, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1770, + "line": 1789, "character": 2 } ], @@ -28838,7 +29861,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1769, + "line": 1788, "character": 2 } ], @@ -28910,7 +29933,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1770, + "line": 1789, "character": 2 } ], @@ -28954,12 +29977,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1771, + "line": 1790, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1772, + "line": 1791, "character": 2 } ], @@ -28973,7 +29996,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1771, + "line": 1790, "character": 2 } ], @@ -29045,7 +30068,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1772, + "line": 1791, "character": 2 } ], @@ -29089,12 +30112,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1882, + "line": 1901, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1883, + "line": 1902, "character": 2 } ], @@ -29108,7 +30131,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1882, + "line": 1901, "character": 2 } ], @@ -29184,7 +30207,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1883, + "line": 1902, "character": 2 } ], @@ -29234,7 +30257,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -29269,7 +30292,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -29473,7 +30496,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -29585,7 +30608,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -29690,7 +30713,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1764, + "line": 1783, "character": 2 } ], @@ -29824,7 +30847,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1764, + "line": 1783, "character": 2 } ], @@ -30137,17 +31160,17 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1884, + "line": 1903, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1885, + "line": 1904, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1886, + "line": 1905, "character": 2 } ], @@ -30161,7 +31184,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1884, + "line": 1903, "character": 2 } ], @@ -30395,7 +31418,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1885, + "line": 1904, "character": 2 } ], @@ -30483,7 +31506,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1886, + "line": 1905, "character": 2 } ], @@ -30538,7 +31561,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1857, + "line": 1876, "character": 2 } ], @@ -30576,7 +31599,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1857, + "line": 1876, "character": 2 } ], @@ -30761,7 +31784,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2038, + "line": 2057, "character": 2 } ], @@ -31004,7 +32027,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2038, + "line": 2057, "character": 2 } ], @@ -31080,7 +32103,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2042, + "line": 2061, "character": 4 } ], @@ -31108,7 +32131,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2043, + "line": 2062, "character": 4 } ], @@ -31127,7 +32150,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2041, + "line": 2060, "character": 6 } ] @@ -31153,22 +32176,22 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -31184,7 +32207,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 } ], @@ -31244,7 +32267,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1095, + "line": 1114, "character": 4 } ], @@ -31264,7 +32287,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1096, + "line": 1115, "character": 4 } ], @@ -31284,7 +32307,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1097, + "line": 1116, "character": 4 } ], @@ -31303,7 +32326,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 77 } ] @@ -31332,7 +32355,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 } ], @@ -31376,7 +32399,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1100, + "line": 1119, "character": 4 } ], @@ -31396,7 +32419,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1101, + "line": 1120, "character": 4 } ], @@ -31416,7 +32439,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1102, + "line": 1121, "character": 4 } ], @@ -31435,7 +32458,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 34 } ] @@ -31490,7 +32513,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 } ], @@ -31550,7 +32573,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1108, + "line": 1127, "character": 4 } ], @@ -31570,7 +32593,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1110, + "line": 1129, "character": 4 } ], @@ -31590,7 +32613,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1109, + "line": 1128, "character": 4 } ], @@ -31609,7 +32632,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 77 } ] @@ -31664,7 +32687,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -31708,7 +32731,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1116, + "line": 1135, "character": 4 } ], @@ -31728,7 +32751,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1118, + "line": 1137, "character": 4 } ], @@ -31748,7 +32771,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1117, + "line": 1136, "character": 4 } ], @@ -31767,7 +32790,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 34 } ] @@ -31801,12 +32824,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1872, + "line": 1891, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1873, + "line": 1892, "character": 2 } ], @@ -31820,7 +32843,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1872, + "line": 1891, "character": 2 } ], @@ -31908,7 +32931,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1873, + "line": 1892, "character": 2 } ], @@ -31970,7 +32993,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -32142,7 +33165,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -32196,7 +33219,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 901, + "line": 920, "character": 4 } ], @@ -32215,7 +33238,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 43 } ] @@ -32239,7 +33262,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 903, + "line": 922, "character": 4 } ], @@ -32258,7 +33281,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 902, + "line": 921, "character": 6 } ] @@ -32489,7 +33512,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -32625,7 +33648,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -32720,7 +33743,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1286, + "line": 1305, "character": 4 } ], @@ -32748,7 +33771,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1287, + "line": 1306, "character": 4 } ], @@ -32767,7 +33790,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1285, + "line": 1304, "character": 6 } ] @@ -32801,12 +33824,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1870, + "line": 1889, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1871, + "line": 1890, "character": 2 } ], @@ -32820,7 +33843,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1870, + "line": 1889, "character": 2 } ], @@ -32878,7 +33901,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1871, + "line": 1890, "character": 2 } ], @@ -32922,12 +33945,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1862, + "line": 1881, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1863, + "line": 1882, "character": 2 } ], @@ -32941,7 +33964,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1862, + "line": 1881, "character": 2 } ], @@ -32999,7 +34022,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1863, + "line": 1882, "character": 2 } ], @@ -33043,12 +34066,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1864, + "line": 1883, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1865, + "line": 1884, "character": 2 } ], @@ -33062,7 +34085,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1864, + "line": 1883, "character": 2 } ], @@ -33120,7 +34143,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1865, + "line": 1884, "character": 2 } ], @@ -33164,12 +34187,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1866, + "line": 1885, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1867, + "line": 1886, "character": 2 } ], @@ -33183,7 +34206,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1866, + "line": 1885, "character": 2 } ], @@ -33241,7 +34264,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1867, + "line": 1886, "character": 2 } ], @@ -33285,12 +34308,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1868, + "line": 1887, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1869, + "line": 1888, "character": 2 } ], @@ -33304,7 +34327,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1868, + "line": 1887, "character": 2 } ], @@ -33362,7 +34385,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1869, + "line": 1888, "character": 2 } ], @@ -33406,12 +34429,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1787, + "line": 1806, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1788, + "line": 1807, "character": 2 } ], @@ -33425,7 +34448,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1787, + "line": 1806, "character": 2 } ], @@ -33483,7 +34506,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1788, + "line": 1807, "character": 2 } ], @@ -33527,12 +34550,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1785, + "line": 1804, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1786, + "line": 1805, "character": 2 } ], @@ -33546,7 +34569,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1785, + "line": 1804, "character": 2 } ], @@ -33604,7 +34627,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1786, + "line": 1805, "character": 2 } ], @@ -33650,7 +34673,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -33689,7 +34712,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -33742,7 +34765,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -33858,7 +34881,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -33985,7 +35008,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -34028,7 +35051,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -34060,7 +35083,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -34196,7 +35219,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -34448,7 +35471,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -34483,7 +35506,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -34539,7 +35562,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -34651,7 +35674,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -34749,7 +35772,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -34859,7 +35882,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -34889,12 +35912,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1874, + "line": 1893, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1878, + "line": 1897, "character": 2 } ], @@ -34908,7 +35931,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1874, + "line": 1893, "character": 2 } ], @@ -34979,7 +36002,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1875, + "line": 1894, "character": 4 } ], @@ -34999,7 +36022,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1876, + "line": 1895, "character": 4 } ], @@ -35031,7 +36054,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1874, + "line": 1893, "character": 97 } ] @@ -35053,7 +36076,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1878, + "line": 1897, "character": 2 } ], @@ -35108,7 +36131,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1879, + "line": 1898, "character": 4 } ], @@ -35128,7 +36151,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1880, + "line": 1899, "character": 4 } ], @@ -35160,7 +36183,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1878, + "line": 1897, "character": 54 } ] @@ -35186,7 +36209,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -35221,7 +36244,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -35296,7 +36319,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -35310,7 +36333,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -35410,7 +36433,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -35424,7 +36447,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -35533,7 +36556,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -35574,7 +36597,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -35731,7 +36754,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1665, + "line": 1684, "character": 14 } ], @@ -35918,7 +36941,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2097, + "line": 2116, "character": 2 } ], @@ -35971,7 +36994,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2097, + "line": 2116, "character": 2 } ], @@ -36083,7 +37106,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2051, + "line": 2070, "character": 2 } ], @@ -36108,7 +37131,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2050, + "line": 2069, "character": 216 } ] @@ -36198,7 +37221,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2106, + "line": 2125, "character": 4 } ], @@ -36434,7 +37457,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2104, + "line": 2123, "character": 4 } ], @@ -36467,7 +37490,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2108, + "line": 2127, "character": 4 } ], @@ -36495,7 +37518,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2105, + "line": 2124, "character": 4 } ], @@ -36523,7 +37546,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2107, + "line": 2126, "character": 4 } ], @@ -36542,7 +37565,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2103, + "line": 2122, "character": 5 } ] @@ -36612,7 +37635,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2057, + "line": 2076, "character": 2 } ], @@ -36838,7 +37861,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2054, + "line": 2073, "character": 2 } ], @@ -36879,7 +37902,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2065, + "line": 2084, "character": 2 } ], @@ -36899,7 +37922,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2055, + "line": 2074, "character": 2 } ], @@ -36919,7 +37942,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2056, + "line": 2075, "character": 2 } ], @@ -36942,7 +37965,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2053, + "line": 2072, "character": 2 } ], @@ -36965,7 +37988,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2058, + "line": 2077, "character": 2 } ], @@ -36983,7 +38006,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3512, + "line": 3594, "character": 2 } ], @@ -37112,6 +38135,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT DELETE ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').delete().eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Delete a record and return it", @@ -37189,7 +38271,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3512, + "line": 3594, "character": 2 } ], @@ -37270,7 +38352,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3515, + "line": 3597, "character": 4 } ], @@ -37321,7 +38403,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3514, + "line": 3596, "character": 6 } ] @@ -37404,7 +38486,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3008, + "line": 3063, "character": 2 } ], @@ -37476,6 +38558,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').insert({ id: 1, name: 'Mordor' })\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Create a record and return it", @@ -37562,7 +38703,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3008, + "line": 3063, "character": 2 } ], @@ -37647,7 +38788,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3011, + "line": 3066, "character": 4 } ], @@ -37666,7 +38807,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3010, + "line": 3065, "character": 87 } ] @@ -37750,7 +38891,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3013, + "line": 3068, "character": 4 } ], @@ -37769,7 +38910,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3012, + "line": 3067, "character": 85 } ] @@ -37896,7 +39037,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3018, + "line": 3073, "character": 4 } ], @@ -37964,7 +39105,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3019, + "line": 3074, "character": 4 } ], @@ -37983,7 +39124,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3017, + "line": 3072, "character": 6 } ] @@ -38066,7 +39207,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2893, + "line": 2939, "character": 2 } ], @@ -38203,6 +39344,86 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nThe most useful field on a Postgres error is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — when the database knows the fix, it puts the literal SQL there. For example, a permission-denied error (" + }, + { + "kind": "code", + "text": "`code: '42501'`" + }, + { + "kind": "text", + "text": ") arrives with a " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " like " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\"`" + }, + { + "kind": "text", + "text": ". Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so the hint isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('characters').select()\nif (error) {\n // Logs the full error: message, code, details, and hint.\n console.error(error)\n return\n}\n```" + } + ] + }, + { + "tag": "@exampleResponse", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "```json\n{\n \"error\": {\n \"code\": \"42501\",\n \"details\": null,\n \"hint\": \"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\",\n \"message\": \"permission denied for table characters\"\n },\n \"status\": 401,\n \"statusText\": \"Unauthorized\"\n}\n```" + } + ] + }, { "tag": "@example", "name": "Selecting specific columns", @@ -38782,7 +40003,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2893, + "line": 2939, "character": 2 } ], @@ -38980,7 +40201,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2895, + "line": 2941, "character": 4 } ], @@ -39056,7 +40277,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2894, + "line": 2940, "character": 4 } ], @@ -39075,7 +40296,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2893, + "line": 2939, "character": 165 } ] @@ -39164,7 +40385,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3385, + "line": 3458, "character": 2 } ], @@ -39253,6 +40474,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('instruments').update({ name: 'piano' }).eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Update a record and return it", @@ -39339,7 +40619,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3385, + "line": 3458, "character": 2 } ], @@ -39421,7 +40701,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3388, + "line": 3461, "character": 4 } ], @@ -39440,7 +40720,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3387, + "line": 3460, "character": 87 } ] @@ -39564,7 +40844,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3392, + "line": 3465, "character": 4 } ], @@ -39615,7 +40895,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3391, + "line": 3464, "character": 6 } ] @@ -39698,7 +40978,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3229, + "line": 3293, "character": 2 } ], @@ -39847,6 +41127,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT, UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('instruments').upsert({ id: 1, name: 'piano' }).select()\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Bulk Upsert your data", @@ -39997,7 +41336,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3229, + "line": 3293, "character": 2 } ], @@ -40082,7 +41421,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3232, + "line": 3296, "character": 4 } ], @@ -40101,7 +41440,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3231, + "line": 3295, "character": 87 } ] @@ -40185,7 +41524,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3234, + "line": 3298, "character": 4 } ], @@ -40204,7 +41543,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3233, + "line": 3297, "character": 85 } ] @@ -40331,7 +41670,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3243, + "line": 3307, "character": 4 } ], @@ -40407,7 +41746,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3244, + "line": 3308, "character": 4 } ], @@ -40451,7 +41790,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3242, + "line": 3306, "character": 4 } ], @@ -40487,7 +41826,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3241, + "line": 3305, "character": 4 } ], @@ -40506,7 +41845,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3240, + "line": 3304, "character": 6 } ] @@ -40608,7 +41947,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2050, + "line": 2069, "character": 14 } ], @@ -40720,7 +42059,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2051, + "line": 2070, "character": 2 } ], @@ -40739,7 +42078,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2050, + "line": 2069, "character": 216 } ] @@ -40779,7 +42118,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -40832,7 +42171,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -40963,7 +42302,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 696, + "line": 715, "character": 4 } ], @@ -40983,7 +42322,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 699, + "line": 718, "character": 4 } ], @@ -41209,7 +42548,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 694, + "line": 713, "character": 4 } ], @@ -41234,7 +42573,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 700, + "line": 719, "character": 4 } ], @@ -41252,7 +42591,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 692, + "line": 711, "character": 4 } ], @@ -41293,7 +42632,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 703, + "line": 722, "character": 4 } ], @@ -41313,7 +42652,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 695, + "line": 714, "character": 4 } ], @@ -41333,7 +42672,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 701, + "line": 720, "character": 4 } ], @@ -41353,7 +42692,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 697, + "line": 716, "character": 4 } ], @@ -41373,7 +42712,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 698, + "line": 717, "character": 4 } ], @@ -41396,7 +42735,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 693, + "line": 712, "character": 4 } ], @@ -41421,7 +42760,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 702, + "line": 721, "character": 4 } ], @@ -41442,7 +42781,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 23 } ] @@ -41540,7 +42879,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 660, + "line": 679, "character": 12 } ], @@ -41566,7 +42905,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 663, + "line": 682, "character": 12 } ], @@ -41800,7 +43139,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 658, + "line": 677, "character": 12 } ], @@ -41831,7 +43170,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 664, + "line": 683, "character": 12 } ], @@ -41857,7 +43196,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 656, + "line": 675, "character": 12 } ], @@ -41904,7 +43243,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 667, + "line": 686, "character": 12 } ], @@ -41931,7 +43270,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 659, + "line": 678, "character": 12 } ], @@ -41957,7 +43296,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 665, + "line": 684, "character": 12 } ], @@ -41983,7 +43322,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 661, + "line": 680, "character": 12 } ], @@ -42010,7 +43349,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 662, + "line": 681, "character": 12 } ], @@ -42041,7 +43380,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 657, + "line": 676, "character": 12 } ], @@ -42072,7 +43411,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 666, + "line": 685, "character": 12 } ], @@ -42095,7 +43434,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -42225,7 +43564,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -42271,7 +43610,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -42366,7 +43705,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -42402,7 +43741,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -42558,7 +43897,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -42615,7 +43954,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1589, + "line": 1608, "character": 4 } ], @@ -42651,7 +43990,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1592, + "line": 1611, "character": 4 } ], @@ -42691,7 +44030,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1594, + "line": 1613, "character": 4 } ], @@ -42736,7 +44075,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1591, + "line": 1610, "character": 4 } ], @@ -42780,7 +44119,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1590, + "line": 1609, "character": 4 } ], @@ -42816,7 +44155,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1593, + "line": 1612, "character": 4 } ], @@ -42835,7 +44174,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1588, + "line": 1607, "character": 6 } ] @@ -42926,7 +44265,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -42967,7 +44306,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -43018,7 +44357,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -43156,7 +44495,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -43232,7 +44571,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1224, + "line": 1243, "character": 4 } ], @@ -43260,7 +44599,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1225, + "line": 1244, "character": 4 } ], @@ -43279,7 +44618,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1223, + "line": 1242, "character": 6 } ] @@ -43303,7 +44642,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -43336,7 +44675,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -43528,7 +44867,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -43638,7 +44977,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -43733,22 +45072,22 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -43762,7 +45101,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 } ], @@ -43822,7 +45161,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1095, + "line": 1114, "character": 4 } ], @@ -43842,7 +45181,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1096, + "line": 1115, "character": 4 } ], @@ -43862,7 +45201,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1097, + "line": 1116, "character": 4 } ], @@ -43881,7 +45220,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 77 } ] @@ -43903,7 +45242,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 } ], @@ -43947,7 +45286,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1100, + "line": 1119, "character": 4 } ], @@ -43967,7 +45306,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1101, + "line": 1120, "character": 4 } ], @@ -43987,7 +45326,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1102, + "line": 1121, "character": 4 } ], @@ -44006,7 +45345,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 34 } ] @@ -44054,7 +45393,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 } ], @@ -44114,7 +45453,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1108, + "line": 1127, "character": 4 } ], @@ -44134,7 +45473,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1110, + "line": 1129, "character": 4 } ], @@ -44154,7 +45493,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1109, + "line": 1128, "character": 4 } ], @@ -44173,7 +45512,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 77 } ] @@ -44221,7 +45560,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -44265,7 +45604,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1116, + "line": 1135, "character": 4 } ], @@ -44285,7 +45624,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1118, + "line": 1137, "character": 4 } ], @@ -44305,7 +45644,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1117, + "line": 1136, "character": 4 } ], @@ -44324,7 +45663,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 34 } ] @@ -44350,7 +45689,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -44522,7 +45861,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -44576,7 +45915,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 901, + "line": 920, "character": 4 } ], @@ -44595,7 +45934,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 43 } ] @@ -44619,7 +45958,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 903, + "line": 922, "character": 4 } ], @@ -44638,7 +45977,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 902, + "line": 921, "character": 6 } ] @@ -44867,7 +46206,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -45001,7 +46340,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -45096,7 +46435,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1286, + "line": 1305, "character": 4 } ], @@ -45124,7 +46463,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1287, + "line": 1306, "character": 4 } ], @@ -45143,7 +46482,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1285, + "line": 1304, "character": 6 } ] @@ -45169,7 +46508,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -45208,7 +46547,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -45259,7 +46598,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -45373,7 +46712,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -45498,7 +46837,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -45539,7 +46878,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -45559,7 +46898,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -45693,7 +47032,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -45935,7 +47274,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -45970,7 +47309,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -46024,7 +47363,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -46134,7 +47473,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -46222,7 +47561,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -46332,7 +47671,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -46364,7 +47703,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -46399,7 +47738,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -46474,7 +47813,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -46488,7 +47827,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -46588,7 +47927,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -46602,7 +47941,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -46711,7 +48050,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -46752,7 +48091,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -46903,7 +48242,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1047, + "line": 1066, "character": 14 } ], @@ -47042,7 +48381,7 @@ ] }, { - "id": 2800, + "id": 2822, "name": "RealtimeChannel", "variant": "declaration", "kind": 128, @@ -47057,7 +48396,7 @@ }, "children": [ { - "id": 2801, + "id": 2823, "name": "constructor", "variant": "declaration", "kind": 512, @@ -47071,7 +48410,7 @@ ], "signatures": [ { - "id": 2802, + "id": 2824, "name": "RealtimeChannel", "variant": "signature", "kind": 16384, @@ -47124,7 +48463,7 @@ ], "parameters": [ { - "id": 2803, + "id": 2825, "name": "topic", "variant": "param", "kind": 32768, @@ -47143,7 +48482,7 @@ } }, { - "id": 2804, + "id": 2826, "name": "params", "variant": "param", "kind": 32768, @@ -47157,7 +48496,7 @@ }, { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" } @@ -47165,14 +48504,14 @@ } }, { - "id": 2805, + "id": 2827, "name": "socket", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -47181,7 +48520,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -47190,7 +48529,7 @@ ] }, { - "id": 2809, + "id": 2831, "name": "bindings", "variant": "declaration", "kind": 1024, @@ -47231,7 +48570,7 @@ } }, { - "id": 2811, + "id": 2833, "name": "broadcastEndpointURL", "variant": "declaration", "kind": 1024, @@ -47249,7 +48588,7 @@ } }, { - "id": 2807, + "id": 2829, "name": "params", "variant": "declaration", "kind": 1024, @@ -47263,13 +48602,13 @@ ], "type": { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" } }, { - "id": 2813, + "id": 2835, "name": "presence", "variant": "declaration", "kind": 1024, @@ -47283,14 +48622,14 @@ ], "type": { "type": "reference", - "target": 2791, + "target": 2813, "name": "RealtimePresence", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2812, + "id": 2834, "name": "private", "variant": "declaration", "kind": 1024, @@ -47308,7 +48647,7 @@ } }, { - "id": 2808, + "id": 2830, "name": "socket", "variant": "declaration", "kind": 1024, @@ -47322,14 +48661,14 @@ ], "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2810, + "id": 2832, "name": "subTopic", "variant": "declaration", "kind": 1024, @@ -47347,7 +48686,7 @@ } }, { - "id": 2806, + "id": 2828, "name": "topic", "variant": "declaration", "kind": 1024, @@ -47373,7 +48712,7 @@ } }, { - "id": 2818, + "id": 2840, "name": "joinedOnce", "variant": "declaration", "kind": 262144, @@ -47386,7 +48725,7 @@ } ], "getSignature": { - "id": 2819, + "id": 2841, "name": "joinedOnce", "variant": "signature", "kind": 524288, @@ -47405,7 +48744,7 @@ } }, { - "id": 2822, + "id": 2844, "name": "joinPush", "variant": "declaration", "kind": 262144, @@ -47418,7 +48757,7 @@ } ], "getSignature": { - "id": 2823, + "id": 2845, "name": "joinPush", "variant": "signature", "kind": 524288, @@ -47443,7 +48782,7 @@ } }, { - "id": 2824, + "id": 2846, "name": "rejoinTimer", "variant": "declaration", "kind": 262144, @@ -47456,7 +48795,7 @@ } ], "getSignature": { - "id": 2825, + "id": 2847, "name": "rejoinTimer", "variant": "signature", "kind": 524288, @@ -47481,7 +48820,7 @@ } }, { - "id": 2814, + "id": 2836, "name": "state", "variant": "declaration", "kind": 262144, @@ -47499,7 +48838,7 @@ } ], "getSignature": { - "id": 2815, + "id": 2837, "name": "state", "variant": "signature", "kind": 524288, @@ -47522,7 +48861,7 @@ } }, "setSignature": { - "id": 2816, + "id": 2838, "name": "state", "variant": "signature", "kind": 1048576, @@ -47536,7 +48875,7 @@ ], "parameters": [ { - "id": 2817, + "id": 2839, "name": "state", "variant": "param", "kind": 32768, @@ -47559,7 +48898,7 @@ } }, { - "id": 2820, + "id": 2842, "name": "timeout", "variant": "declaration", "kind": 262144, @@ -47572,7 +48911,7 @@ } ], "getSignature": { - "id": 2821, + "id": 2843, "name": "timeout", "variant": "signature", "kind": 524288, @@ -47591,7 +48930,7 @@ } }, { - "id": 3111, + "id": 3133, "name": "copyBindings", "variant": "declaration", "kind": 2048, @@ -47599,13 +48938,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 445, + "line": 463, "character": 4 } ], "signatures": [ { - "id": 3112, + "id": 3134, "name": "copyBindings", "variant": "signature", "kind": 4096, @@ -47613,20 +48952,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 445, + "line": 463, "character": 4 } ], "parameters": [ { - "id": 3113, + "id": 3135, "name": "other", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -47641,7 +48980,7 @@ ] }, { - "id": 3077, + "id": 3099, "name": "httpSend", "variant": "declaration", "kind": 2048, @@ -47649,13 +48988,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 355, + "line": 373, "character": 4 } ], "signatures": [ { - "id": 3078, + "id": 3100, "name": "httpSend", "variant": "signature", "kind": 4096, @@ -47664,7 +49003,39 @@ "summary": [ { "kind": "text", - "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback." + "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback.\n\nPayloads that are " + }, + { + "kind": "code", + "text": "`ArrayBuffer`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`ArrayBufferView`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`Uint8Array`" + }, + { + "kind": "text", + "text": ") are sent as\n" + }, + { + "kind": "code", + "text": "`application/octet-stream`" + }, + { + "kind": "text", + "text": "; all other payloads are JSON-encoded." } ], "blockTags": [ @@ -47691,13 +49062,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 355, + "line": 373, "character": 4 } ], "parameters": [ { - "id": 3079, + "id": 3101, "name": "event", "variant": "param", "kind": 32768, @@ -47716,7 +49087,7 @@ } }, { - "id": 3080, + "id": 3102, "name": "payload", "variant": "param", "kind": 32768, @@ -47735,7 +49106,7 @@ } }, { - "id": 3081, + "id": 3103, "name": "opts", "variant": "param", "kind": 32768, @@ -47753,14 +49124,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3082, + "id": 3104, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3083, + "id": 3105, "name": "timeout", "variant": "declaration", "kind": 1024, @@ -47770,7 +49141,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 356, + "line": 374, "character": 8 } ], @@ -47783,13 +49154,13 @@ "groups": [ { "title": "Properties", - "children": [3083] + "children": [3105] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 355, + "line": 373, "character": 49 } ] @@ -47810,14 +49181,14 @@ { "type": "reflection", "declaration": { - "id": 3084, + "id": 3106, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3085, + "id": 3107, "name": "success", "variant": "declaration", "kind": 1024, @@ -47825,7 +49196,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 358, + "line": 376, "character": 8 } ], @@ -47838,13 +49209,13 @@ "groups": [ { "title": "Properties", - "children": [3085] + "children": [3107] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 357, + "line": 375, "character": 16 } ] @@ -47853,14 +49224,14 @@ { "type": "reflection", "declaration": { - "id": 3086, + "id": 3108, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3089, + "id": 3111, "name": "error", "variant": "declaration", "kind": 1024, @@ -47868,7 +49239,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 362, + "line": 380, "character": 8 } ], @@ -47878,7 +49249,7 @@ } }, { - "id": 3088, + "id": 3110, "name": "status", "variant": "declaration", "kind": 1024, @@ -47886,7 +49257,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 361, + "line": 379, "character": 8 } ], @@ -47896,7 +49267,7 @@ } }, { - "id": 3087, + "id": 3109, "name": "success", "variant": "declaration", "kind": 1024, @@ -47904,7 +49275,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 360, + "line": 378, "character": 8 } ], @@ -47917,13 +49288,13 @@ "groups": [ { "title": "Properties", - "children": [3089, 3088, 3087] + "children": [3111, 3110, 3109] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 359, + "line": 377, "character": 8 } ] @@ -47939,7 +49310,7 @@ ] }, { - "id": 2858, + "id": 2880, "name": "on", "variant": "declaration", "kind": 2048, @@ -47947,88 +49318,88 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 242, + "line": 257, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 245, + "line": 260, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 250, + "line": 265, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 255, + "line": 270, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 260, + "line": 275, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 263, + "line": 278, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 266, + "line": 281, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 269, + "line": 284, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 272, + "line": 287, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 281, + "line": 296, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 292, + "line": 307, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 305, + "line": 320, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 312, + "line": 327, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 321, + "line": 336, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 330, + "line": 345, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 339, + "line": 354, "character": 4 } ], "signatures": [ { - "id": 2859, + "id": 2881, "name": "on", "variant": "signature", "kind": 4096, @@ -48044,13 +49415,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 242, + "line": 257, "character": 4 } ], "parameters": [ { - "id": 2860, + "id": 2882, "name": "type", "variant": "param", "kind": 32768, @@ -48061,7 +49432,7 @@ } }, { - "id": 2861, + "id": 2883, "name": "filter", "variant": "param", "kind": 32768, @@ -48069,14 +49440,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2862, + "id": 2884, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2863, + "id": 2885, "name": "event", "variant": "declaration", "kind": 1024, @@ -48084,7 +49455,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 243, + "line": 258, "character": 8 } ], @@ -48097,13 +49468,13 @@ "groups": [ { "title": "Properties", - "children": [2863] + "children": [2885] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 242, + "line": 257, "character": 58 } ] @@ -48111,7 +49482,7 @@ } }, { - "id": 2864, + "id": 2886, "name": "callback", "variant": "param", "kind": 32768, @@ -48119,7 +49490,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2865, + "id": 2887, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48127,13 +49498,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 244, + "line": 259, "character": 17 } ], "signatures": [ { - "id": 2866, + "id": 2888, "name": "__type", "variant": "signature", "kind": 4096, @@ -48141,7 +49512,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 244, + "line": 259, "character": 17 } ], @@ -48157,14 +49528,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2867, + "id": 2889, "name": "on", "variant": "signature", "kind": 4096, @@ -48180,13 +49551,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 245, + "line": 260, "character": 4 } ], "typeParameters": [ { - "id": 2868, + "id": 2890, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48194,7 +49565,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2869, + "id": 2891, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48202,13 +49573,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 245, + "line": 260, "character": 17 } ], "indexSignatures": [ { - "id": 2870, + "id": 2892, "name": "__index", "variant": "signature", "kind": 8192, @@ -48216,13 +49587,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 246, + "line": 261, "character": 8 } ], "parameters": [ { - "id": 2871, + "id": 2893, "name": "key", "variant": "param", "kind": 32768, @@ -48245,7 +49616,7 @@ ], "parameters": [ { - "id": 2872, + "id": 2894, "name": "type", "variant": "param", "kind": 32768, @@ -48256,7 +49627,7 @@ } }, { - "id": 2873, + "id": 2895, "name": "filter", "variant": "param", "kind": 32768, @@ -48264,14 +49635,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2874, + "id": 2896, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2875, + "id": 2897, "name": "event", "variant": "declaration", "kind": 1024, @@ -48279,7 +49650,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 248, + "line": 263, "character": 8 } ], @@ -48292,13 +49663,13 @@ "groups": [ { "title": "Properties", - "children": [2875] + "children": [2897] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 247, + "line": 262, "character": 58 } ] @@ -48306,7 +49677,7 @@ } }, { - "id": 2876, + "id": 2898, "name": "callback", "variant": "param", "kind": 32768, @@ -48314,7 +49685,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2877, + "id": 2899, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48322,13 +49693,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 249, + "line": 264, "character": 17 } ], "signatures": [ { - "id": 2878, + "id": 2900, "name": "__type", "variant": "signature", "kind": 4096, @@ -48336,24 +49707,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 249, + "line": 264, "character": 17 } ], "parameters": [ { - "id": 2879, + "id": 2901, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3340, + "target": 3362, "typeArguments": [ { "type": "reference", - "target": 2868, + "target": 2890, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48376,14 +49747,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2880, + "id": 2902, "name": "on", "variant": "signature", "kind": 4096, @@ -48399,13 +49770,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 250, + "line": 265, "character": 4 } ], "typeParameters": [ { - "id": 2881, + "id": 2903, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48413,7 +49784,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2882, + "id": 2904, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48421,13 +49792,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 250, + "line": 265, "character": 17 } ], "indexSignatures": [ { - "id": 2883, + "id": 2905, "name": "__index", "variant": "signature", "kind": 8192, @@ -48435,13 +49806,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 251, + "line": 266, "character": 8 } ], "parameters": [ { - "id": 2884, + "id": 2906, "name": "key", "variant": "param", "kind": 32768, @@ -48464,7 +49835,7 @@ ], "parameters": [ { - "id": 2885, + "id": 2907, "name": "type", "variant": "param", "kind": 32768, @@ -48475,7 +49846,7 @@ } }, { - "id": 2886, + "id": 2908, "name": "filter", "variant": "param", "kind": 32768, @@ -48483,14 +49854,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2887, + "id": 2909, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2888, + "id": 2910, "name": "event", "variant": "declaration", "kind": 1024, @@ -48498,7 +49869,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 253, + "line": 268, "character": 8 } ], @@ -48511,13 +49882,13 @@ "groups": [ { "title": "Properties", - "children": [2888] + "children": [2910] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 252, + "line": 267, "character": 58 } ] @@ -48525,7 +49896,7 @@ } }, { - "id": 2889, + "id": 2911, "name": "callback", "variant": "param", "kind": 32768, @@ -48533,7 +49904,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2890, + "id": 2912, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48541,13 +49912,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 254, + "line": 269, "character": 17 } ], "signatures": [ { - "id": 2891, + "id": 2913, "name": "__type", "variant": "signature", "kind": 4096, @@ -48555,24 +49926,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 254, + "line": 269, "character": 17 } ], "parameters": [ { - "id": 2892, + "id": 2914, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3350, + "target": 3372, "typeArguments": [ { "type": "reference", - "target": 2881, + "target": 2903, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48595,14 +49966,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2893, + "id": 2915, "name": "on", "variant": "signature", "kind": 4096, @@ -48618,13 +49989,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 255, + "line": 270, "character": 4 } ], "typeParameters": [ { - "id": 2894, + "id": 2916, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48632,7 +50003,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2895, + "id": 2917, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48640,13 +50011,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 255, + "line": 270, "character": 17 } ], "indexSignatures": [ { - "id": 2896, + "id": 2918, "name": "__index", "variant": "signature", "kind": 8192, @@ -48654,13 +50025,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 256, + "line": 271, "character": 8 } ], "parameters": [ { - "id": 2897, + "id": 2919, "name": "key", "variant": "param", "kind": 32768, @@ -48683,7 +50054,7 @@ ], "parameters": [ { - "id": 2898, + "id": 2920, "name": "type", "variant": "param", "kind": 32768, @@ -48694,7 +50065,7 @@ } }, { - "id": 2899, + "id": 2921, "name": "filter", "variant": "param", "kind": 32768, @@ -48702,14 +50073,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2900, + "id": 2922, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2901, + "id": 2923, "name": "event", "variant": "declaration", "kind": 1024, @@ -48717,7 +50088,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 258, + "line": 273, "character": 8 } ], @@ -48730,13 +50101,13 @@ "groups": [ { "title": "Properties", - "children": [2901] + "children": [2923] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 257, + "line": 272, "character": 58 } ] @@ -48744,7 +50115,7 @@ } }, { - "id": 2902, + "id": 2924, "name": "callback", "variant": "param", "kind": 32768, @@ -48752,7 +50123,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2903, + "id": 2925, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48760,13 +50131,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 259, + "line": 274, "character": 17 } ], "signatures": [ { - "id": 2904, + "id": 2926, "name": "__type", "variant": "signature", "kind": 4096, @@ -48774,13 +50145,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 259, + "line": 274, "character": 17 } ], "parameters": [ { - "id": 2905, + "id": 2927, "name": "payload", "variant": "param", "kind": 32768, @@ -48792,11 +50163,11 @@ "types": [ { "type": "reference", - "target": 3340, + "target": 3362, "typeArguments": [ { "type": "reference", - "target": 2894, + "target": 2916, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48807,11 +50178,11 @@ }, { "type": "reference", - "target": 3350, + "target": 3372, "typeArguments": [ { "type": "reference", - "target": 2894, + "target": 2916, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48836,14 +50207,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2906, + "id": 2928, "name": "on", "variant": "signature", "kind": 4096, @@ -48859,13 +50230,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 260, + "line": 275, "character": 4 } ], "typeParameters": [ { - "id": 2907, + "id": 2929, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48873,7 +50244,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2908, + "id": 2930, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48881,13 +50252,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 260, + "line": 275, "character": 17 } ], "indexSignatures": [ { - "id": 2909, + "id": 2931, "name": "__index", "variant": "signature", "kind": 8192, @@ -48895,13 +50266,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 261, + "line": 276, "character": 8 } ], "parameters": [ { - "id": 2910, + "id": 2932, "name": "key", "variant": "param", "kind": 32768, @@ -48924,7 +50295,7 @@ ], "parameters": [ { - "id": 2911, + "id": 2933, "name": "type", "variant": "param", "kind": 32768, @@ -48935,14 +50306,14 @@ } }, { - "id": 2912, + "id": 2934, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -48954,7 +50325,7 @@ } }, { - "id": 2913, + "id": 2935, "name": "callback", "variant": "param", "kind": 32768, @@ -48962,7 +50333,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2914, + "id": 2936, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48970,13 +50341,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 262, + "line": 277, "character": 156 } ], "signatures": [ { - "id": 2915, + "id": 2937, "name": "__type", "variant": "signature", "kind": 4096, @@ -48984,24 +50355,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 262, + "line": 277, "character": 156 } ], "parameters": [ { - "id": 2916, + "id": 2938, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3306, + "target": 3328, "typeArguments": [ { "type": "reference", - "target": 2907, + "target": 2929, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49024,14 +50395,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2917, + "id": 2939, "name": "on", "variant": "signature", "kind": 4096, @@ -49047,13 +50418,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 263, + "line": 278, "character": 4 } ], "typeParameters": [ { - "id": 2918, + "id": 2940, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49061,7 +50432,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2919, + "id": 2941, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49069,13 +50440,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 263, + "line": 278, "character": 17 } ], "indexSignatures": [ { - "id": 2920, + "id": 2942, "name": "__index", "variant": "signature", "kind": 8192, @@ -49083,13 +50454,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 264, + "line": 279, "character": 8 } ], "parameters": [ { - "id": 2921, + "id": 2943, "name": "key", "variant": "param", "kind": 32768, @@ -49112,7 +50483,7 @@ ], "parameters": [ { - "id": 2922, + "id": 2944, "name": "type", "variant": "param", "kind": 32768, @@ -49123,14 +50494,14 @@ } }, { - "id": 2923, + "id": 2945, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -49142,7 +50513,7 @@ } }, { - "id": 2924, + "id": 2946, "name": "callback", "variant": "param", "kind": 32768, @@ -49150,7 +50521,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2925, + "id": 2947, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49158,13 +50529,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 265, + "line": 280, "character": 159 } ], "signatures": [ { - "id": 2926, + "id": 2948, "name": "__type", "variant": "signature", "kind": 4096, @@ -49172,24 +50543,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 265, + "line": 280, "character": 159 } ], "parameters": [ { - "id": 2927, + "id": 2949, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3311, + "target": 3333, "typeArguments": [ { "type": "reference", - "target": 2918, + "target": 2940, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49212,14 +50583,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2928, + "id": 2950, "name": "on", "variant": "signature", "kind": 4096, @@ -49235,13 +50606,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 266, + "line": 281, "character": 4 } ], "typeParameters": [ { - "id": 2929, + "id": 2951, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49249,7 +50620,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2930, + "id": 2952, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49257,13 +50628,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 266, + "line": 281, "character": 17 } ], "indexSignatures": [ { - "id": 2931, + "id": 2953, "name": "__index", "variant": "signature", "kind": 8192, @@ -49271,13 +50642,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 267, + "line": 282, "character": 8 } ], "parameters": [ { - "id": 2932, + "id": 2954, "name": "key", "variant": "param", "kind": 32768, @@ -49300,7 +50671,7 @@ ], "parameters": [ { - "id": 2933, + "id": 2955, "name": "type", "variant": "param", "kind": 32768, @@ -49311,14 +50682,14 @@ } }, { - "id": 2934, + "id": 2956, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -49330,7 +50701,7 @@ } }, { - "id": 2935, + "id": 2957, "name": "callback", "variant": "param", "kind": 32768, @@ -49338,7 +50709,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2936, + "id": 2958, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49346,13 +50717,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 268, + "line": 283, "character": 159 } ], "signatures": [ { - "id": 2937, + "id": 2959, "name": "__type", "variant": "signature", "kind": 4096, @@ -49360,24 +50731,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 268, + "line": 283, "character": 159 } ], "parameters": [ { - "id": 2938, + "id": 2960, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3321, + "target": 3343, "typeArguments": [ { "type": "reference", - "target": 2929, + "target": 2951, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49400,14 +50771,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2939, + "id": 2961, "name": "on", "variant": "signature", "kind": 4096, @@ -49423,13 +50794,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 269, + "line": 284, "character": 4 } ], "typeParameters": [ { - "id": 2940, + "id": 2962, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49437,7 +50808,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2941, + "id": 2963, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49445,13 +50816,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 269, + "line": 284, "character": 17 } ], "indexSignatures": [ { - "id": 2942, + "id": 2964, "name": "__index", "variant": "signature", "kind": 8192, @@ -49459,13 +50830,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 270, + "line": 285, "character": 8 } ], "parameters": [ { - "id": 2943, + "id": 2965, "name": "key", "variant": "param", "kind": 32768, @@ -49488,7 +50859,7 @@ ], "parameters": [ { - "id": 2944, + "id": 2966, "name": "type", "variant": "param", "kind": 32768, @@ -49499,14 +50870,14 @@ } }, { - "id": 2945, + "id": 2967, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -49518,7 +50889,7 @@ } }, { - "id": 2946, + "id": 2968, "name": "callback", "variant": "param", "kind": 32768, @@ -49526,7 +50897,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2947, + "id": 2969, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49534,13 +50905,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 271, + "line": 286, "character": 159 } ], "signatures": [ { - "id": 2948, + "id": 2970, "name": "__type", "variant": "signature", "kind": 4096, @@ -49548,24 +50919,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 271, + "line": 286, "character": 159 } ], "parameters": [ { - "id": 2949, + "id": 2971, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3330, + "target": 3352, "typeArguments": [ { "type": "reference", - "target": 2940, + "target": 2962, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49588,14 +50959,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2950, + "id": 2972, "name": "on", "variant": "signature", "kind": 4096, @@ -49611,13 +50982,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 272, + "line": 287, "character": 4 } ], "typeParameters": [ { - "id": 2951, + "id": 2973, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49625,7 +50996,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2952, + "id": 2974, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49633,13 +51004,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 272, + "line": 287, "character": 17 } ], "indexSignatures": [ { - "id": 2953, + "id": 2975, "name": "__index", "variant": "signature", "kind": 8192, @@ -49647,13 +51018,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 273, + "line": 288, "character": 8 } ], "parameters": [ { - "id": 2954, + "id": 2976, "name": "key", "variant": "param", "kind": 32768, @@ -49676,7 +51047,7 @@ ], "parameters": [ { - "id": 2955, + "id": 2977, "name": "type", "variant": "param", "kind": 32768, @@ -49687,14 +51058,14 @@ } }, { - "id": 2956, + "id": 2978, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "union", @@ -49723,7 +51094,7 @@ } }, { - "id": 2957, + "id": 2979, "name": "callback", "variant": "param", "kind": 32768, @@ -49731,7 +51102,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2958, + "id": 2980, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49739,13 +51110,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 274, + "line": 289, "character": 152 } ], "signatures": [ { - "id": 2959, + "id": 2981, "name": "__type", "variant": "signature", "kind": 4096, @@ -49753,24 +51124,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 274, + "line": 289, "character": 152 } ], "parameters": [ { - "id": 2960, + "id": 2982, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3306, + "target": 3328, "typeArguments": [ { "type": "reference", - "target": 2951, + "target": 2973, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49793,14 +51164,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2961, + "id": 2983, "name": "on", "variant": "signature", "kind": 4096, @@ -49816,13 +51187,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 281, + "line": 296, "character": 4 } ], "parameters": [ { - "id": 2962, + "id": 2984, "name": "type", "variant": "param", "kind": 32768, @@ -49841,7 +51212,7 @@ } }, { - "id": 2963, + "id": 2985, "name": "filter", "variant": "param", "kind": 32768, @@ -49857,14 +51228,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2964, + "id": 2986, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2965, + "id": 2987, "name": "event", "variant": "declaration", "kind": 1024, @@ -49872,7 +51243,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 282, + "line": 297, "character": 8 } ], @@ -49885,13 +51256,13 @@ "groups": [ { "title": "Properties", - "children": [2965] + "children": [2987] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 281, + "line": 296, "character": 59 } ] @@ -49899,7 +51270,7 @@ } }, { - "id": 2966, + "id": 2988, "name": "callback", "variant": "param", "kind": 32768, @@ -49915,7 +51286,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2967, + "id": 2989, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49923,13 +51294,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 283, + "line": 298, "character": 17 } ], "signatures": [ { - "id": 2968, + "id": 2990, "name": "__type", "variant": "signature", "kind": 4096, @@ -49937,13 +51308,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 283, + "line": 298, "character": 17 } ], "parameters": [ { - "id": 2969, + "id": 2991, "name": "payload", "variant": "param", "kind": 32768, @@ -49951,14 +51322,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2970, + "id": 2992, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2972, + "id": 2994, "name": "event", "variant": "declaration", "kind": 1024, @@ -49966,7 +51337,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 285, + "line": 300, "character": 8 } ], @@ -49976,7 +51347,7 @@ } }, { - "id": 2973, + "id": 2995, "name": "meta", "variant": "declaration", "kind": 1024, @@ -49986,21 +51357,21 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 286, + "line": 301, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2974, + "id": 2996, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2976, + "id": 2998, "name": "id", "variant": "declaration", "kind": 1024, @@ -50008,7 +51379,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 288, + "line": 303, "character": 12 } ], @@ -50018,7 +51389,7 @@ } }, { - "id": 2975, + "id": 2997, "name": "replayed", "variant": "declaration", "kind": 1024, @@ -50028,7 +51399,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 287, + "line": 302, "character": 12 } ], @@ -50041,13 +51412,13 @@ "groups": [ { "title": "Properties", - "children": [2976, 2975] + "children": [2998, 2997] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 286, + "line": 301, "character": 15 } ] @@ -50055,7 +51426,7 @@ } }, { - "id": 2971, + "id": 2993, "name": "type", "variant": "declaration", "kind": 1024, @@ -50063,7 +51434,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 284, + "line": 299, "character": 8 } ], @@ -50076,19 +51447,19 @@ "groups": [ { "title": "Properties", - "children": [2972, 2973, 2971] + "children": [2994, 2995, 2993] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 283, + "line": 298, "character": 27 } ], "indexSignatures": [ { - "id": 2977, + "id": 2999, "name": "__index", "variant": "signature", "kind": 8192, @@ -50096,13 +51467,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 290, + "line": 305, "character": 8 } ], "parameters": [ { - "id": 2978, + "id": 3000, "name": "key", "variant": "param", "kind": 32768, @@ -50135,14 +51506,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2979, + "id": 3001, "name": "on", "variant": "signature", "kind": 4096, @@ -50158,13 +51529,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 292, + "line": 307, "character": 4 } ], "typeParameters": [ { - "id": 2980, + "id": 3002, "name": "T", "variant": "typeParam", "kind": 131072, @@ -50172,7 +51543,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2981, + "id": 3003, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50180,13 +51551,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 292, + "line": 307, "character": 17 } ], "indexSignatures": [ { - "id": 2982, + "id": 3004, "name": "__index", "variant": "signature", "kind": 8192, @@ -50194,13 +51565,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 293, + "line": 308, "character": 8 } ], "parameters": [ { - "id": 2983, + "id": 3005, "name": "key", "variant": "param", "kind": 32768, @@ -50223,7 +51594,7 @@ ], "parameters": [ { - "id": 2984, + "id": 3006, "name": "type", "variant": "param", "kind": 32768, @@ -50234,7 +51605,7 @@ } }, { - "id": 2985, + "id": 3007, "name": "filter", "variant": "param", "kind": 32768, @@ -50242,14 +51613,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2986, + "id": 3008, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2987, + "id": 3009, "name": "event", "variant": "declaration", "kind": 1024, @@ -50257,7 +51628,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 295, + "line": 310, "character": 8 } ], @@ -50270,13 +51641,13 @@ "groups": [ { "title": "Properties", - "children": [2987] + "children": [3009] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 294, + "line": 309, "character": 59 } ] @@ -50284,7 +51655,7 @@ } }, { - "id": 2988, + "id": 3010, "name": "callback", "variant": "param", "kind": 32768, @@ -50292,7 +51663,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2989, + "id": 3011, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50300,13 +51671,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 296, + "line": 311, "character": 17 } ], "signatures": [ { - "id": 2990, + "id": 3012, "name": "__type", "variant": "signature", "kind": 4096, @@ -50314,13 +51685,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 296, + "line": 311, "character": 17 } ], "parameters": [ { - "id": 2991, + "id": 3013, "name": "payload", "variant": "param", "kind": 32768, @@ -50328,14 +51699,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2992, + "id": 3014, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2994, + "id": 3016, "name": "event", "variant": "declaration", "kind": 1024, @@ -50343,7 +51714,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 298, + "line": 313, "character": 8 } ], @@ -50353,7 +51724,7 @@ } }, { - "id": 2995, + "id": 3017, "name": "meta", "variant": "declaration", "kind": 1024, @@ -50363,21 +51734,21 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 299, + "line": 314, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2996, + "id": 3018, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2998, + "id": 3020, "name": "id", "variant": "declaration", "kind": 1024, @@ -50385,7 +51756,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 301, + "line": 316, "character": 12 } ], @@ -50395,7 +51766,7 @@ } }, { - "id": 2997, + "id": 3019, "name": "replayed", "variant": "declaration", "kind": 1024, @@ -50405,7 +51776,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 300, + "line": 315, "character": 12 } ], @@ -50418,13 +51789,13 @@ "groups": [ { "title": "Properties", - "children": [2998, 2997] + "children": [3020, 3019] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 299, + "line": 314, "character": 15 } ] @@ -50432,7 +51803,7 @@ } }, { - "id": 2999, + "id": 3021, "name": "payload", "variant": "declaration", "kind": 1024, @@ -50440,20 +51811,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 303, + "line": 318, "character": 8 } ], "type": { "type": "reference", - "target": 2980, + "target": 3002, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 2993, + "id": 3015, "name": "type", "variant": "declaration", "kind": 1024, @@ -50461,7 +51832,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 297, + "line": 312, "character": 8 } ], @@ -50474,13 +51845,13 @@ "groups": [ { "title": "Properties", - "children": [2994, 2995, 2999, 2993] + "children": [3016, 3017, 3021, 3015] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 296, + "line": 311, "character": 27 } ] @@ -50500,14 +51871,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3000, + "id": 3022, "name": "on", "variant": "signature", "kind": 4096, @@ -50523,13 +51894,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 305, + "line": 320, "character": 4 } ], "typeParameters": [ { - "id": 3001, + "id": 3023, "name": "T", "variant": "typeParam", "kind": 131072, @@ -50557,7 +51928,7 @@ ], "parameters": [ { - "id": 3002, + "id": 3024, "name": "type", "variant": "param", "kind": 32768, @@ -50568,7 +51939,7 @@ } }, { - "id": 3003, + "id": 3025, "name": "filter", "variant": "param", "kind": 32768, @@ -50576,14 +51947,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3004, + "id": 3026, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3005, + "id": 3027, "name": "event", "variant": "declaration", "kind": 1024, @@ -50591,13 +51962,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 306, + "line": 321, "character": 8 } ], "type": { "type": "reference", - "target": 3377, + "target": 3399, "name": "ALL", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL" @@ -50607,13 +51978,13 @@ "groups": [ { "title": "Properties", - "children": [3005] + "children": [3027] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 305, + "line": 320, "character": 94 } ] @@ -50621,7 +51992,7 @@ } }, { - "id": 3006, + "id": 3028, "name": "callback", "variant": "param", "kind": 32768, @@ -50629,7 +52000,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3007, + "id": 3029, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50637,13 +52008,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 307, + "line": 322, "character": 17 } ], "signatures": [ { - "id": 3008, + "id": 3030, "name": "__type", "variant": "signature", "kind": 4096, @@ -50651,13 +52022,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 307, + "line": 322, "character": 17 } ], "parameters": [ { - "id": 3009, + "id": 3031, "name": "payload", "variant": "param", "kind": 32768, @@ -50665,14 +52036,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3010, + "id": 3032, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3012, + "id": 3034, "name": "event", "variant": "declaration", "kind": 1024, @@ -50680,20 +52051,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 309, + "line": 324, "character": 8 } ], "type": { "type": "reference", - "target": 3377, + "target": 3399, "name": "ALL", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL" } }, { - "id": 3013, + "id": 3035, "name": "payload", "variant": "declaration", "kind": 1024, @@ -50701,7 +52072,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 310, + "line": 325, "character": 8 } ], @@ -50714,7 +52085,7 @@ "typeArguments": [ { "type": "reference", - "target": 3001, + "target": 3023, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -50725,7 +52096,7 @@ } }, { - "id": 3011, + "id": 3033, "name": "type", "variant": "declaration", "kind": 1024, @@ -50733,7 +52104,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 308, + "line": 323, "character": 8 } ], @@ -50746,13 +52117,13 @@ "groups": [ { "title": "Properties", - "children": [3012, 3013, 3011] + "children": [3034, 3035, 3033] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 307, + "line": 322, "character": 27 } ] @@ -50772,14 +52143,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3014, + "id": 3036, "name": "on", "variant": "signature", "kind": 4096, @@ -50795,13 +52166,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 312, + "line": 327, "character": 4 } ], "typeParameters": [ { - "id": 3015, + "id": 3037, "name": "T", "variant": "typeParam", "kind": 131072, @@ -50809,7 +52180,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3016, + "id": 3038, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50817,13 +52188,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 312, + "line": 327, "character": 17 } ], "indexSignatures": [ { - "id": 3017, + "id": 3039, "name": "__index", "variant": "signature", "kind": 8192, @@ -50831,13 +52202,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 313, + "line": 328, "character": 8 } ], "parameters": [ { - "id": 3018, + "id": 3040, "name": "key", "variant": "param", "kind": 32768, @@ -50860,7 +52231,7 @@ ], "parameters": [ { - "id": 3019, + "id": 3041, "name": "type", "variant": "param", "kind": 32768, @@ -50871,7 +52242,7 @@ } }, { - "id": 3020, + "id": 3042, "name": "filter", "variant": "param", "kind": 32768, @@ -50879,14 +52250,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3021, + "id": 3043, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3022, + "id": 3044, "name": "event", "variant": "declaration", "kind": 1024, @@ -50894,13 +52265,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 315, + "line": 330, "character": 8 } ], "type": { "type": "reference", - "target": 3378, + "target": 3400, "name": "INSERT", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT" @@ -50910,13 +52281,13 @@ "groups": [ { "title": "Properties", - "children": [3022] + "children": [3044] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 314, + "line": 329, "character": 59 } ] @@ -50924,7 +52295,7 @@ } }, { - "id": 3023, + "id": 3045, "name": "callback", "variant": "param", "kind": 32768, @@ -50932,7 +52303,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3024, + "id": 3046, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50940,13 +52311,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 316, + "line": 331, "character": 17 } ], "signatures": [ { - "id": 3025, + "id": 3047, "name": "__type", "variant": "signature", "kind": 4096, @@ -50954,13 +52325,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 316, + "line": 331, "character": 17 } ], "parameters": [ { - "id": 3026, + "id": 3048, "name": "payload", "variant": "param", "kind": 32768, @@ -50968,14 +52339,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3027, + "id": 3049, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3029, + "id": 3051, "name": "event", "variant": "declaration", "kind": 1024, @@ -50983,20 +52354,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 318, + "line": 333, "character": 8 } ], "type": { "type": "reference", - "target": 3378, + "target": 3400, "name": "INSERT", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT" } }, { - "id": 3030, + "id": 3052, "name": "payload", "variant": "declaration", "kind": 1024, @@ -51004,7 +52375,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 319, + "line": 334, "character": 8 } ], @@ -51017,7 +52388,7 @@ "typeArguments": [ { "type": "reference", - "target": 3015, + "target": 3037, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51028,7 +52399,7 @@ } }, { - "id": 3028, + "id": 3050, "name": "type", "variant": "declaration", "kind": 1024, @@ -51036,7 +52407,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 317, + "line": 332, "character": 8 } ], @@ -51049,13 +52420,13 @@ "groups": [ { "title": "Properties", - "children": [3029, 3030, 3028] + "children": [3051, 3052, 3050] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 316, + "line": 331, "character": 27 } ] @@ -51075,14 +52446,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3031, + "id": 3053, "name": "on", "variant": "signature", "kind": 4096, @@ -51098,13 +52469,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 321, + "line": 336, "character": 4 } ], "typeParameters": [ { - "id": 3032, + "id": 3054, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51112,7 +52483,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3033, + "id": 3055, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51120,13 +52491,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 321, + "line": 336, "character": 17 } ], "indexSignatures": [ { - "id": 3034, + "id": 3056, "name": "__index", "variant": "signature", "kind": 8192, @@ -51134,13 +52505,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 322, + "line": 337, "character": 8 } ], "parameters": [ { - "id": 3035, + "id": 3057, "name": "key", "variant": "param", "kind": 32768, @@ -51163,7 +52534,7 @@ ], "parameters": [ { - "id": 3036, + "id": 3058, "name": "type", "variant": "param", "kind": 32768, @@ -51174,7 +52545,7 @@ } }, { - "id": 3037, + "id": 3059, "name": "filter", "variant": "param", "kind": 32768, @@ -51182,14 +52553,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3038, + "id": 3060, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3039, + "id": 3061, "name": "event", "variant": "declaration", "kind": 1024, @@ -51197,13 +52568,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 324, + "line": 339, "character": 8 } ], "type": { "type": "reference", - "target": 3379, + "target": 3401, "name": "UPDATE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE" @@ -51213,13 +52584,13 @@ "groups": [ { "title": "Properties", - "children": [3039] + "children": [3061] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 323, + "line": 338, "character": 59 } ] @@ -51227,7 +52598,7 @@ } }, { - "id": 3040, + "id": 3062, "name": "callback", "variant": "param", "kind": 32768, @@ -51235,7 +52606,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3041, + "id": 3063, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51243,13 +52614,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 325, + "line": 340, "character": 17 } ], "signatures": [ { - "id": 3042, + "id": 3064, "name": "__type", "variant": "signature", "kind": 4096, @@ -51257,13 +52628,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 325, + "line": 340, "character": 17 } ], "parameters": [ { - "id": 3043, + "id": 3065, "name": "payload", "variant": "param", "kind": 32768, @@ -51271,14 +52642,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3044, + "id": 3066, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3046, + "id": 3068, "name": "event", "variant": "declaration", "kind": 1024, @@ -51286,20 +52657,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 327, + "line": 342, "character": 8 } ], "type": { "type": "reference", - "target": 3379, + "target": 3401, "name": "UPDATE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE" } }, { - "id": 3047, + "id": 3069, "name": "payload", "variant": "declaration", "kind": 1024, @@ -51307,7 +52678,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 328, + "line": 343, "character": 8 } ], @@ -51320,7 +52691,7 @@ "typeArguments": [ { "type": "reference", - "target": 3032, + "target": 3054, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51331,7 +52702,7 @@ } }, { - "id": 3045, + "id": 3067, "name": "type", "variant": "declaration", "kind": 1024, @@ -51339,7 +52710,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 326, + "line": 341, "character": 8 } ], @@ -51352,13 +52723,13 @@ "groups": [ { "title": "Properties", - "children": [3046, 3047, 3045] + "children": [3068, 3069, 3067] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 325, + "line": 340, "character": 27 } ] @@ -51378,14 +52749,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3048, + "id": 3070, "name": "on", "variant": "signature", "kind": 4096, @@ -51401,13 +52772,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 330, + "line": 345, "character": 4 } ], "typeParameters": [ { - "id": 3049, + "id": 3071, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51415,7 +52786,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3050, + "id": 3072, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51423,13 +52794,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 330, + "line": 345, "character": 17 } ], "indexSignatures": [ { - "id": 3051, + "id": 3073, "name": "__index", "variant": "signature", "kind": 8192, @@ -51437,13 +52808,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 331, + "line": 346, "character": 8 } ], "parameters": [ { - "id": 3052, + "id": 3074, "name": "key", "variant": "param", "kind": 32768, @@ -51466,7 +52837,7 @@ ], "parameters": [ { - "id": 3053, + "id": 3075, "name": "type", "variant": "param", "kind": 32768, @@ -51477,7 +52848,7 @@ } }, { - "id": 3054, + "id": 3076, "name": "filter", "variant": "param", "kind": 32768, @@ -51485,14 +52856,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3055, + "id": 3077, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3056, + "id": 3078, "name": "event", "variant": "declaration", "kind": 1024, @@ -51500,13 +52871,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 333, + "line": 348, "character": 8 } ], "type": { "type": "reference", - "target": 3380, + "target": 3402, "name": "DELETE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE" @@ -51516,13 +52887,13 @@ "groups": [ { "title": "Properties", - "children": [3056] + "children": [3078] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 332, + "line": 347, "character": 59 } ] @@ -51530,7 +52901,7 @@ } }, { - "id": 3057, + "id": 3079, "name": "callback", "variant": "param", "kind": 32768, @@ -51538,7 +52909,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3058, + "id": 3080, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51546,13 +52917,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 334, + "line": 349, "character": 17 } ], "signatures": [ { - "id": 3059, + "id": 3081, "name": "__type", "variant": "signature", "kind": 4096, @@ -51560,13 +52931,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 334, + "line": 349, "character": 17 } ], "parameters": [ { - "id": 3060, + "id": 3082, "name": "payload", "variant": "param", "kind": 32768, @@ -51574,14 +52945,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3061, + "id": 3083, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3063, + "id": 3085, "name": "event", "variant": "declaration", "kind": 1024, @@ -51589,20 +52960,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 336, + "line": 351, "character": 8 } ], "type": { "type": "reference", - "target": 3380, + "target": 3402, "name": "DELETE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE" } }, { - "id": 3064, + "id": 3086, "name": "payload", "variant": "declaration", "kind": 1024, @@ -51610,7 +52981,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 337, + "line": 352, "character": 8 } ], @@ -51623,7 +52994,7 @@ "typeArguments": [ { "type": "reference", - "target": 3049, + "target": 3071, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51634,7 +53005,7 @@ } }, { - "id": 3062, + "id": 3084, "name": "type", "variant": "declaration", "kind": 1024, @@ -51642,7 +53013,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 335, + "line": 350, "character": 8 } ], @@ -51655,13 +53026,13 @@ "groups": [ { "title": "Properties", - "children": [3063, 3064, 3062] + "children": [3085, 3086, 3084] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 334, + "line": 349, "character": 27 } ] @@ -51681,14 +53052,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3065, + "id": 3087, "name": "on", "variant": "signature", "kind": 4096, @@ -51704,13 +53075,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 339, + "line": 354, "character": 4 } ], "typeParameters": [ { - "id": 3066, + "id": 3088, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51718,7 +53089,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3067, + "id": 3089, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51726,13 +53097,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 339, + "line": 354, "character": 17 } ], "indexSignatures": [ { - "id": 3068, + "id": 3090, "name": "__index", "variant": "signature", "kind": 8192, @@ -51740,13 +53111,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 340, + "line": 355, "character": 8 } ], "parameters": [ { - "id": 3069, + "id": 3091, "name": "key", "variant": "param", "kind": 32768, @@ -51769,7 +53140,7 @@ ], "parameters": [ { - "id": 3070, + "id": 3092, "name": "type", "variant": "param", "kind": 32768, @@ -51780,7 +53151,7 @@ } }, { - "id": 3071, + "id": 3093, "name": "filter", "variant": "param", "kind": 32768, @@ -51788,7 +53159,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3072, + "id": 3094, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51797,7 +53168,7 @@ } }, { - "id": 3073, + "id": 3095, "name": "callback", "variant": "param", "kind": 32768, @@ -51805,7 +53176,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3074, + "id": 3096, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51813,13 +53184,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 341, + "line": 356, "character": 70 } ], "signatures": [ { - "id": 3075, + "id": 3097, "name": "__type", "variant": "signature", "kind": 4096, @@ -51827,13 +53198,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 341, + "line": 356, "character": 70 } ], "parameters": [ { - "id": 3076, + "id": 3098, "name": "payload", "variant": "param", "kind": 32768, @@ -51856,7 +53227,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -51865,7 +53236,7 @@ ] }, { - "id": 2835, + "id": 2857, "name": "presenceState", "variant": "declaration", "kind": 2048, @@ -51873,13 +53244,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 217, + "line": 232, "character": 4 } ], "signatures": [ { - "id": 2836, + "id": 2858, "name": "presenceState", "variant": "signature", "kind": 4096, @@ -51906,13 +53277,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 217, + "line": 232, "character": 4 } ], "typeParameters": [ { - "id": 2837, + "id": 2859, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51920,7 +53291,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2838, + "id": 2860, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51928,13 +53299,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 217, + "line": 232, "character": 28 } ], "indexSignatures": [ { - "id": 2839, + "id": 2861, "name": "__index", "variant": "signature", "kind": 8192, @@ -51942,13 +53313,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 218, + "line": 233, "character": 8 } ], "parameters": [ { - "id": 2840, + "id": 2862, "name": "key", "variant": "param", "kind": 32768, @@ -51970,7 +53341,7 @@ "default": { "type": "reflection", "declaration": { - "id": 2841, + "id": 2863, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51981,11 +53352,11 @@ ], "type": { "type": "reference", - "target": 3360, + "target": 3382, "typeArguments": [ { "type": "reference", - "target": 2837, + "target": 2859, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51998,7 +53369,7 @@ ] }, { - "id": 3090, + "id": 3112, "name": "send", "variant": "declaration", "kind": 2048, @@ -52006,13 +53377,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 412, + "line": 430, "character": 4 } ], "signatures": [ { - "id": 3091, + "id": 3113, "name": "send", "variant": "signature", "kind": 4096, @@ -52081,13 +53452,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 412, + "line": 430, "character": 4 } ], "parameters": [ { - "id": 3092, + "id": 3114, "name": "args", "variant": "param", "kind": 32768, @@ -52103,14 +53474,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3093, + "id": 3115, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3095, + "id": 3117, "name": "event", "variant": "declaration", "kind": 1024, @@ -52126,7 +53497,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 414, + "line": 432, "character": 8 } ], @@ -52136,7 +53507,7 @@ } }, { - "id": 3096, + "id": 3118, "name": "payload", "variant": "declaration", "kind": 1024, @@ -52154,7 +53525,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 415, + "line": 433, "character": 8 } ], @@ -52164,7 +53535,7 @@ } }, { - "id": 3094, + "id": 3116, "name": "type", "variant": "declaration", "kind": 1024, @@ -52180,7 +53551,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 413, + "line": 431, "character": 8 } ], @@ -52206,19 +53577,19 @@ "groups": [ { "title": "Properties", - "children": [3095, 3096, 3094] + "children": [3117, 3118, 3116] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 412, + "line": 430, "character": 15 } ], "indexSignatures": [ { - "id": 3097, + "id": 3119, "name": "__index", "variant": "signature", "kind": 8192, @@ -52226,13 +53597,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 416, + "line": 434, "character": 8 } ], "parameters": [ { - "id": 3098, + "id": 3120, "name": "key", "variant": "param", "kind": 32768, @@ -52253,7 +53624,7 @@ } }, { - "id": 3099, + "id": 3121, "name": "opts", "variant": "param", "kind": 32768, @@ -52271,7 +53642,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3100, + "id": 3122, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52279,13 +53650,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 417, + "line": 435, "character": 14 } ], "indexSignatures": [ { - "id": 3101, + "id": 3123, "name": "__index", "variant": "signature", "kind": 8192, @@ -52293,13 +53664,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 418, + "line": 436, "character": 8 } ], "parameters": [ { - "id": 3102, + "id": 3124, "name": "key", "variant": "param", "kind": 32768, @@ -52329,7 +53700,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52341,7 +53712,7 @@ ] }, { - "id": 2826, + "id": 2848, "name": "subscribe", "variant": "declaration", "kind": 2048, @@ -52349,13 +53720,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 4 } ], "signatures": [ { - "id": 2827, + "id": 2849, "name": "subscribe", "variant": "signature", "kind": 4096, @@ -52364,7 +53735,63 @@ "summary": [ { "kind": "text", - "text": "Subscribe registers your client with the server" + "text": "Subscribe registers your client with the server.\n\nThe optional " + }, + { + "kind": "code", + "text": "`callback`" + }, + { + "kind": "text", + "text": " receives a " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": " and, on failure, an " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " argument.\nLog the full " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " so its " + }, + { + "kind": "code", + "text": "`cause`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": ", and any structured fields aren't hidden\nbehind " + }, + { + "kind": "code", + "text": "`err.message`" + }, + { + "kind": "text", + "text": "." } ], "blockTags": [ @@ -52376,19 +53803,29 @@ "text": "Realtime" } ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nsupabase.channel('room1').subscribe((status, err) => {\n if (status === 'CHANNEL_ERROR' || status === 'TIMED_OUT') {\n // Log the full error: its `cause` often holds the underlying reason.\n console.error(status, err)\n }\n})\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 4 } ], "parameters": [ { - "id": 2828, + "id": 2850, "name": "callback", "variant": "param", "kind": 32768, @@ -52398,7 +53835,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2829, + "id": 2851, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52406,13 +53843,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 25 } ], "signatures": [ { - "id": 2830, + "id": 2852, "name": "__type", "variant": "signature", "kind": 4096, @@ -52420,26 +53857,26 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 25 } ], "parameters": [ { - "id": 2831, + "id": 2853, "name": "status", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3385, + "target": 3407, "name": "REALTIME_SUBSCRIBE_STATES", "package": "@supabase/realtime-js" } }, { - "id": 2832, + "id": 2854, "name": "err", "variant": "param", "kind": 32768, @@ -52467,7 +53904,7 @@ } }, { - "id": 2833, + "id": 2855, "name": "timeout", "variant": "param", "kind": 32768, @@ -52482,7 +53919,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -52491,7 +53928,7 @@ ] }, { - "id": 3109, + "id": 3131, "name": "teardown", "variant": "declaration", "kind": 2048, @@ -52499,13 +53936,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 444, + "line": 462, "character": 4 } ], "signatures": [ { - "id": 3110, + "id": 3132, "name": "teardown", "variant": "signature", "kind": 4096, @@ -52532,7 +53969,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 444, + "line": 462, "character": 4 } ], @@ -52544,7 +53981,7 @@ ] }, { - "id": 2842, + "id": 2864, "name": "track", "variant": "declaration", "kind": 2048, @@ -52552,13 +53989,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 226, + "line": 241, "character": 4 } ], "signatures": [ { - "id": 2843, + "id": 2865, "name": "track", "variant": "signature", "kind": 4096, @@ -52593,13 +54030,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 226, + "line": 241, "character": 4 } ], "parameters": [ { - "id": 2844, + "id": 2866, "name": "payload", "variant": "param", "kind": 32768, @@ -52607,7 +54044,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2845, + "id": 2867, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52615,13 +54052,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 226, + "line": 241, "character": 19 } ], "indexSignatures": [ { - "id": 2846, + "id": 2868, "name": "__index", "variant": "signature", "kind": 8192, @@ -52629,13 +54066,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 227, + "line": 242, "character": 8 } ], "parameters": [ { - "id": 2847, + "id": 2869, "name": "key", "variant": "param", "kind": 32768, @@ -52656,7 +54093,7 @@ } }, { - "id": 2848, + "id": 2870, "name": "opts", "variant": "param", "kind": 32768, @@ -52666,7 +54103,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2849, + "id": 2871, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52674,13 +54111,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 228, + "line": 243, "character": 14 } ], "indexSignatures": [ { - "id": 2850, + "id": 2872, "name": "__index", "variant": "signature", "kind": 8192, @@ -52688,13 +54125,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 229, + "line": 244, "character": 8 } ], "parameters": [ { - "id": 2851, + "id": 2873, "name": "key", "variant": "param", "kind": 32768, @@ -52724,7 +54161,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52736,7 +54173,7 @@ ] }, { - "id": 3106, + "id": 3128, "name": "unsubscribe", "variant": "declaration", "kind": 2048, @@ -52744,13 +54181,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 438, + "line": 456, "character": 4 } ], "signatures": [ { - "id": 3107, + "id": 3129, "name": "unsubscribe", "variant": "signature", "kind": 4096, @@ -52785,13 +54222,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 438, + "line": 456, "character": 4 } ], "parameters": [ { - "id": 3108, + "id": 3130, "name": "timeout", "variant": "param", "kind": 32768, @@ -52813,7 +54250,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52825,7 +54262,7 @@ ] }, { - "id": 2852, + "id": 2874, "name": "untrack", "variant": "declaration", "kind": 2048, @@ -52833,13 +54270,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 236, + "line": 251, "character": 4 } ], "signatures": [ { - "id": 2853, + "id": 2875, "name": "untrack", "variant": "signature", "kind": 4096, @@ -52866,13 +54303,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 236, + "line": 251, "character": 4 } ], "parameters": [ { - "id": 2854, + "id": 2876, "name": "opts", "variant": "param", "kind": 32768, @@ -52882,7 +54319,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2855, + "id": 2877, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52890,13 +54327,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 236, + "line": 251, "character": 19 } ], "indexSignatures": [ { - "id": 2856, + "id": 2878, "name": "__index", "variant": "signature", "kind": 8192, @@ -52904,13 +54341,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 237, + "line": 252, "character": 8 } ], "parameters": [ { - "id": 2857, + "id": 2879, "name": "key", "variant": "param", "kind": 32768, @@ -52940,7 +54377,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52952,7 +54389,7 @@ ] }, { - "id": 3103, + "id": 3125, "name": "updateJoinPayload", "variant": "declaration", "kind": 2048, @@ -52960,13 +54397,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 426, + "line": 444, "character": 4 } ], "signatures": [ { - "id": 3104, + "id": 3126, "name": "updateJoinPayload", "variant": "signature", "kind": 4096, @@ -52993,13 +54430,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 426, + "line": 444, "character": 4 } ], "parameters": [ { - "id": 3105, + "id": 3127, "name": "payload", "variant": "param", "kind": 32768, @@ -53036,32 +54473,32 @@ "groups": [ { "title": "Constructors", - "children": [2801] + "children": [2823] }, { "title": "Properties", - "children": [2809, 2811, 2807, 2813, 2812, 2808, 2810, 2806] + "children": [2831, 2833, 2829, 2835, 2834, 2830, 2832, 2828] }, { "title": "Accessors", - "children": [2818, 2822, 2824, 2814, 2820] + "children": [2840, 2844, 2846, 2836, 2842] }, { "title": "Methods", - "children": [3111, 3077, 2858, 2835, 3090, 2826, 3109, 2842, 3106, 2852, 3103] + "children": [3133, 3099, 2880, 2857, 3112, 2848, 3131, 2864, 3128, 2874, 3125] } ], "categories": [ { "title": "Other", "children": [ - 2809, 2811, 2807, 2813, 2812, 2808, 2810, 2806, 2818, 2822, 2824, 2814, 2820, 3111, - 2858 + 2831, 2833, 2829, 2835, 2834, 2830, 2832, 2828, 2840, 2844, 2846, 2836, 2842, 3133, + 2880 ] }, { "title": "Realtime", - "children": [2801, 3077, 2835, 3090, 2826, 3109, 2842, 3106, 2852, 3103] + "children": [2823, 3099, 2857, 3112, 2848, 3131, 2864, 3128, 2874, 3125] } ], "sources": [ @@ -53073,14 +54510,14 @@ ] }, { - "id": 3130, + "id": 3152, "name": "RealtimeClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 3131, + "id": 3153, "name": "constructor", "variant": "declaration", "kind": 512, @@ -53094,7 +54531,7 @@ ], "signatures": [ { - "id": 3132, + "id": 3154, "name": "RealtimeClient", "variant": "signature", "kind": 16384, @@ -53147,7 +54584,7 @@ ], "parameters": [ { - "id": 3133, + "id": 3155, "name": "endPoint", "variant": "param", "kind": 32768, @@ -53166,7 +54603,7 @@ } }, { - "id": 3134, + "id": 3156, "name": "options", "variant": "param", "kind": 32768, @@ -53175,7 +54612,7 @@ }, "type": { "type": "reference", - "target": 3251, + "target": 3273, "name": "RealtimeClientOptions", "package": "@supabase/realtime-js", "highlightedProperties": { @@ -53277,7 +54714,7 @@ ], "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -53286,7 +54723,7 @@ ] }, { - "id": 3137, + "id": 3159, "name": "accessToken", "variant": "declaration", "kind": 1024, @@ -53308,7 +54745,7 @@ { "type": "reflection", "declaration": { - "id": 3138, + "id": 3160, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53322,7 +54759,7 @@ ], "signatures": [ { - "id": 3139, + "id": 3161, "name": "__type", "variant": "signature", "kind": 4096, @@ -53366,7 +54803,7 @@ } }, { - "id": 3136, + "id": 3158, "name": "accessTokenValue", "variant": "declaration", "kind": 1024, @@ -53393,7 +54830,7 @@ } }, { - "id": 3140, + "id": 3162, "name": "apiKey", "variant": "declaration", "kind": 1024, @@ -53420,7 +54857,7 @@ } }, { - "id": 3135, + "id": 3157, "name": "channels", "variant": "declaration", "kind": 1024, @@ -53436,7 +54873,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -53444,7 +54881,7 @@ } }, { - "id": 3152, + "id": 3174, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -53459,7 +54896,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3153, + "id": 3175, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53478,7 +54915,7 @@ ], "signatures": [ { - "id": 3154, + "id": 3176, "name": "__type", "variant": "signature", "kind": 4096, @@ -53500,7 +54937,7 @@ ], "parameters": [ { - "id": 3155, + "id": 3177, "name": "input", "variant": "param", "kind": 32768, @@ -53530,7 +54967,7 @@ } }, { - "id": 3156, + "id": 3178, "name": "init", "variant": "param", "kind": 32768, @@ -53570,7 +55007,7 @@ } }, { - "id": 3157, + "id": 3179, "name": "__type", "variant": "signature", "kind": 4096, @@ -53592,7 +55029,7 @@ ], "parameters": [ { - "id": 3158, + "id": 3180, "name": "input", "variant": "param", "kind": 32768, @@ -53626,7 +55063,7 @@ } }, { - "id": 3159, + "id": 3181, "name": "init", "variant": "param", "kind": 32768, @@ -53670,7 +55107,7 @@ } }, { - "id": 3142, + "id": 3164, "name": "headers", "variant": "declaration", "kind": 1024, @@ -53701,7 +55138,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3143, + "id": 3165, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53715,7 +55152,7 @@ ], "indexSignatures": [ { - "id": 3144, + "id": 3166, "name": "__index", "variant": "signature", "kind": 8192, @@ -53729,7 +55166,7 @@ ], "parameters": [ { - "id": 3145, + "id": 3167, "name": "key", "variant": "param", "kind": 32768, @@ -53750,7 +55187,7 @@ } }, { - "id": 3141, + "id": 3163, "name": "httpEndpoint", "variant": "declaration", "kind": 1024, @@ -53768,7 +55205,7 @@ } }, { - "id": 3151, + "id": 3173, "name": "logLevel", "variant": "declaration", "kind": 1024, @@ -53793,7 +55230,7 @@ } }, { - "id": 3146, + "id": 3168, "name": "params", "variant": "declaration", "kind": 1024, @@ -53810,7 +55247,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3147, + "id": 3169, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53824,7 +55261,7 @@ ], "indexSignatures": [ { - "id": 3148, + "id": 3170, "name": "__index", "variant": "signature", "kind": 8192, @@ -53838,7 +55275,7 @@ ], "parameters": [ { - "id": 3149, + "id": 3171, "name": "key", "variant": "param", "kind": 32768, @@ -53859,7 +55296,7 @@ } }, { - "id": 3150, + "id": 3172, "name": "ref", "variant": "declaration", "kind": 1024, @@ -53877,7 +55314,7 @@ } }, { - "id": 3163, + "id": 3185, "name": "serializer", "variant": "declaration", "kind": 1024, @@ -53901,7 +55338,7 @@ } }, { - "id": 3160, + "id": 3182, "name": "worker", "variant": "declaration", "kind": 1024, @@ -53921,7 +55358,7 @@ } }, { - "id": 3162, + "id": 3184, "name": "workerRef", "variant": "declaration", "kind": 1024, @@ -53946,7 +55383,7 @@ } }, { - "id": 3161, + "id": 3183, "name": "workerUrl", "variant": "declaration", "kind": 1024, @@ -53966,7 +55403,7 @@ } }, { - "id": 3184, + "id": 3206, "name": "decode", "variant": "declaration", "kind": 262144, @@ -53979,7 +55416,7 @@ } ], "getSignature": { - "id": 3185, + "id": 3207, "name": "decode", "variant": "signature", "kind": 524288, @@ -54009,7 +55446,7 @@ } }, { - "id": 3182, + "id": 3204, "name": "encode", "variant": "declaration", "kind": 262144, @@ -54022,7 +55459,7 @@ } ], "getSignature": { - "id": 3183, + "id": 3205, "name": "encode", "variant": "signature", "kind": 524288, @@ -54052,7 +55489,7 @@ } }, { - "id": 3164, + "id": 3186, "name": "endPoint", "variant": "declaration", "kind": 262144, @@ -54065,7 +55502,7 @@ } ], "getSignature": { - "id": 3165, + "id": 3187, "name": "endPoint", "variant": "signature", "kind": 524288, @@ -54084,7 +55521,7 @@ } }, { - "id": 3170, + "id": 3192, "name": "heartbeatCallback", "variant": "declaration", "kind": 262144, @@ -54097,7 +55534,7 @@ } ], "getSignature": { - "id": 3171, + "id": 3193, "name": "heartbeatCallback", "variant": "signature", "kind": 524288, @@ -54121,7 +55558,7 @@ } }, { - "id": 3172, + "id": 3194, "name": "heartbeatIntervalMs", "variant": "declaration", "kind": 262144, @@ -54134,7 +55571,7 @@ } ], "getSignature": { - "id": 3173, + "id": 3195, "name": "heartbeatIntervalMs", "variant": "signature", "kind": 524288, @@ -54153,7 +55590,7 @@ } }, { - "id": 3174, + "id": 3196, "name": "heartbeatTimer", "variant": "declaration", "kind": 262144, @@ -54166,7 +55603,7 @@ } ], "getSignature": { - "id": 3175, + "id": 3197, "name": "heartbeatTimer", "variant": "signature", "kind": 524288, @@ -54190,7 +55627,7 @@ } }, { - "id": 3176, + "id": 3198, "name": "pendingHeartbeatRef", "variant": "declaration", "kind": 262144, @@ -54203,7 +55640,7 @@ } ], "getSignature": { - "id": 3177, + "id": 3199, "name": "pendingHeartbeatRef", "variant": "signature", "kind": 524288, @@ -54231,7 +55668,7 @@ } }, { - "id": 3186, + "id": 3208, "name": "reconnectAfterMs", "variant": "declaration", "kind": 262144, @@ -54244,7 +55681,7 @@ } ], "getSignature": { - "id": 3187, + "id": 3209, "name": "reconnectAfterMs", "variant": "signature", "kind": 524288, @@ -54259,7 +55696,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3188, + "id": 3210, "name": "__type", "variant": "declaration", "kind": 65536, @@ -54273,7 +55710,7 @@ ], "signatures": [ { - "id": 3189, + "id": 3211, "name": "__type", "variant": "signature", "kind": 4096, @@ -54287,7 +55724,7 @@ ], "parameters": [ { - "id": 3190, + "id": 3212, "name": "tries", "variant": "param", "kind": 32768, @@ -54309,7 +55746,7 @@ } }, { - "id": 3178, + "id": 3200, "name": "reconnectTimer", "variant": "declaration", "kind": 262144, @@ -54322,7 +55759,7 @@ } ], "getSignature": { - "id": 3179, + "id": 3201, "name": "reconnectTimer", "variant": "signature", "kind": 524288, @@ -54347,7 +55784,7 @@ } }, { - "id": 3191, + "id": 3213, "name": "sendBuffer", "variant": "declaration", "kind": 262144, @@ -54360,7 +55797,7 @@ } ], "getSignature": { - "id": 3192, + "id": 3214, "name": "sendBuffer", "variant": "signature", "kind": 524288, @@ -54377,7 +55814,7 @@ "elementType": { "type": "reflection", "declaration": { - "id": 3193, + "id": 3215, "name": "__type", "variant": "declaration", "kind": 65536, @@ -54391,7 +55828,7 @@ ], "signatures": [ { - "id": 3194, + "id": 3216, "name": "__type", "variant": "signature", "kind": 4096, @@ -54415,7 +55852,7 @@ } }, { - "id": 3195, + "id": 3217, "name": "stateChangeCallbacks", "variant": "declaration", "kind": 262144, @@ -54428,7 +55865,7 @@ } ], "getSignature": { - "id": 3196, + "id": 3218, "name": "stateChangeCallbacks", "variant": "signature", "kind": 524288, @@ -54443,14 +55880,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3197, + "id": 3219, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3199, + "id": 3221, "name": "close", "variant": "declaration", "kind": 1024, @@ -54485,7 +55922,7 @@ } }, { - "id": 3200, + "id": 3222, "name": "error", "variant": "declaration", "kind": 1024, @@ -54520,7 +55957,7 @@ } }, { - "id": 3201, + "id": 3223, "name": "message", "variant": "declaration", "kind": 1024, @@ -54555,7 +55992,7 @@ } }, { - "id": 3198, + "id": 3220, "name": "open", "variant": "declaration", "kind": 1024, @@ -54593,7 +56030,7 @@ "groups": [ { "title": "Properties", - "children": [3199, 3200, 3201, 3198] + "children": [3221, 3222, 3223, 3220] } ], "sources": [ @@ -54608,7 +56045,7 @@ } }, { - "id": 3166, + "id": 3188, "name": "timeout", "variant": "declaration", "kind": 262144, @@ -54621,7 +56058,7 @@ } ], "getSignature": { - "id": 3167, + "id": 3189, "name": "timeout", "variant": "signature", "kind": 524288, @@ -54640,7 +56077,7 @@ } }, { - "id": 3168, + "id": 3190, "name": "transport", "variant": "declaration", "kind": 262144, @@ -54653,7 +56090,7 @@ } ], "getSignature": { - "id": 3169, + "id": 3191, "name": "transport", "variant": "signature", "kind": 524288, @@ -54667,14 +56104,14 @@ ], "type": { "type": "reference", - "target": 3459, + "target": 3481, "name": "WebSocketLikeConstructor", "package": "@supabase/realtime-js" } } }, { - "id": 3180, + "id": 3202, "name": "vsn", "variant": "declaration", "kind": 262144, @@ -54687,7 +56124,7 @@ } ], "getSignature": { - "id": 3181, + "id": 3203, "name": "vsn", "variant": "signature", "kind": 524288, @@ -54711,7 +56148,7 @@ } }, { - "id": 3236, + "id": 3258, "name": "channel", "variant": "declaration", "kind": 2048, @@ -54725,7 +56162,7 @@ ], "signatures": [ { - "id": 3237, + "id": 3259, "name": "channel", "variant": "signature", "kind": 4096, @@ -54740,7 +56177,7 @@ "kind": "inline-tag", "tag": "@link", "text": "RealtimeChannel", - "target": 2800 + "target": 2822 }, { "kind": "text", @@ -54776,7 +56213,7 @@ ], "parameters": [ { - "id": 3238, + "id": 3260, "name": "topic", "variant": "param", "kind": 32768, @@ -54787,7 +56224,7 @@ } }, { - "id": 3239, + "id": 3261, "name": "params", "variant": "param", "kind": 32768, @@ -54796,7 +56233,7 @@ }, "type": { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" } @@ -54804,7 +56241,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -54813,7 +56250,7 @@ ] }, { - "id": 3208, + "id": 3230, "name": "connect", "variant": "declaration", "kind": 2048, @@ -54827,7 +56264,7 @@ ], "signatures": [ { - "id": 3209, + "id": 3231, "name": "connect", "variant": "signature", "kind": 4096, @@ -54866,7 +56303,7 @@ ] }, { - "id": 3228, + "id": 3250, "name": "connectionState", "variant": "declaration", "kind": 2048, @@ -54880,7 +56317,7 @@ ], "signatures": [ { - "id": 3229, + "id": 3251, "name": "connectionState", "variant": "signature", "kind": 4096, @@ -54924,7 +56361,7 @@ ] }, { - "id": 3212, + "id": 3234, "name": "disconnect", "variant": "declaration", "kind": 2048, @@ -54938,7 +56375,7 @@ ], "signatures": [ { - "id": 3213, + "id": 3235, "name": "disconnect", "variant": "signature", "kind": 4096, @@ -54971,7 +56408,7 @@ ], "parameters": [ { - "id": 3214, + "id": 3236, "name": "code", "variant": "param", "kind": 32768, @@ -54992,7 +56429,7 @@ } }, { - "id": 3215, + "id": 3237, "name": "reason", "variant": "param", "kind": 32768, @@ -55041,7 +56478,7 @@ ] }, { - "id": 3210, + "id": 3232, "name": "endpointURL", "variant": "declaration", "kind": 2048, @@ -55055,7 +56492,7 @@ ], "signatures": [ { - "id": 3211, + "id": 3233, "name": "endpointURL", "variant": "signature", "kind": 4096, @@ -55103,7 +56540,7 @@ ] }, { - "id": 3216, + "id": 3238, "name": "getChannels", "variant": "declaration", "kind": 2048, @@ -55117,7 +56554,7 @@ ], "signatures": [ { - "id": 3217, + "id": 3239, "name": "getChannels", "variant": "signature", "kind": 4096, @@ -55152,7 +56589,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -55162,7 +56599,7 @@ ] }, { - "id": 3230, + "id": 3252, "name": "isConnected", "variant": "declaration", "kind": 2048, @@ -55176,7 +56613,7 @@ ], "signatures": [ { - "id": 3231, + "id": 3253, "name": "isConnected", "variant": "signature", "kind": 4096, @@ -55223,7 +56660,7 @@ ] }, { - "id": 3232, + "id": 3254, "name": "isConnecting", "variant": "declaration", "kind": 2048, @@ -55237,7 +56674,7 @@ ], "signatures": [ { - "id": 3233, + "id": 3255, "name": "isConnecting", "variant": "signature", "kind": 4096, @@ -55284,7 +56721,7 @@ ] }, { - "id": 3234, + "id": 3256, "name": "isDisconnecting", "variant": "declaration", "kind": 2048, @@ -55298,7 +56735,7 @@ ], "signatures": [ { - "id": 3235, + "id": 3257, "name": "isDisconnecting", "variant": "signature", "kind": 4096, @@ -55345,7 +56782,7 @@ ] }, { - "id": 3223, + "id": 3245, "name": "log", "variant": "declaration", "kind": 2048, @@ -55359,7 +56796,7 @@ ], "signatures": [ { - "id": 3224, + "id": 3246, "name": "log", "variant": "signature", "kind": 4096, @@ -55400,7 +56837,7 @@ ], "parameters": [ { - "id": 3225, + "id": 3247, "name": "kind", "variant": "param", "kind": 32768, @@ -55411,7 +56848,7 @@ } }, { - "id": 3226, + "id": 3248, "name": "msg", "variant": "param", "kind": 32768, @@ -55422,7 +56859,7 @@ } }, { - "id": 3227, + "id": 3249, "name": "data", "variant": "param", "kind": 32768, @@ -55443,7 +56880,7 @@ ] }, { - "id": 3248, + "id": 3270, "name": "onHeartbeat", "variant": "declaration", "kind": 2048, @@ -55457,7 +56894,7 @@ ], "signatures": [ { - "id": 3249, + "id": 3271, "name": "onHeartbeat", "variant": "signature", "kind": 4096, @@ -55490,7 +56927,7 @@ ], "parameters": [ { - "id": 3250, + "id": 3272, "name": "callback", "variant": "param", "kind": 32768, @@ -55514,7 +56951,7 @@ ] }, { - "id": 3240, + "id": 3262, "name": "push", "variant": "declaration", "kind": 2048, @@ -55528,7 +56965,7 @@ ], "signatures": [ { - "id": 3241, + "id": 3263, "name": "push", "variant": "signature", "kind": 4096, @@ -55561,14 +56998,14 @@ ], "parameters": [ { - "id": 3242, + "id": 3264, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3292, + "target": 3314, "name": "RealtimeMessage", "package": "@supabase/realtime-js" } @@ -55582,7 +57019,7 @@ ] }, { - "id": 3221, + "id": 3243, "name": "removeAllChannels", "variant": "declaration", "kind": 2048, @@ -55596,7 +57033,7 @@ ], "signatures": [ { - "id": 3222, + "id": 3244, "name": "removeAllChannels", "variant": "signature", "kind": 4096, @@ -55638,7 +57075,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -55651,7 +57088,7 @@ ] }, { - "id": 3218, + "id": 3240, "name": "removeChannel", "variant": "declaration", "kind": 2048, @@ -55665,7 +57102,7 @@ ], "signatures": [ { - "id": 3219, + "id": 3241, "name": "removeChannel", "variant": "signature", "kind": 4096, @@ -55698,7 +57135,7 @@ ], "parameters": [ { - "id": 3220, + "id": 3242, "name": "channel", "variant": "param", "kind": 32768, @@ -55713,7 +57150,7 @@ }, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -55729,7 +57166,7 @@ "typeArguments": [ { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -55741,7 +57178,7 @@ ] }, { - "id": 3246, + "id": 3268, "name": "sendHeartbeat", "variant": "declaration", "kind": 2048, @@ -55755,7 +57192,7 @@ ], "signatures": [ { - "id": 3247, + "id": 3269, "name": "sendHeartbeat", "variant": "signature", "kind": 4096, @@ -55805,7 +57242,7 @@ ] }, { - "id": 3243, + "id": 3265, "name": "setAuth", "variant": "declaration", "kind": 2048, @@ -55819,7 +57256,7 @@ ], "signatures": [ { - "id": 3244, + "id": 3266, "name": "setAuth", "variant": "signature", "kind": 4096, @@ -55885,7 +57322,7 @@ ], "parameters": [ { - "id": 3245, + "id": 3267, "name": "token", "variant": "param", "kind": 32768, @@ -55937,25 +57374,25 @@ "groups": [ { "title": "Constructors", - "children": [3131] + "children": [3153] }, { "title": "Properties", "children": [ - 3137, 3136, 3140, 3135, 3152, 3142, 3141, 3151, 3146, 3150, 3163, 3160, 3162, 3161 + 3159, 3158, 3162, 3157, 3174, 3164, 3163, 3173, 3168, 3172, 3185, 3182, 3184, 3183 ] }, { "title": "Accessors", "children": [ - 3184, 3182, 3164, 3170, 3172, 3174, 3176, 3186, 3178, 3191, 3195, 3166, 3168, 3180 + 3206, 3204, 3186, 3192, 3194, 3196, 3198, 3208, 3200, 3213, 3217, 3188, 3190, 3202 ] }, { "title": "Methods", "children": [ - 3236, 3208, 3228, 3212, 3210, 3216, 3230, 3232, 3234, 3223, 3248, 3240, 3221, 3218, - 3246, 3243 + 3258, 3230, 3250, 3234, 3232, 3238, 3252, 3254, 3256, 3245, 3270, 3262, 3243, 3240, + 3268, 3265 ] } ], @@ -55963,15 +57400,15 @@ { "title": "Other", "children": [ - 3137, 3136, 3140, 3135, 3152, 3142, 3141, 3151, 3146, 3150, 3163, 3160, 3162, 3161, - 3184, 3182, 3164, 3170, 3172, 3174, 3176, 3186, 3178, 3191, 3195, 3166, 3168, 3180 + 3159, 3158, 3162, 3157, 3174, 3164, 3163, 3173, 3168, 3172, 3185, 3182, 3184, 3183, + 3206, 3204, 3186, 3192, 3194, 3196, 3198, 3208, 3200, 3213, 3217, 3188, 3190, 3202 ] }, { "title": "Realtime", "children": [ - 3131, 3236, 3208, 3228, 3212, 3210, 3216, 3230, 3232, 3234, 3223, 3248, 3240, 3221, - 3218, 3246, 3243 + 3153, 3258, 3230, 3250, 3234, 3232, 3238, 3252, 3254, 3256, 3245, 3270, 3262, 3243, + 3240, 3268, 3265 ] } ], @@ -55984,14 +57421,14 @@ ] }, { - "id": 2791, + "id": 2813, "name": "RealtimePresence", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2792, + "id": 2814, "name": "constructor", "variant": "declaration", "kind": 512, @@ -56005,7 +57442,7 @@ ], "signatures": [ { - "id": 2793, + "id": 2815, "name": "RealtimePresence", "variant": "signature", "kind": 16384, @@ -56048,7 +57485,7 @@ ], "parameters": [ { - "id": 2794, + "id": 2816, "name": "channel", "variant": "param", "kind": 32768, @@ -56063,14 +57500,14 @@ }, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2795, + "id": 2817, "name": "opts", "variant": "param", "kind": 32768, @@ -56106,7 +57543,7 @@ ], "type": { "type": "reference", - "target": 2791, + "target": 2813, "name": "RealtimePresence", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -56115,7 +57552,7 @@ ] }, { - "id": 2796, + "id": 2818, "name": "channel", "variant": "declaration", "kind": 1024, @@ -56129,14 +57566,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2797, + "id": 2819, "name": "state", "variant": "declaration", "kind": 262144, @@ -56149,7 +57586,7 @@ } ], "getSignature": { - "id": 2798, + "id": 2820, "name": "state", "variant": "signature", "kind": 524288, @@ -56163,7 +57600,7 @@ ], "type": { "type": "reference", - "target": 3360, + "target": 3382, "name": "RealtimePresenceState", "package": "@supabase/realtime-js" } @@ -56173,25 +57610,25 @@ "groups": [ { "title": "Constructors", - "children": [2792] + "children": [2814] }, { "title": "Properties", - "children": [2796] + "children": [2818] }, { "title": "Accessors", - "children": [2797] + "children": [2819] } ], "categories": [ { "title": "Other", - "children": [2796, 2797] + "children": [2818, 2819] }, { "title": "Realtime", - "children": [2792] + "children": [2814] } ], "sources": [ @@ -56634,7 +58071,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L309" } ], "signatures": [ @@ -56947,7 +58384,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L309" } ], "typeParameters": [ @@ -56995,7 +58432,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ], "type": { @@ -57015,7 +58452,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ] } @@ -57365,7 +58802,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ], "type": { @@ -57385,7 +58822,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ] } @@ -57466,7 +58903,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -57489,7 +58926,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -57509,7 +58946,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -57527,7 +58964,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -57577,7 +59014,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ], "type": { @@ -57597,7 +59034,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ] } @@ -57633,7 +59070,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ], "type": { @@ -57653,7 +59090,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ] } @@ -57829,7 +59266,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 93, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L93" } ], "type": { @@ -57845,7 +59282,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 93, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L93" } ], "signatures": [ @@ -57860,7 +59297,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 93, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L93" } ], "type": { @@ -57911,7 +59348,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L78" } ], "type": { @@ -57937,7 +59374,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L86" } ], "type": { @@ -57964,7 +59401,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 92, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L92" } ], "type": { @@ -57986,7 +59423,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 91, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L91" } ], "type": { @@ -58215,7 +59652,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "type": { @@ -58241,7 +59678,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 95, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L95" } ], "type": { @@ -58275,12 +59712,12 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L79" } ], "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -58299,7 +59736,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L85" } ], "type": { @@ -58325,7 +59762,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 89, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L89" } ], "type": { @@ -58378,7 +59815,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 96, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L96" } ], "type": { @@ -58420,7 +59857,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L83" } ], "type": { @@ -58446,7 +59883,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L90" } ], "type": { @@ -58467,7 +59904,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L87" } ], "type": { @@ -58501,7 +59938,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 311, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L311" } ], "type": { @@ -58530,7 +59967,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 310, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L310" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L310" } ], "type": { @@ -58549,7 +59986,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 403, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L403" } ], "getSignature": { @@ -58571,7 +60008,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 403, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L403" } ], "type": { @@ -58596,7 +60033,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L515" } ], "signatures": [ @@ -58630,7 +60067,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L515" } ], "parameters": [ @@ -58669,7 +60106,7 @@ }, "type": { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" }, @@ -58678,7 +60115,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -58717,19 +60154,19 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L411" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L415" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 423, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L423" } ], "signatures": [ @@ -58744,7 +60181,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L411" } ], "typeParameters": [ @@ -58842,7 +60279,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L415" } ], "typeParameters": [ @@ -58942,7 +60379,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 529, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L529" } ], "signatures": [ @@ -58986,14 +60423,14 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 529, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L529" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -59013,7 +60450,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L566" } ], "signatures": [ @@ -59066,7 +60503,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L566" } ], "type": { @@ -59080,7 +60517,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -59103,7 +60540,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L549" } ], "signatures": [ @@ -59156,7 +60593,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L549" } ], "parameters": [ @@ -59176,7 +60613,7 @@ }, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -59192,7 +60629,7 @@ "typeArguments": [ { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -59214,7 +60651,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L470" } ], "signatures": [ @@ -59237,7 +60674,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L470" } ], "typeParameters": [ @@ -59463,7 +60900,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 481, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L481" } ], "type": { @@ -59513,7 +60950,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 480, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L480" } ], "type": { @@ -59558,7 +60995,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 479, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L479" } ], "type": { @@ -59578,7 +61015,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 478, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L478" } ] } @@ -59684,7 +61121,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L435" } ], "signatures": [ @@ -59707,7 +61144,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L435" } ], "typeParameters": [ @@ -59872,7 +61309,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 43, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L43" } ], "typeParameters": [ @@ -59952,7 +61389,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ], "type": { @@ -59972,7 +61409,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ] } @@ -60442,7 +61879,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ], "type": { @@ -60462,7 +61899,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ] } @@ -60543,7 +61980,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -60566,7 +62003,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -60586,7 +62023,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -60604,7 +62041,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -60644,7 +62081,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ], "type": { @@ -60664,7 +62101,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ] } @@ -60700,7 +62137,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ], "type": { @@ -60720,7 +62157,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ] } @@ -60743,7 +62180,7 @@ ] }, { - "id": 3397, + "id": 3419, "name": "WebSocketFactory", "variant": "declaration", "kind": 128, @@ -60758,7 +62195,7 @@ }, "children": [ { - "id": 3399, + "id": 3421, "name": "getWebSocketConstructor", "variant": "declaration", "kind": 2048, @@ -60774,7 +62211,7 @@ ], "signatures": [ { - "id": 3400, + "id": 3422, "name": "getWebSocketConstructor", "variant": "signature", "kind": 4096, @@ -60818,7 +62255,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3401, + "id": 3423, "name": "__type", "variant": "declaration", "kind": 65536, @@ -60832,7 +62269,7 @@ ], "signatures": [ { - "id": 3402, + "id": 3424, "name": "getWebSocketConstructor", "variant": "signature", "kind": 16384, @@ -60846,7 +62283,7 @@ ], "parameters": [ { - "id": 3403, + "id": 3425, "name": "url", "variant": "param", "kind": 32768, @@ -60871,7 +62308,7 @@ } }, { - "id": 3404, + "id": 3426, "name": "protocols", "variant": "param", "kind": 32768, @@ -60913,7 +62350,7 @@ ] }, { - "id": 3405, + "id": 3427, "name": "isWebSocketSupported", "variant": "declaration", "kind": 2048, @@ -60929,7 +62366,7 @@ ], "signatures": [ { - "id": 3406, + "id": 3428, "name": "isWebSocketSupported", "variant": "signature", "kind": 4096, @@ -60981,13 +62418,13 @@ "groups": [ { "title": "Methods", - "children": [3399, 3405] + "children": [3421, 3427] } ], "categories": [ { "title": "Realtime", - "children": [3399, 3405] + "children": [3421, 3427] } ], "sources": [ @@ -60999,14 +62436,14 @@ ] }, { - "id": 1748, + "id": 1750, "name": "AdminUserAttributes", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1750, + "id": 1752, "name": "app_metadata", "variant": "declaration", "kind": 1024, @@ -61040,7 +62477,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 443, + "line": 432, "character": 4 } ], @@ -61050,7 +62487,7 @@ } }, { - "id": 1753, + "id": 1755, "name": "ban_duration", "variant": "declaration", "kind": 1024, @@ -61068,7 +62505,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 466, + "line": 455, "character": 4 } ], @@ -61078,7 +62515,7 @@ } }, { - "id": 1761, + "id": 1763, "name": "current_password", "variant": "declaration", "kind": 1024, @@ -61097,7 +62534,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 396, + "line": 385, "character": 4 } ], @@ -61112,7 +62549,7 @@ } }, { - "id": 1758, + "id": 1760, "name": "email", "variant": "declaration", "kind": 1024, @@ -61131,7 +62568,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 400, + "line": 389, "character": 4 } ], @@ -61146,7 +62583,7 @@ } }, { - "id": 1751, + "id": 1753, "name": "email_confirm", "variant": "declaration", "kind": 1024, @@ -61164,7 +62601,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 449, + "line": 438, "character": 4 } ], @@ -61174,7 +62611,7 @@ } }, { - "id": 1756, + "id": 1758, "name": "id", "variant": "declaration", "kind": 1024, @@ -61208,7 +62645,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 488, + "line": 477, "character": 4 } ], @@ -61218,7 +62655,7 @@ } }, { - "id": 1757, + "id": 1759, "name": "nonce", "variant": "declaration", "kind": 1024, @@ -61237,7 +62674,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 414, + "line": 403, "character": 4 } ], @@ -61252,7 +62689,7 @@ } }, { - "id": 1759, + "id": 1761, "name": "password", "variant": "declaration", "kind": 1024, @@ -61271,7 +62708,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 408, + "line": 397, "character": 4 } ], @@ -61286,7 +62723,7 @@ } }, { - "id": 1755, + "id": 1757, "name": "password_hash", "variant": "declaration", "kind": 1024, @@ -61312,7 +62749,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 482, + "line": 471, "character": 4 } ], @@ -61322,7 +62759,7 @@ } }, { - "id": 1760, + "id": 1762, "name": "phone", "variant": "declaration", "kind": 1024, @@ -61341,7 +62778,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 404, + "line": 393, "character": 4 } ], @@ -61356,7 +62793,7 @@ } }, { - "id": 1752, + "id": 1754, "name": "phone_confirm", "variant": "declaration", "kind": 1024, @@ -61374,7 +62811,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 455, + "line": 444, "character": 4 } ], @@ -61384,7 +62821,7 @@ } }, { - "id": 1754, + "id": 1756, "name": "role", "variant": "declaration", "kind": 1024, @@ -61434,7 +62871,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 474, + "line": 463, "character": 4 } ], @@ -61444,7 +62881,7 @@ } }, { - "id": 1749, + "id": 1751, "name": "user_metadata", "variant": "declaration", "kind": 1024, @@ -61478,7 +62915,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 434, + "line": 423, "character": 4 } ], @@ -61492,14 +62929,14 @@ { "title": "Properties", "children": [ - 1750, 1753, 1761, 1758, 1751, 1756, 1757, 1759, 1755, 1760, 1752, 1754, 1749 + 1752, 1755, 1763, 1760, 1753, 1758, 1759, 1761, 1757, 1762, 1754, 1756, 1751 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 423, + "line": 412, "character": 17 } ], @@ -61513,7 +62950,7 @@ "typeArguments": [ { "type": "reference", - "target": 1741, + "target": 1743, "name": "UserAttributes", "package": "@supabase/auth-js" }, @@ -61528,7 +62965,7 @@ ] }, { - "id": 1705, + "id": 1707, "name": "AMREntry", "variant": "declaration", "kind": 256, @@ -61548,7 +62985,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel", - "target": 2077 + "target": 2079 }, { "kind": "text", @@ -61560,7 +62997,7 @@ }, "children": [ { - "id": 1706, + "id": 1708, "name": "method", "variant": "declaration", "kind": 1024, @@ -61576,19 +63013,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 293, + "line": 282, "character": 4 } ], "type": { "type": "reference", - "target": 1703, + "target": 1705, "name": "AMRMethod", "package": "@supabase/auth-js" } }, { - "id": 1707, + "id": 1709, "name": "timestamp", "variant": "declaration", "kind": 1024, @@ -61604,7 +63041,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 298, + "line": 287, "character": 4 } ], @@ -61617,19 +63054,19 @@ "groups": [ { "title": "Properties", - "children": [1706, 1707] + "children": [1708, 1709] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 291, + "line": 280, "character": 17 } ] }, { - "id": 2390, + "id": 2392, "name": "AuthOAuthServerApi", "variant": "declaration", "kind": 256, @@ -61644,7 +63081,7 @@ }, "children": [ { - "id": 2394, + "id": 2396, "name": "approveAuthorization", "variant": "declaration", "kind": 2048, @@ -61652,13 +63089,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2275, + "line": 2264, "character": 4 } ], "signatures": [ { - "id": 2395, + "id": 2397, "name": "approveAuthorization", "variant": "signature", "kind": 4096, @@ -61703,13 +63140,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2275, + "line": 2264, "character": 4 } ], "parameters": [ { - "id": 2396, + "id": 2398, "name": "authorizationId", "variant": "param", "kind": 32768, @@ -61728,7 +63165,7 @@ } }, { - "id": 2397, + "id": 2399, "name": "options", "variant": "param", "kind": 32768, @@ -61746,14 +63183,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2398, + "id": 2400, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2399, + "id": 2401, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -61771,7 +63208,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2276, + "line": 2265, "character": 8 } ], @@ -61784,13 +63221,13 @@ "groups": [ { "title": "Properties", - "children": [2399] + "children": [2401] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2275, + "line": 2264, "character": 60 } ] @@ -61807,7 +63244,7 @@ "typeArguments": [ { "type": "reference", - "target": 2381, + "target": 2383, "name": "AuthOAuthConsentResponse", "package": "@supabase/auth-js" } @@ -61819,7 +63256,7 @@ ] }, { - "id": 2400, + "id": 2402, "name": "denyAuthorization", "variant": "declaration", "kind": 2048, @@ -61827,13 +63264,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2293, + "line": 2282, "character": 4 } ], "signatures": [ { - "id": 2401, + "id": 2403, "name": "denyAuthorization", "variant": "signature", "kind": 4096, @@ -61878,13 +63315,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2293, + "line": 2282, "character": 4 } ], "parameters": [ { - "id": 2402, + "id": 2404, "name": "authorizationId", "variant": "param", "kind": 32768, @@ -61903,7 +63340,7 @@ } }, { - "id": 2403, + "id": 2405, "name": "options", "variant": "param", "kind": 32768, @@ -61921,14 +63358,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2404, + "id": 2406, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2405, + "id": 2407, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -61946,7 +63383,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2294, + "line": 2283, "character": 8 } ], @@ -61959,13 +63396,13 @@ "groups": [ { "title": "Properties", - "children": [2405] + "children": [2407] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2293, + "line": 2282, "character": 57 } ] @@ -61982,7 +63419,7 @@ "typeArguments": [ { "type": "reference", - "target": 2381, + "target": 2383, "name": "AuthOAuthConsentResponse", "package": "@supabase/auth-js" } @@ -61994,7 +63431,7 @@ ] }, { - "id": 2391, + "id": 2393, "name": "getAuthorizationDetails", "variant": "declaration", "kind": 2048, @@ -62002,13 +63439,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2259, + "line": 2248, "character": 4 } ], "signatures": [ { - "id": 2392, + "id": 2394, "name": "getAuthorizationDetails", "variant": "signature", "kind": 4096, @@ -62073,13 +63510,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2259, + "line": 2248, "character": 4 } ], "parameters": [ { - "id": 2393, + "id": 2395, "name": "authorizationId", "variant": "param", "kind": 32768, @@ -62107,7 +63544,7 @@ "typeArguments": [ { "type": "reference", - "target": 2380, + "target": 2382, "name": "AuthOAuthAuthorizationDetailsResponse", "package": "@supabase/auth-js" } @@ -62119,7 +63556,7 @@ ] }, { - "id": 2406, + "id": 2408, "name": "listGrants", "variant": "declaration", "kind": 2048, @@ -62127,13 +63564,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2305, + "line": 2294, "character": 4 } ], "signatures": [ { - "id": 2407, + "id": 2409, "name": "listGrants", "variant": "signature", "kind": 4096, @@ -62178,7 +63615,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2305, + "line": 2294, "character": 4 } ], @@ -62191,7 +63628,7 @@ "typeArguments": [ { "type": "reference", - "target": 2387, + "target": 2389, "name": "AuthOAuthGrantsResponse", "package": "@supabase/auth-js" } @@ -62203,7 +63640,7 @@ ] }, { - "id": 2408, + "id": 2410, "name": "revokeGrant", "variant": "declaration", "kind": 2048, @@ -62211,13 +63648,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2320, + "line": 2309, "character": 4 } ], "signatures": [ { - "id": 2409, + "id": 2411, "name": "revokeGrant", "variant": "signature", "kind": 4096, @@ -62262,13 +63699,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2320, + "line": 2309, "character": 4 } ], "parameters": [ { - "id": 2410, + "id": 2412, "name": "options", "variant": "param", "kind": 32768, @@ -62284,14 +63721,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2411, + "id": 2413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2412, + "id": 2414, "name": "clientId", "variant": "declaration", "kind": 1024, @@ -62307,7 +63744,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2321, + "line": 2310, "character": 8 } ], @@ -62320,13 +63757,13 @@ "groups": [ { "title": "Properties", - "children": [2412] + "children": [2414] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2320, + "line": 2309, "character": 25 } ] @@ -62343,7 +63780,7 @@ "typeArguments": [ { "type": "reference", - "target": 2388, + "target": 2390, "name": "AuthOAuthRevokeGrantResponse", "package": "@supabase/auth-js" } @@ -62358,25 +63795,25 @@ "groups": [ { "title": "Methods", - "children": [2394, 2400, 2391, 2406, 2408] + "children": [2396, 2402, 2393, 2408, 2410] } ], "categories": [ { "title": "Auth", - "children": [2394, 2400, 2391, 2406, 2408] + "children": [2396, 2402, 2393, 2408, 2410] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2234, + "line": 2223, "character": 17 } ] }, { - "id": 2490, + "id": 2492, "name": "AuthPasskeyApi", "variant": "declaration", "kind": 256, @@ -62399,7 +63836,7 @@ }, "children": [ { - "id": 2507, + "id": 2509, "name": "delete", "variant": "declaration", "kind": 2048, @@ -62407,13 +63844,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2475, + "line": 2464, "character": 4 } ], "signatures": [ { - "id": 2508, + "id": 2510, "name": "delete", "variant": "signature", "kind": 4096, @@ -62449,20 +63886,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2475, + "line": 2464, "character": 4 } ], "parameters": [ { - "id": 2509, + "id": 2511, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2470, + "target": 2472, "name": "PasskeyDeleteParams", "package": "@supabase/auth-js" } @@ -62477,7 +63914,7 @@ "typeArguments": [ { "type": "reference", - "target": 2482, + "target": 2484, "name": "AuthPasskeyDeleteResponse", "package": "@supabase/auth-js" } @@ -62489,7 +63926,7 @@ ] }, { - "id": 2502, + "id": 2504, "name": "list", "variant": "declaration", "kind": 2048, @@ -62497,13 +63934,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2461, + "line": 2450, "character": 4 } ], "signatures": [ { - "id": 2503, + "id": 2505, "name": "list", "variant": "signature", "kind": 4096, @@ -62539,7 +63976,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2461, + "line": 2450, "character": 4 } ], @@ -62552,7 +63989,7 @@ "typeArguments": [ { "type": "reference", - "target": 2480, + "target": 2482, "name": "AuthPasskeyListResponse", "package": "@supabase/auth-js" } @@ -62564,7 +64001,7 @@ ] }, { - "id": 2496, + "id": 2498, "name": "startAuthentication", "variant": "declaration", "kind": 2048, @@ -62572,13 +64009,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2446, + "line": 2435, "character": 4 } ], "signatures": [ { - "id": 2497, + "id": 2499, "name": "startAuthentication", "variant": "signature", "kind": 4096, @@ -62622,13 +64059,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2446, + "line": 2435, "character": 4 } ], "parameters": [ { - "id": 2498, + "id": 2500, "name": "params", "variant": "param", "kind": 32768, @@ -62637,7 +64074,7 @@ }, "type": { "type": "reference", - "target": 2457, + "target": 2459, "name": "StartPasskeyAuthenticationParams", "package": "@supabase/auth-js" } @@ -62652,7 +64089,7 @@ "typeArguments": [ { "type": "reference", - "target": 2475, + "target": 2477, "name": "AuthPasskeyAuthenticationOptionsResponse", "package": "@supabase/auth-js" } @@ -62664,7 +64101,7 @@ ] }, { - "id": 2491, + "id": 2493, "name": "startRegistration", "variant": "declaration", "kind": 2048, @@ -62672,13 +64109,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2428, + "line": 2417, "character": 4 } ], "signatures": [ { - "id": 2492, + "id": 2494, "name": "startRegistration", "variant": "signature", "kind": 4096, @@ -62722,7 +64159,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2428, + "line": 2417, "character": 4 } ], @@ -62735,7 +64172,7 @@ "typeArguments": [ { "type": "reference", - "target": 2473, + "target": 2475, "name": "AuthPasskeyRegistrationOptionsResponse", "package": "@supabase/auth-js" } @@ -62747,7 +64184,7 @@ ] }, { - "id": 2504, + "id": 2506, "name": "update", "variant": "declaration", "kind": 2048, @@ -62755,13 +64192,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2468, + "line": 2457, "character": 4 } ], "signatures": [ { - "id": 2505, + "id": 2507, "name": "update", "variant": "signature", "kind": 4096, @@ -62797,20 +64234,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2468, + "line": 2457, "character": 4 } ], "parameters": [ { - "id": 2506, + "id": 2508, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2466, + "target": 2468, "name": "PasskeyUpdateParams", "package": "@supabase/auth-js" } @@ -62825,7 +64262,7 @@ "typeArguments": [ { "type": "reference", - "target": 2481, + "target": 2483, "name": "AuthPasskeyUpdateResponse", "package": "@supabase/auth-js" } @@ -62837,7 +64274,7 @@ ] }, { - "id": 2499, + "id": 2501, "name": "verifyAuthentication", "variant": "declaration", "kind": 2048, @@ -62845,13 +64282,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2454, + "line": 2443, "character": 4 } ], "signatures": [ { - "id": 2500, + "id": 2502, "name": "verifyAuthentication", "variant": "signature", "kind": 4096, @@ -62887,20 +64324,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2454, + "line": 2443, "character": 4 } ], "parameters": [ { - "id": 2501, + "id": 2503, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2462, + "target": 2464, "name": "VerifyPasskeyAuthenticationParams", "package": "@supabase/auth-js" } @@ -62915,7 +64352,7 @@ "typeArguments": [ { "type": "reference", - "target": 2476, + "target": 2478, "name": "AuthPasskeyAuthenticationVerifyResponse", "package": "@supabase/auth-js" } @@ -62927,7 +64364,7 @@ ] }, { - "id": 2493, + "id": 2495, "name": "verifyRegistration", "variant": "declaration", "kind": 2048, @@ -62935,13 +64372,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2436, + "line": 2425, "character": 4 } ], "signatures": [ { - "id": 2494, + "id": 2496, "name": "verifyRegistration", "variant": "signature", "kind": 4096, @@ -62977,20 +64414,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2436, + "line": 2425, "character": 4 } ], "parameters": [ { - "id": 2495, + "id": 2497, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2453, + "target": 2455, "name": "VerifyPasskeyRegistrationParams", "package": "@supabase/auth-js" } @@ -63005,7 +64442,7 @@ "typeArguments": [ { "type": "reference", - "target": 2474, + "target": 2476, "name": "AuthPasskeyRegistrationVerifyResponse", "package": "@supabase/auth-js" } @@ -63020,19 +64457,19 @@ "groups": [ { "title": "Methods", - "children": [2507, 2502, 2496, 2491, 2504, 2499, 2493] + "children": [2509, 2504, 2498, 2493, 2506, 2501, 2495] } ], "categories": [ { "title": "Auth", - "children": [2507, 2502, 2496, 2491, 2504, 2499, 2493] + "children": [2509, 2504, 2498, 2493, 2506, 2501, 2495] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2418, + "line": 2407, "character": 17 } ] @@ -63061,7 +64498,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 258, + "line": 247, "character": 4 } ], @@ -63089,7 +64526,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 270, + "line": 259, "character": 4 } ], @@ -63115,7 +64552,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 266, + "line": 255, "character": 4 } ], @@ -63143,7 +64580,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 254, + "line": 243, "character": 4 } ], @@ -63180,7 +64617,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 249, + "line": 238, "character": 4 } ], @@ -63215,7 +64652,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 262, + "line": 251, "character": 4 } ], @@ -63233,7 +64670,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 271, + "line": 260, "character": 4 } ], @@ -63259,7 +64696,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 275, + "line": 264, "character": 4 } ], @@ -63280,7 +64717,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 245, + "line": 234, "character": 17 } ] @@ -63303,7 +64740,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 371, + "line": 360, "character": 4 } ], @@ -63321,13 +64758,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 362, + "line": 351, "character": 4 } ], "type": { "type": "reference", - "target": 1732, + "target": 1734, "name": "UserAppMetadata", "package": "@supabase/auth-js" } @@ -63341,7 +64778,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 364, + "line": 353, "character": 4 } ], @@ -63361,7 +64798,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 386, + "line": 375, "character": 4 } ], @@ -63381,7 +64818,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 365, + "line": 354, "character": 4 } ], @@ -63401,7 +64838,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 375, + "line": 364, "character": 4 } ], @@ -63419,7 +64856,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 374, + "line": 363, "character": 4 } ], @@ -63439,7 +64876,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 385, + "line": 374, "character": 4 } ], @@ -63459,7 +64896,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 372, + "line": 361, "character": 4 } ], @@ -63479,7 +64916,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 367, + "line": 356, "character": 4 } ], @@ -63499,7 +64936,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 376, + "line": 365, "character": 4 } ], @@ -63519,7 +64956,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 384, + "line": 373, "character": 4 } ], @@ -63530,7 +64967,7 @@ "types": [ { "type": "reference", - "target": 1721, + "target": 1723, "typeArguments": [ { "type": "union", @@ -63559,7 +64996,7 @@ }, { "type": "reference", - "target": 1721, + "target": 1723, "typeArguments": [ { "type": "union", @@ -63599,7 +65036,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 361, + "line": 350, "character": 4 } ], @@ -63619,7 +65056,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 381, + "line": 370, "character": 4 } ], @@ -63627,7 +65064,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1708, + "target": 1710, "name": "UserIdentity", "package": "@supabase/auth-js" } @@ -63644,7 +65081,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 370, + "line": 359, "character": 4 } ], @@ -63664,7 +65101,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 382, + "line": 371, "character": 4 } ], @@ -63684,7 +65121,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 383, + "line": 372, "character": 4 } ], @@ -63704,7 +65141,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 378, + "line": 367, "character": 4 } ], @@ -63724,7 +65161,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 368, + "line": 357, "character": 4 } ], @@ -63744,7 +65181,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 369, + "line": 358, "character": 4 } ], @@ -63764,7 +65201,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 373, + "line": 362, "character": 4 } ], @@ -63784,7 +65221,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 377, + "line": 366, "character": 4 } ], @@ -63804,7 +65241,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 366, + "line": 355, "character": 4 } ], @@ -63824,7 +65261,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 379, + "line": 368, "character": 4 } ], @@ -63844,7 +65281,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 380, + "line": 369, "character": 4 } ], @@ -63862,13 +65299,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 363, + "line": 352, "character": 4 } ], "type": { "type": "reference", - "target": 1737, + "target": 1739, "name": "UserMetadata", "package": "@supabase/auth-js" } @@ -63886,20 +65323,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 360, + "line": 349, "character": 17 } ] }, { - "id": 1959, + "id": 1961, "name": "GenerateLinkOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1960, + "id": 1962, "name": "data", "variant": "declaration", "kind": 1024, @@ -63933,7 +65370,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 787, + "line": 776, "character": 4 } ], @@ -63943,7 +65380,7 @@ } }, { - "id": 1961, + "id": 1963, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -63961,7 +65398,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 789, + "line": 778, "character": 4 } ], @@ -63974,19 +65411,19 @@ "groups": [ { "title": "Properties", - "children": [1960, 1961] + "children": [1962, 1963] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 781, + "line": 770, "character": 17 } ] }, { - "id": 2341, + "id": 2343, "name": "GoTrueAdminCustomProvidersApi", "variant": "declaration", "kind": 256, @@ -64001,7 +65438,7 @@ }, "children": [ { - "id": 2345, + "id": 2347, "name": "createProvider", "variant": "declaration", "kind": 2048, @@ -64009,13 +65446,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2082, + "line": 2071, "character": 4 } ], "signatures": [ { - "id": 2346, + "id": 2348, "name": "createProvider", "variant": "signature", "kind": 4096, @@ -64075,20 +65512,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2082, + "line": 2071, "character": 4 } ], "parameters": [ { - "id": 2347, + "id": 2349, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2286, + "target": 2288, "name": "CreateCustomProviderParams", "package": "@supabase/auth-js" } @@ -64103,7 +65540,7 @@ "typeArguments": [ { "type": "reference", - "target": 2329, + "target": 2331, "name": "CustomProviderResponse", "package": "@supabase/auth-js" } @@ -64115,7 +65552,7 @@ ] }, { - "id": 2355, + "id": 2357, "name": "deleteProvider", "variant": "declaration", "kind": 2048, @@ -64123,13 +65560,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2114, + "line": 2103, "character": 4 } ], "signatures": [ { - "id": 2356, + "id": 2358, "name": "deleteProvider", "variant": "signature", "kind": 4096, @@ -64173,13 +65610,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2114, + "line": 2103, "character": 4 } ], "parameters": [ { - "id": 2357, + "id": 2359, "name": "identifier", "variant": "param", "kind": 32768, @@ -64200,14 +65637,14 @@ { "type": "reflection", "declaration": { - "id": 2358, + "id": 2360, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2359, + "id": 2361, "name": "data", "variant": "declaration", "kind": 1024, @@ -64215,7 +65652,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2115, + "line": 2104, "character": 8 } ], @@ -64225,7 +65662,7 @@ } }, { - "id": 2360, + "id": 2362, "name": "error", "variant": "declaration", "kind": 1024, @@ -64233,7 +65670,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2116, + "line": 2105, "character": 8 } ], @@ -64246,7 +65683,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -64257,13 +65694,13 @@ "groups": [ { "title": "Properties", - "children": [2359, 2360] + "children": [2361, 2362] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2114, + "line": 2103, "character": 48 } ] @@ -64277,7 +65714,7 @@ ] }, { - "id": 2348, + "id": 2350, "name": "getProvider", "variant": "declaration", "kind": 2048, @@ -64285,13 +65722,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2091, + "line": 2080, "character": 4 } ], "signatures": [ { - "id": 2349, + "id": 2351, "name": "getProvider", "variant": "signature", "kind": 4096, @@ -64335,13 +65772,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2091, + "line": 2080, "character": 4 } ], "parameters": [ { - "id": 2350, + "id": 2352, "name": "identifier", "variant": "param", "kind": 32768, @@ -64361,7 +65798,7 @@ "typeArguments": [ { "type": "reference", - "target": 2329, + "target": 2331, "name": "CustomProviderResponse", "package": "@supabase/auth-js" } @@ -64373,7 +65810,7 @@ ] }, { - "id": 2342, + "id": 2344, "name": "listProviders", "variant": "declaration", "kind": 2048, @@ -64381,13 +65818,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2067, + "line": 2056, "character": 4 } ], "signatures": [ { - "id": 2343, + "id": 2345, "name": "listProviders", "variant": "signature", "kind": 4096, @@ -64431,13 +65868,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2067, + "line": 2056, "character": 4 } ], "parameters": [ { - "id": 2344, + "id": 2346, "name": "params", "variant": "param", "kind": 32768, @@ -64446,7 +65883,7 @@ }, "type": { "type": "reference", - "target": 2326, + "target": 2328, "name": "ListCustomProvidersParams", "package": "@supabase/auth-js" } @@ -64461,7 +65898,7 @@ "typeArguments": [ { "type": "reference", - "target": 2330, + "target": 2332, "name": "CustomProviderListResponse", "package": "@supabase/auth-js" } @@ -64473,7 +65910,7 @@ ] }, { - "id": 2351, + "id": 2353, "name": "updateProvider", "variant": "declaration", "kind": 2048, @@ -64481,13 +65918,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2105, + "line": 2094, "character": 4 } ], "signatures": [ { - "id": 2352, + "id": 2354, "name": "updateProvider", "variant": "signature", "kind": 4096, @@ -64555,13 +65992,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2105, + "line": 2094, "character": 4 } ], "parameters": [ { - "id": 2353, + "id": 2355, "name": "identifier", "variant": "param", "kind": 32768, @@ -64572,14 +66009,14 @@ } }, { - "id": 2354, + "id": 2356, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2307, + "target": 2309, "name": "UpdateCustomProviderParams", "package": "@supabase/auth-js" } @@ -64594,7 +66031,7 @@ "typeArguments": [ { "type": "reference", - "target": 2329, + "target": 2331, "name": "CustomProviderResponse", "package": "@supabase/auth-js" } @@ -64609,25 +66046,25 @@ "groups": [ { "title": "Methods", - "children": [2345, 2355, 2348, 2342, 2351] + "children": [2347, 2357, 2350, 2344, 2353] } ], "categories": [ { "title": "Auth", - "children": [2345, 2355, 2348, 2342, 2351] + "children": [2347, 2357, 2350, 2344, 2353] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2058, + "line": 2047, "character": 17 } ] }, { - "id": 2094, + "id": 2096, "name": "GoTrueAdminMFAApi", "variant": "declaration", "kind": 256, @@ -64648,7 +66085,7 @@ }, "children": [ { - "id": 2098, + "id": 2100, "name": "deleteFactor", "variant": "declaration", "kind": 2048, @@ -64656,13 +66093,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1522, + "line": 1511, "character": 4 } ], "signatures": [ { - "id": 2099, + "id": 2101, "name": "deleteFactor", "variant": "signature", "kind": 4096, @@ -64682,7 +66119,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#unenroll", - "target": 2069 + "target": 2071 } ] }, @@ -64736,20 +66173,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1522, + "line": 1511, "character": 4 } ], "parameters": [ { - "id": 2100, + "id": 2102, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2084, + "target": 2086, "name": "AuthMFAAdminDeleteFactorParams", "package": "@supabase/auth-js" } @@ -64764,7 +66201,7 @@ "typeArguments": [ { "type": "reference", - "target": 2081, + "target": 2083, "name": "AuthMFAAdminDeleteFactorResponse", "package": "@supabase/auth-js" } @@ -64776,7 +66213,7 @@ ] }, { - "id": 2095, + "id": 2097, "name": "listFactors", "variant": "declaration", "kind": 2048, @@ -64784,13 +66221,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1492, + "line": 1481, "character": 4 } ], "signatures": [ { - "id": 2096, + "id": 2098, "name": "listFactors", "variant": "signature", "kind": 4096, @@ -64849,20 +66286,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1492, + "line": 1481, "character": 4 } ], "parameters": [ { - "id": 2097, + "id": 2099, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2091, + "target": 2093, "name": "AuthMFAAdminListFactorsParams", "package": "@supabase/auth-js" } @@ -64877,7 +66314,7 @@ "typeArguments": [ { "type": "reference", - "target": 2088, + "target": 2090, "name": "AuthMFAAdminListFactorsResponse", "package": "@supabase/auth-js" } @@ -64892,25 +66329,25 @@ "groups": [ { "title": "Methods", - "children": [2098, 2095] + "children": [2100, 2097] } ], "categories": [ { "title": "Auth", - "children": [2098, 2095] + "children": [2100, 2097] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1460, + "line": 1449, "character": 17 } ] }, { - "id": 2226, + "id": 2228, "name": "GoTrueAdminOAuthApi", "variant": "declaration", "kind": 256, @@ -64925,7 +66362,7 @@ }, "children": [ { - "id": 2230, + "id": 2232, "name": "createClient", "variant": "declaration", "kind": 2048, @@ -64933,13 +66370,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1821, + "line": 1810, "character": 4 } ], "signatures": [ { - "id": 2231, + "id": 2233, "name": "createClient", "variant": "signature", "kind": 4096, @@ -64983,20 +66420,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1821, + "line": 1810, "character": 4 } ], "parameters": [ { - "id": 2232, + "id": 2234, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2196, + "target": 2198, "name": "CreateOAuthClientParams", "package": "@supabase/auth-js" } @@ -65011,7 +66448,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65023,7 +66460,7 @@ ] }, { - "id": 2240, + "id": 2242, "name": "deleteClient", "variant": "declaration", "kind": 2048, @@ -65031,13 +66468,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1851, + "line": 1840, "character": 4 } ], "signatures": [ { - "id": 2241, + "id": 2243, "name": "deleteClient", "variant": "signature", "kind": 4096, @@ -65081,13 +66518,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1851, + "line": 1840, "character": 4 } ], "parameters": [ { - "id": 2242, + "id": 2244, "name": "clientId", "variant": "param", "kind": 32768, @@ -65108,14 +66545,14 @@ { "type": "reflection", "declaration": { - "id": 2243, + "id": 2245, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2244, + "id": 2246, "name": "data", "variant": "declaration", "kind": 1024, @@ -65123,7 +66560,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1852, + "line": 1841, "character": 8 } ], @@ -65133,7 +66570,7 @@ } }, { - "id": 2245, + "id": 2247, "name": "error", "variant": "declaration", "kind": 1024, @@ -65141,7 +66578,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1853, + "line": 1842, "character": 8 } ], @@ -65154,7 +66591,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -65165,13 +66602,13 @@ "groups": [ { "title": "Properties", - "children": [2244, 2245] + "children": [2246, 2247] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1851, + "line": 1840, "character": 44 } ] @@ -65185,7 +66622,7 @@ ] }, { - "id": 2233, + "id": 2235, "name": "getClient", "variant": "declaration", "kind": 2048, @@ -65193,13 +66630,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1831, + "line": 1820, "character": 4 } ], "signatures": [ { - "id": 2234, + "id": 2236, "name": "getClient", "variant": "signature", "kind": 4096, @@ -65243,13 +66680,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1831, + "line": 1820, "character": 4 } ], "parameters": [ { - "id": 2235, + "id": 2237, "name": "clientId", "variant": "param", "kind": 32768, @@ -65269,7 +66706,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65281,7 +66718,7 @@ ] }, { - "id": 2227, + "id": 2229, "name": "listClients", "variant": "declaration", "kind": 2048, @@ -65289,13 +66726,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1811, + "line": 1800, "character": 4 } ], "signatures": [ { - "id": 2228, + "id": 2230, "name": "listClients", "variant": "signature", "kind": 4096, @@ -65339,13 +66776,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1811, + "line": 1800, "character": 4 } ], "parameters": [ { - "id": 2229, + "id": 2231, "name": "params", "variant": "param", "kind": 32768, @@ -65354,7 +66791,7 @@ }, "type": { "type": "reference", - "target": 2115, + "target": 2117, "name": "PageParams", "package": "@supabase/auth-js" } @@ -65369,7 +66806,7 @@ "typeArguments": [ { "type": "reference", - "target": 2214, + "target": 2216, "name": "OAuthClientListResponse", "package": "@supabase/auth-js" } @@ -65381,7 +66818,7 @@ ] }, { - "id": 2246, + "id": 2248, "name": "regenerateClientSecret", "variant": "declaration", "kind": 2048, @@ -65389,13 +66826,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1864, + "line": 1853, "character": 4 } ], "signatures": [ { - "id": 2247, + "id": 2249, "name": "regenerateClientSecret", "variant": "signature", "kind": 4096, @@ -65439,13 +66876,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1864, + "line": 1853, "character": 4 } ], "parameters": [ { - "id": 2248, + "id": 2250, "name": "clientId", "variant": "param", "kind": 32768, @@ -65465,7 +66902,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65477,7 +66914,7 @@ ] }, { - "id": 2236, + "id": 2238, "name": "updateClient", "variant": "declaration", "kind": 2048, @@ -65485,13 +66922,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1841, + "line": 1830, "character": 4 } ], "signatures": [ { - "id": 2237, + "id": 2239, "name": "updateClient", "variant": "signature", "kind": 4096, @@ -65535,13 +66972,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1841, + "line": 1830, "character": 4 } ], "parameters": [ { - "id": 2238, + "id": 2240, "name": "clientId", "variant": "param", "kind": 32768, @@ -65552,14 +66989,14 @@ } }, { - "id": 2239, + "id": 2241, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2205, + "target": 2207, "name": "UpdateOAuthClientParams", "package": "@supabase/auth-js" } @@ -65574,7 +67011,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65589,32 +67026,32 @@ "groups": [ { "title": "Methods", - "children": [2230, 2240, 2233, 2227, 2246, 2236] + "children": [2232, 2242, 2235, 2229, 2248, 2238] } ], "categories": [ { "title": "Auth", - "children": [2230, 2240, 2233, 2227, 2246, 2236] + "children": [2232, 2242, 2235, 2229, 2248, 2238] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1801, + "line": 1790, "character": 17 } ] }, { - "id": 2510, + "id": 2512, "name": "GoTrueAdminPasskeyApi", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2514, + "id": 2516, "name": "deletePasskey", "variant": "declaration", "kind": 2048, @@ -65622,13 +67059,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2495, + "line": 2484, "character": 4 } ], "signatures": [ { - "id": 2515, + "id": 2517, "name": "deletePasskey", "variant": "signature", "kind": 4096, @@ -65672,20 +67109,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2495, + "line": 2484, "character": 4 } ], "parameters": [ { - "id": 2516, + "id": 2518, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2486, + "target": 2488, "name": "AuthPasskeyAdminDeleteParams", "package": "@supabase/auth-js" } @@ -65700,7 +67137,7 @@ "typeArguments": [ { "type": "reference", - "target": 2482, + "target": 2484, "name": "AuthPasskeyDeleteResponse", "package": "@supabase/auth-js" } @@ -65712,7 +67149,7 @@ ] }, { - "id": 2511, + "id": 2513, "name": "listPasskeys", "variant": "declaration", "kind": 2048, @@ -65720,13 +67157,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2486, + "line": 2475, "character": 4 } ], "signatures": [ { - "id": 2512, + "id": 2514, "name": "listPasskeys", "variant": "signature", "kind": 4096, @@ -65770,20 +67207,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2486, + "line": 2475, "character": 4 } ], "parameters": [ { - "id": 2513, + "id": 2515, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2483, + "target": 2485, "name": "AuthPasskeyAdminListParams", "package": "@supabase/auth-js" } @@ -65798,7 +67235,7 @@ "typeArguments": [ { "type": "reference", - "target": 2480, + "target": 2482, "name": "AuthPasskeyListResponse", "package": "@supabase/auth-js" } @@ -65813,25 +67250,25 @@ "groups": [ { "title": "Methods", - "children": [2514, 2511] + "children": [2516, 2513] } ], "categories": [ { "title": "Auth", - "children": [2514, 2511] + "children": [2516, 2513] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2477, + "line": 2466, "character": 17 } ] }, { - "id": 2023, + "id": 2025, "name": "GoTrueMFAApi", "variant": "declaration", "kind": 256, @@ -65846,7 +67283,7 @@ }, "children": [ { - "id": 2080, + "id": 2082, "name": "webauthn", "variant": "declaration", "kind": 1024, @@ -65854,7 +67291,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1423, + "line": 1412, "character": 4 } ], @@ -65869,7 +67306,7 @@ } }, { - "id": 2033, + "id": 2035, "name": "challenge", "variant": "declaration", "kind": 2048, @@ -65877,28 +67314,28 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1165, + "line": 1154, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1166, + "line": 1155, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1167, + "line": 1156, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1168, + "line": 1157, "character": 4 } ], "signatures": [ { - "id": 2034, + "id": 2036, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66028,13 +67465,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1165, + "line": 1154, "character": 4 } ], "parameters": [ { - "id": 2035, + "id": 2037, "name": "params", "variant": "param", "kind": 32768, @@ -66063,14 +67500,14 @@ { "type": "reflection", "declaration": { - "id": 2036, + "id": 2038, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2037, + "id": 2039, "name": "data", "variant": "declaration", "kind": 1024, @@ -66078,7 +67515,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -66088,7 +67525,7 @@ } }, { - "id": 2038, + "id": 2040, "name": "error", "variant": "declaration", "kind": 1024, @@ -66096,13 +67533,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -66111,13 +67548,13 @@ "groups": [ { "title": "Properties", - "children": [2037, 2038] + "children": [2039, 2040] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66126,14 +67563,14 @@ { "type": "reflection", "declaration": { - "id": 2039, + "id": 2041, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2040, + "id": 2042, "name": "data", "variant": "declaration", "kind": 1024, @@ -66141,7 +67578,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], @@ -66156,7 +67593,7 @@ } }, { - "id": 2041, + "id": 2043, "name": "error", "variant": "declaration", "kind": 1024, @@ -66164,7 +67601,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -66177,13 +67614,13 @@ "groups": [ { "title": "Properties", - "children": [2040, 2041] + "children": [2042, 2043] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66197,7 +67634,7 @@ } }, { - "id": 2042, + "id": 2044, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66205,20 +67642,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1166, + "line": 1155, "character": 4 } ], "parameters": [ { - "id": 2043, + "id": 2045, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1990, + "target": 1992, "name": "MFAChallengePhoneParams", "package": "@supabase/auth-js" } @@ -66237,14 +67674,14 @@ { "type": "reflection", "declaration": { - "id": 2044, + "id": 2046, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2045, + "id": 2047, "name": "data", "variant": "declaration", "kind": 1024, @@ -66252,7 +67689,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -66262,7 +67699,7 @@ } }, { - "id": 2046, + "id": 2048, "name": "error", "variant": "declaration", "kind": 1024, @@ -66270,13 +67707,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -66285,13 +67722,13 @@ "groups": [ { "title": "Properties", - "children": [2045, 2046] + "children": [2047, 2048] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66300,14 +67737,14 @@ { "type": "reflection", "declaration": { - "id": 2047, + "id": 2049, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2048, + "id": 2050, "name": "data", "variant": "declaration", "kind": 1024, @@ -66315,7 +67752,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], @@ -66330,7 +67767,7 @@ } }, { - "id": 2049, + "id": 2051, "name": "error", "variant": "declaration", "kind": 1024, @@ -66338,7 +67775,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -66351,13 +67788,13 @@ "groups": [ { "title": "Properties", - "children": [2048, 2049] + "children": [2050, 2051] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66371,7 +67808,7 @@ } }, { - "id": 2050, + "id": 2052, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66379,20 +67816,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1167, + "line": 1156, "character": 4 } ], "parameters": [ { - "id": 2051, + "id": 2053, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1991, + "target": 1993, "name": "MFAChallengeWebauthnParams", "package": "@supabase/auth-js" } @@ -66411,14 +67848,14 @@ { "type": "reflection", "declaration": { - "id": 2052, + "id": 2054, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2053, + "id": 2055, "name": "data", "variant": "declaration", "kind": 1024, @@ -66426,7 +67863,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -66436,7 +67873,7 @@ } }, { - "id": 2054, + "id": 2056, "name": "error", "variant": "declaration", "kind": 1024, @@ -66444,13 +67881,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -66459,13 +67896,13 @@ "groups": [ { "title": "Properties", - "children": [2053, 2054] + "children": [2055, 2056] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66474,14 +67911,14 @@ { "type": "reflection", "declaration": { - "id": 2055, + "id": 2057, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2056, + "id": 2058, "name": "data", "variant": "declaration", "kind": 1024, @@ -66489,7 +67926,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], @@ -66524,7 +67961,7 @@ } }, { - "id": 2057, + "id": 2059, "name": "error", "variant": "declaration", "kind": 1024, @@ -66532,7 +67969,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -66545,13 +67982,13 @@ "groups": [ { "title": "Properties", - "children": [2056, 2057] + "children": [2058, 2059] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66565,7 +68002,7 @@ } }, { - "id": 2058, + "id": 2060, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66573,20 +68010,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1168, + "line": 1157, "character": 4 } ], "parameters": [ { - "id": 2059, + "id": 2061, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1992, + "target": 1994, "name": "MFAChallengeParams", "package": "@supabase/auth-js" } @@ -66601,7 +68038,7 @@ "typeArguments": [ { "type": "reference", - "target": 2011, + "target": 2013, "name": "AuthMFAChallengeResponse", "package": "@supabase/auth-js" } @@ -66613,7 +68050,7 @@ ] }, { - "id": 2072, + "id": 2074, "name": "challengeAndVerify", "variant": "declaration", "kind": 2048, @@ -66621,13 +68058,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1357, + "line": 1346, "character": 4 } ], "signatures": [ { - "id": 2073, + "id": 2075, "name": "challengeAndVerify", "variant": "signature", "kind": 4096, @@ -66719,13 +68156,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1357, + "line": 1346, "character": 4 } ], "parameters": [ { - "id": 2074, + "id": 2076, "name": "params", "variant": "param", "kind": 32768, @@ -66750,7 +68187,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -66762,7 +68199,7 @@ ] }, { - "id": 2024, + "id": 2026, "name": "enroll", "variant": "declaration", "kind": 2048, @@ -66770,28 +68207,28 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1092, + "line": 1081, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1093, + "line": 1082, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1094, + "line": 1083, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1095, + "line": 1084, "character": 4 } ], "signatures": [ { - "id": 2025, + "id": 2027, "name": "enroll", "variant": "signature", "kind": 4096, @@ -66986,20 +68423,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1092, + "line": 1081, "character": 4 } ], "parameters": [ { - "id": 2026, + "id": 2028, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2122, + "target": 2124, "name": "MFAEnrollTOTPParams", "package": "@supabase/auth-js" } @@ -67014,7 +68451,7 @@ "typeArguments": [ { "type": "reference", - "target": 2125, + "target": 2127, "name": "AuthMFAEnrollTOTPResponse", "package": "@supabase/auth-js" } @@ -67024,7 +68461,7 @@ } }, { - "id": 2027, + "id": 2029, "name": "enroll", "variant": "signature", "kind": 4096, @@ -67032,20 +68469,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1093, + "line": 1082, "character": 4 } ], "parameters": [ { - "id": 2028, + "id": 2030, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2123, + "target": 2125, "name": "MFAEnrollPhoneParams", "package": "@supabase/auth-js" } @@ -67060,7 +68497,7 @@ "typeArguments": [ { "type": "reference", - "target": 2126, + "target": 2128, "name": "AuthMFAEnrollPhoneResponse", "package": "@supabase/auth-js" } @@ -67070,7 +68507,7 @@ } }, { - "id": 2029, + "id": 2031, "name": "enroll", "variant": "signature", "kind": 4096, @@ -67078,13 +68515,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1094, + "line": 1083, "character": 4 } ], "parameters": [ { - "id": 2030, + "id": 2032, "name": "params", "variant": "param", "kind": 32768, @@ -67109,7 +68546,7 @@ "typeArguments": [ { "type": "reference", - "target": 2127, + "target": 2129, "name": "AuthMFAEnrollWebauthnResponse", "package": "@supabase/auth-js" } @@ -67119,7 +68556,7 @@ } }, { - "id": 2031, + "id": 2033, "name": "enroll", "variant": "signature", "kind": 4096, @@ -67127,20 +68564,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1095, + "line": 1084, "character": 4 } ], "parameters": [ { - "id": 2032, + "id": 2034, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1975, + "target": 1977, "name": "MFAEnrollParams", "package": "@supabase/auth-js" } @@ -67155,7 +68592,7 @@ "typeArguments": [ { "type": "reference", - "target": 2002, + "target": 2004, "name": "AuthMFAEnrollResponse", "package": "@supabase/auth-js" } @@ -67167,7 +68604,7 @@ ] }, { - "id": 2077, + "id": 2079, "name": "getAuthenticatorAssuranceLevel", "variant": "declaration", "kind": 2048, @@ -67175,13 +68612,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1422, + "line": 1411, "character": 4 } ], "signatures": [ { - "id": 2078, + "id": 2080, "name": "getAuthenticatorAssuranceLevel", "variant": "signature", "kind": 4096, @@ -67331,13 +68768,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1422, + "line": 1411, "character": 4 } ], "parameters": [ { - "id": 2079, + "id": 2081, "name": "jwt", "variant": "param", "kind": 32768, @@ -67367,7 +68804,7 @@ "typeArguments": [ { "type": "reference", - "target": 2018, + "target": 2020, "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse", "package": "@supabase/auth-js" } @@ -67379,7 +68816,7 @@ ] }, { - "id": 2075, + "id": 2077, "name": "listFactors", "variant": "declaration", "kind": 2048, @@ -67387,13 +68824,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1369, + "line": 1358, "character": 4 } ], "signatures": [ { - "id": 2076, + "id": 2078, "name": "listFactors", "variant": "signature", "kind": 4096, @@ -67417,7 +68854,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#enroll", - "target": 2024 + "target": 2026 }, { "kind": "text", @@ -67431,7 +68868,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel", - "target": 2077 + "target": 2079 }, { "kind": "text", @@ -67476,7 +68913,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1369, + "line": 1358, "character": 4 } ], @@ -67489,7 +68926,7 @@ "typeArguments": [ { "type": "reference", - "target": 2012, + "target": 2014, "typeArguments": [ { "type": "typeOperator", @@ -67524,7 +68961,7 @@ ] }, { - "id": 2069, + "id": 2071, "name": "unenroll", "variant": "declaration", "kind": 2048, @@ -67532,13 +68969,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1276, + "line": 1265, "character": 4 } ], "signatures": [ { - "id": 2070, + "id": 2072, "name": "unenroll", "variant": "signature", "kind": 4096, @@ -67613,20 +69050,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1276, + "line": 1265, "character": 4 } ], "parameters": [ { - "id": 2071, + "id": 2073, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1976, + "target": 1978, "name": "MFAUnenrollParams", "package": "@supabase/auth-js" } @@ -67641,7 +69078,7 @@ "typeArguments": [ { "type": "reference", - "target": 2003, + "target": 2005, "name": "AuthMFAUnenrollResponse", "package": "@supabase/auth-js" } @@ -67653,7 +69090,7 @@ ] }, { - "id": 2060, + "id": 2062, "name": "verify", "variant": "declaration", "kind": 2048, @@ -67661,28 +69098,28 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1248, + "line": 1237, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1249, + "line": 1238, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1250, + "line": 1239, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1251, + "line": 1240, "character": 4 } ], "signatures": [ { - "id": 2061, + "id": 2063, "name": "verify", "variant": "signature", "kind": 4096, @@ -67750,20 +69187,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1248, + "line": 1237, "character": 4 } ], "parameters": [ { - "id": 2062, + "id": 2064, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1979, + "target": 1981, "name": "MFAVerifyTOTPParams", "package": "@supabase/auth-js" } @@ -67778,7 +69215,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67788,7 +69225,7 @@ } }, { - "id": 2063, + "id": 2065, "name": "verify", "variant": "signature", "kind": 4096, @@ -67796,20 +69233,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1249, + "line": 1238, "character": 4 } ], "parameters": [ { - "id": 2064, + "id": 2066, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1980, + "target": 1982, "name": "MFAVerifyPhoneParams", "package": "@supabase/auth-js" } @@ -67824,7 +69261,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67834,7 +69271,7 @@ } }, { - "id": 2065, + "id": 2067, "name": "verify", "variant": "signature", "kind": 4096, @@ -67842,20 +69279,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1250, + "line": 1239, "character": 4 } ], "parameters": [ { - "id": 2066, + "id": 2068, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1985, + "target": 1987, "name": "MFAVerifyWebauthnParams", "package": "@supabase/auth-js" } @@ -67870,7 +69307,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67880,7 +69317,7 @@ } }, { - "id": 2067, + "id": 2069, "name": "verify", "variant": "signature", "kind": 4096, @@ -67888,20 +69325,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1251, + "line": 1240, "character": 4 } ], "parameters": [ { - "id": 2068, + "id": 2070, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1987, + "target": 1989, "name": "MFAVerifyParams", "package": "@supabase/auth-js" } @@ -67916,7 +69353,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67931,40 +69368,40 @@ "groups": [ { "title": "Properties", - "children": [2080] + "children": [2082] }, { "title": "Methods", - "children": [2033, 2072, 2024, 2077, 2075, 2069, 2060] + "children": [2035, 2074, 2026, 2079, 2077, 2071, 2062] } ], "categories": [ { "title": "Auth", - "children": [2033, 2072, 2024, 2077, 2075, 2069, 2060] + "children": [2035, 2074, 2026, 2079, 2077, 2071, 2062] }, { "title": "Other", - "children": [2080] + "children": [2082] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1010, + "line": 999, "character": 17 } ] }, { - "id": 2164, + "id": 2166, "name": "JWK", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2168, + "id": 2170, "name": "alg", "variant": "declaration", "kind": 1024, @@ -67974,7 +69411,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1672, + "line": 1661, "character": 4 } ], @@ -67984,7 +69421,7 @@ } }, { - "id": 2167, + "id": 2169, "name": "key_ops", "variant": "declaration", "kind": 1024, @@ -67992,7 +69429,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1671, + "line": 1660, "character": 4 } ], @@ -68005,7 +69442,7 @@ } }, { - "id": 2169, + "id": 2171, "name": "kid", "variant": "declaration", "kind": 1024, @@ -68015,7 +69452,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1673, + "line": 1662, "character": 4 } ], @@ -68025,7 +69462,7 @@ } }, { - "id": 2165, + "id": 2167, "name": "kty", "variant": "declaration", "kind": 1024, @@ -68033,7 +69470,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1670, + "line": 1659, "character": 4 } ], @@ -68050,7 +69487,7 @@ { "type": "reflection", "declaration": { - "id": 2166, + "id": 2168, "name": "__type", "variant": "declaration", "kind": 65536, @@ -68078,19 +69515,19 @@ "groups": [ { "title": "Properties", - "children": [2168, 2167, 2169, 2165] + "children": [2170, 2169, 2171, 2167] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1669, + "line": 1658, "character": 17 } ], "indexSignatures": [ { - "id": 2170, + "id": 2172, "name": "__index", "variant": "signature", "kind": 8192, @@ -68098,13 +69535,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1674, + "line": 1663, "character": 4 } ], "parameters": [ { - "id": 2171, + "id": 2173, "name": "key", "variant": "param", "kind": 32768, @@ -68123,7 +69560,7 @@ ] }, { - "id": 2144, + "id": 2146, "name": "JwtPayload", "variant": "declaration", "kind": 256, @@ -68149,7 +69586,7 @@ }, "children": [ { - "id": 2160, + "id": 2162, "name": "aal", "variant": "declaration", "kind": 1024, @@ -68159,13 +69596,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1640, + "line": 1629, "character": 4 } ], "type": { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" }, @@ -68176,7 +69613,7 @@ } }, { - "id": 2152, + "id": 2154, "name": "amr", "variant": "declaration", "kind": 1024, @@ -68194,7 +69631,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1665, + "line": 1654, "character": 4 } ], @@ -68212,7 +69649,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1705, + "target": 1707, "name": "AMREntry", "package": "@supabase/auth-js" } @@ -68221,7 +69658,7 @@ } }, { - "id": 2150, + "id": 2152, "name": "app_metadata", "variant": "declaration", "kind": 1024, @@ -68231,19 +69668,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1657, + "line": 1646, "character": 4 } ], "type": { "type": "reference", - "target": 1732, + "target": 1734, "name": "UserAppMetadata", "package": "@supabase/auth-js" } }, { - "id": 2156, + "id": 2158, "name": "aud", "variant": "declaration", "kind": 1024, @@ -68253,7 +69690,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1636, + "line": 1625, "character": 4 } ], @@ -68280,7 +69717,7 @@ } }, { - "id": 2145, + "id": 2147, "name": "email", "variant": "declaration", "kind": 1024, @@ -68290,7 +69727,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1652, + "line": 1641, "character": 4 } ], @@ -68300,7 +69737,7 @@ } }, { - "id": 2157, + "id": 2159, "name": "exp", "variant": "declaration", "kind": 1024, @@ -68310,7 +69747,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1637, + "line": 1626, "character": 4 } ], @@ -68325,7 +69762,7 @@ } }, { - "id": 2158, + "id": 2160, "name": "iat", "variant": "declaration", "kind": 1024, @@ -68335,7 +69772,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1638, + "line": 1627, "character": 4 } ], @@ -68350,7 +69787,7 @@ } }, { - "id": 2147, + "id": 2149, "name": "is_anonymous", "variant": "declaration", "kind": 1024, @@ -68360,7 +69797,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1654, + "line": 1643, "character": 4 } ], @@ -68370,7 +69807,7 @@ } }, { - "id": 2154, + "id": 2156, "name": "iss", "variant": "declaration", "kind": 1024, @@ -68380,7 +69817,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1634, + "line": 1623, "character": 4 } ], @@ -68395,7 +69832,7 @@ } }, { - "id": 2148, + "id": 2150, "name": "jti", "variant": "declaration", "kind": 1024, @@ -68405,7 +69842,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1655, + "line": 1644, "character": 4 } ], @@ -68415,7 +69852,7 @@ } }, { - "id": 2149, + "id": 2151, "name": "nbf", "variant": "declaration", "kind": 1024, @@ -68425,7 +69862,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1656, + "line": 1645, "character": 4 } ], @@ -68435,7 +69872,7 @@ } }, { - "id": 2146, + "id": 2148, "name": "phone", "variant": "declaration", "kind": 1024, @@ -68445,7 +69882,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1653, + "line": 1642, "character": 4 } ], @@ -68455,7 +69892,7 @@ } }, { - "id": 2153, + "id": 2155, "name": "ref", "variant": "declaration", "kind": 1024, @@ -68465,7 +69902,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1666, + "line": 1655, "character": 4 } ], @@ -68475,7 +69912,7 @@ } }, { - "id": 2159, + "id": 2161, "name": "role", "variant": "declaration", "kind": 1024, @@ -68485,7 +69922,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1639, + "line": 1628, "character": 4 } ], @@ -68500,7 +69937,7 @@ } }, { - "id": 2161, + "id": 2163, "name": "session_id", "variant": "declaration", "kind": 1024, @@ -68510,7 +69947,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1641, + "line": 1630, "character": 4 } ], @@ -68525,7 +69962,7 @@ } }, { - "id": 2155, + "id": 2157, "name": "sub", "variant": "declaration", "kind": 1024, @@ -68535,7 +69972,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1635, + "line": 1624, "character": 4 } ], @@ -68550,7 +69987,7 @@ } }, { - "id": 2151, + "id": 2153, "name": "user_metadata", "variant": "declaration", "kind": 1024, @@ -68560,13 +69997,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1658, + "line": 1647, "character": 4 } ], "type": { "type": "reference", - "target": 1737, + "target": 1739, "name": "UserMetadata", "package": "@supabase/auth-js" } @@ -68576,21 +70013,21 @@ { "title": "Properties", "children": [ - 2160, 2152, 2150, 2156, 2145, 2157, 2158, 2147, 2154, 2148, 2149, 2146, 2153, 2159, - 2161, 2155, 2151 + 2162, 2154, 2152, 2158, 2147, 2159, 2160, 2149, 2156, 2150, 2151, 2148, 2155, 2161, + 2163, 2157, 2153 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1651, + "line": 1640, "character": 17 } ], "indexSignatures": [ { - "id": 2162, + "id": 2164, "name": "__index", "variant": "signature", "kind": 8192, @@ -68598,13 +70035,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1667, + "line": 1656, "character": 4 } ], "parameters": [ { - "id": 2163, + "id": 2165, "name": "key", "variant": "param", "kind": 32768, @@ -68624,21 +70061,21 @@ "extendedTypes": [ { "type": "reference", - "target": 2134, + "target": 2136, "name": "RequiredClaims", "package": "@supabase/auth-js" } ] }, { - "id": 1762, + "id": 1764, "name": "Subscription", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1764, + "id": 1766, "name": "callback", "variant": "declaration", "kind": 1024, @@ -68654,14 +70091,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 500, + "line": 489, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1765, + "id": 1767, "name": "__type", "variant": "declaration", "kind": 65536, @@ -68669,13 +70106,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 500, + "line": 489, "character": 14 } ], "signatures": [ { - "id": 1766, + "id": 1768, "name": "__type", "variant": "signature", "kind": 4096, @@ -68683,26 +70120,26 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 500, + "line": 489, "character": 14 } ], "parameters": [ { - "id": 1767, + "id": 1769, "name": "event", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1587, + "target": 1589, "name": "AuthChangeEvent", "package": "@supabase/auth-js" } }, { - "id": 1768, + "id": 1770, "name": "session", "variant": "param", "kind": 32768, @@ -68734,7 +70171,7 @@ } }, { - "id": 1763, + "id": 1765, "name": "id", "variant": "declaration", "kind": 1024, @@ -68750,7 +70187,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 496, + "line": 485, "character": 4 } ], @@ -68769,7 +70206,7 @@ } }, { - "id": 1769, + "id": 1771, "name": "unsubscribe", "variant": "declaration", "kind": 1024, @@ -68785,14 +70222,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 504, + "line": 493, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1770, + "id": 1772, "name": "__type", "variant": "declaration", "kind": 65536, @@ -68800,13 +70237,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 504, + "line": 493, "character": 17 } ], "signatures": [ { - "id": 1771, + "id": 1773, "name": "__type", "variant": "signature", "kind": 4096, @@ -68814,7 +70251,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 504, + "line": 493, "character": 17 } ], @@ -68831,13 +70268,13 @@ "groups": [ { "title": "Properties", - "children": [1764, 1763, 1769] + "children": [1766, 1765, 1771] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 490, + "line": 479, "character": 17 } ] @@ -69015,7 +70452,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L71" } ], "type": { @@ -69097,7 +70534,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L93" } ], "type": { @@ -69117,19 +70554,19 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 53, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L53" } ] }, { - "id": 1732, + "id": 1734, "name": "UserAppMetadata", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1733, + "id": 1735, "name": "provider", "variant": "declaration", "kind": 1024, @@ -69147,7 +70584,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 350, + "line": 339, "character": 4 } ], @@ -69157,7 +70594,7 @@ } }, { - "id": 1734, + "id": 1736, "name": "providers", "variant": "declaration", "kind": 1024, @@ -69175,7 +70612,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 354, + "line": 343, "character": 4 } ], @@ -69191,19 +70628,19 @@ "groups": [ { "title": "Properties", - "children": [1733, 1734] + "children": [1735, 1736] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 346, + "line": 335, "character": 17 } ], "indexSignatures": [ { - "id": 1735, + "id": 1737, "name": "__index", "variant": "signature", "kind": 8192, @@ -69211,13 +70648,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 355, + "line": 344, "character": 4 } ], "parameters": [ { - "id": 1736, + "id": 1738, "name": "key", "variant": "param", "kind": 32768, @@ -69236,14 +70673,14 @@ ] }, { - "id": 1741, + "id": 1743, "name": "UserAttributes", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1742, + "id": 1744, "name": "current_password", "variant": "declaration", "kind": 1024, @@ -69261,7 +70698,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 396, + "line": 385, "character": 4 } ], @@ -69271,7 +70708,7 @@ } }, { - "id": 1747, + "id": 1749, "name": "data", "variant": "declaration", "kind": 1024, @@ -69305,7 +70742,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 421, + "line": 410, "character": 4 } ], @@ -69315,7 +70752,7 @@ } }, { - "id": 1743, + "id": 1745, "name": "email", "variant": "declaration", "kind": 1024, @@ -69333,7 +70770,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 400, + "line": 389, "character": 4 } ], @@ -69343,7 +70780,7 @@ } }, { - "id": 1746, + "id": 1748, "name": "nonce", "variant": "declaration", "kind": 1024, @@ -69361,7 +70798,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 414, + "line": 403, "character": 4 } ], @@ -69371,7 +70808,7 @@ } }, { - "id": 1745, + "id": 1747, "name": "password", "variant": "declaration", "kind": 1024, @@ -69389,7 +70826,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 408, + "line": 397, "character": 4 } ], @@ -69399,7 +70836,7 @@ } }, { - "id": 1744, + "id": 1746, "name": "phone", "variant": "declaration", "kind": 1024, @@ -69417,7 +70854,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 404, + "line": 393, "character": 4 } ], @@ -69430,26 +70867,26 @@ "groups": [ { "title": "Properties", - "children": [1742, 1747, 1743, 1746, 1745, 1744] + "children": [1744, 1749, 1745, 1748, 1747, 1746] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 388, + "line": 377, "character": 17 } ] }, { - "id": 1708, + "id": 1710, "name": "UserIdentity", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1717, + "id": 1719, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -69459,7 +70896,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 308, + "line": 297, "character": 4 } ], @@ -69469,7 +70906,7 @@ } }, { - "id": 1709, + "id": 1711, "name": "id", "variant": "declaration", "kind": 1024, @@ -69477,7 +70914,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 301, + "line": 290, "character": 4 } ], @@ -69487,7 +70924,7 @@ } }, { - "id": 1711, + "id": 1713, "name": "identity_data", "variant": "declaration", "kind": 1024, @@ -69497,14 +70934,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 303, + "line": 292, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1712, + "id": 1714, "name": "__type", "variant": "declaration", "kind": 65536, @@ -69512,13 +70949,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 303, + "line": 292, "character": 20 } ], "indexSignatures": [ { - "id": 1713, + "id": 1715, "name": "__index", "variant": "signature", "kind": 8192, @@ -69526,13 +70963,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 304, + "line": 293, "character": 8 } ], "parameters": [ { - "id": 1714, + "id": 1716, "name": "key", "variant": "param", "kind": 32768, @@ -69553,7 +70990,7 @@ } }, { - "id": 1715, + "id": 1717, "name": "identity_id", "variant": "declaration", "kind": 1024, @@ -69561,7 +70998,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 306, + "line": 295, "character": 4 } ], @@ -69571,7 +71008,7 @@ } }, { - "id": 1718, + "id": 1720, "name": "last_sign_in_at", "variant": "declaration", "kind": 1024, @@ -69581,7 +71018,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 309, + "line": 298, "character": 4 } ], @@ -69591,7 +71028,7 @@ } }, { - "id": 1716, + "id": 1718, "name": "provider", "variant": "declaration", "kind": 1024, @@ -69599,7 +71036,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 307, + "line": 296, "character": 4 } ], @@ -69609,7 +71046,7 @@ } }, { - "id": 1719, + "id": 1721, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -69619,7 +71056,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 310, + "line": 299, "character": 4 } ], @@ -69629,7 +71066,7 @@ } }, { - "id": 1710, + "id": 1712, "name": "user_id", "variant": "declaration", "kind": 1024, @@ -69637,7 +71074,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 302, + "line": 291, "character": 4 } ], @@ -69650,19 +71087,19 @@ "groups": [ { "title": "Properties", - "children": [1717, 1709, 1711, 1715, 1718, 1716, 1719, 1710] + "children": [1719, 1711, 1713, 1717, 1720, 1718, 1721, 1712] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 300, + "line": 289, "character": 17 } ] }, { - "id": 1737, + "id": 1739, "name": "UserMetadata", "variant": "declaration", "kind": 256, @@ -69670,13 +71107,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 357, + "line": 346, "character": 17 } ], "indexSignatures": [ { - "id": 1738, + "id": 1740, "name": "__index", "variant": "signature", "kind": 8192, @@ -69684,13 +71121,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 358, + "line": 347, "character": 4 } ], "parameters": [ { - "id": 1739, + "id": 1741, "name": "key", "variant": "param", "kind": 32768, @@ -69709,14 +71146,14 @@ ] }, { - "id": 1893, + "id": 1895, "name": "VerifyEmailOtpParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1894, + "id": 1896, "name": "email", "variant": "declaration", "kind": 1024, @@ -69732,7 +71169,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 682, + "line": 671, "character": 4 } ], @@ -69742,7 +71179,7 @@ } }, { - "id": 1897, + "id": 1899, "name": "options", "variant": "declaration", "kind": 1024, @@ -69752,21 +71189,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 687, + "line": 676, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1898, + "id": 1900, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1900, + "id": 1902, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -69790,7 +71227,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 694, + "line": 683, "character": 8 } ], @@ -69800,7 +71237,7 @@ } }, { - "id": 1899, + "id": 1901, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -69818,7 +71255,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 689, + "line": 678, "character": 8 } ], @@ -69831,13 +71268,13 @@ "groups": [ { "title": "Properties", - "children": [1900, 1899] + "children": [1902, 1901] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 687, + "line": 676, "character": 14 } ] @@ -69845,7 +71282,7 @@ } }, { - "id": 1895, + "id": 1897, "name": "token", "variant": "declaration", "kind": 1024, @@ -69861,7 +71298,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 684, + "line": 673, "character": 4 } ], @@ -69871,7 +71308,7 @@ } }, { - "id": 1896, + "id": 1898, "name": "type", "variant": "declaration", "kind": 1024, @@ -69887,13 +71324,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 686, + "line": 675, "character": 4 } ], "type": { "type": "reference", - "target": 1906, + "target": 1908, "name": "EmailOtpType", "package": "@supabase/auth-js" } @@ -69902,26 +71339,26 @@ "groups": [ { "title": "Properties", - "children": [1894, 1897, 1895, 1896] + "children": [1896, 1899, 1897, 1898] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 680, + "line": 669, "character": 17 } ] }, { - "id": 1885, + "id": 1887, "name": "VerifyMobileOtpParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1889, + "id": 1891, "name": "options", "variant": "declaration", "kind": 1024, @@ -69931,21 +71368,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 669, + "line": 658, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1890, + "id": 1892, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1892, + "id": 1894, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -69969,7 +71406,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 677, + "line": 666, "character": 8 } ], @@ -69979,7 +71416,7 @@ } }, { - "id": 1891, + "id": 1893, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -69997,7 +71434,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 671, + "line": 660, "character": 8 } ], @@ -70010,13 +71447,13 @@ "groups": [ { "title": "Properties", - "children": [1892, 1891] + "children": [1894, 1893] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 669, + "line": 658, "character": 14 } ] @@ -70024,7 +71461,7 @@ } }, { - "id": 1886, + "id": 1888, "name": "phone", "variant": "declaration", "kind": 1024, @@ -70040,7 +71477,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 664, + "line": 653, "character": 4 } ], @@ -70050,7 +71487,7 @@ } }, { - "id": 1887, + "id": 1889, "name": "token", "variant": "declaration", "kind": 1024, @@ -70066,7 +71503,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 666, + "line": 655, "character": 4 } ], @@ -70076,7 +71513,7 @@ } }, { - "id": 1888, + "id": 1890, "name": "type", "variant": "declaration", "kind": 1024, @@ -70092,13 +71529,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 668, + "line": 657, "character": 4 } ], "type": { "type": "reference", - "target": 1904, + "target": 1906, "name": "MobileOtpType", "package": "@supabase/auth-js" } @@ -70107,26 +71544,26 @@ "groups": [ { "title": "Properties", - "children": [1889, 1886, 1887, 1888] + "children": [1891, 1888, 1889, 1890] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 662, + "line": 651, "character": 17 } ] }, { - "id": 1901, + "id": 1903, "name": "VerifyTokenHashParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1902, + "id": 1904, "name": "token_hash", "variant": "declaration", "kind": 1024, @@ -70142,7 +71579,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 699, + "line": 688, "character": 4 } ], @@ -70152,7 +71589,7 @@ } }, { - "id": 1903, + "id": 1905, "name": "type", "variant": "declaration", "kind": 1024, @@ -70168,13 +71605,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 701, + "line": 690, "character": 4 } ], "type": { "type": "reference", - "target": 1906, + "target": 1908, "name": "EmailOtpType", "package": "@supabase/auth-js" } @@ -70183,26 +71620,26 @@ "groups": [ { "title": "Properties", - "children": [1902, 1903] + "children": [1904, 1905] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 697, + "line": 686, "character": 17 } ] }, { - "id": 3409, + "id": 3431, "name": "WebSocketLike", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3452, + "id": 3474, "name": "binaryType", "variant": "declaration", "kind": 1024, @@ -70222,7 +71659,7 @@ } }, { - "id": 3453, + "id": 3475, "name": "bufferedAmount", "variant": "declaration", "kind": 1024, @@ -70242,7 +71679,7 @@ } }, { - "id": 3413, + "id": 3435, "name": "CLOSED", "variant": "declaration", "kind": 1024, @@ -70262,7 +71699,7 @@ } }, { - "id": 3412, + "id": 3434, "name": "CLOSING", "variant": "declaration", "kind": 1024, @@ -70282,7 +71719,7 @@ } }, { - "id": 3410, + "id": 3432, "name": "CONNECTING", "variant": "declaration", "kind": 1024, @@ -70302,7 +71739,7 @@ } }, { - "id": 3455, + "id": 3477, "name": "dispatchEvent", "variant": "declaration", "kind": 1024, @@ -70319,7 +71756,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3456, + "id": 3478, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70333,7 +71770,7 @@ ], "signatures": [ { - "id": 3457, + "id": 3479, "name": "__type", "variant": "signature", "kind": 4096, @@ -70347,7 +71784,7 @@ ], "parameters": [ { - "id": 3458, + "id": 3480, "name": "event", "variant": "param", "kind": 32768, @@ -70373,7 +71810,7 @@ } }, { - "id": 3454, + "id": 3476, "name": "extensions", "variant": "declaration", "kind": 1024, @@ -70393,7 +71830,7 @@ } }, { - "id": 3434, + "id": 3456, "name": "onclose", "variant": "declaration", "kind": 1024, @@ -70415,7 +71852,7 @@ { "type": "reflection", "declaration": { - "id": 3435, + "id": 3457, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70429,7 +71866,7 @@ ], "signatures": [ { - "id": 3436, + "id": 3458, "name": "__type", "variant": "signature", "kind": 4096, @@ -70443,7 +71880,7 @@ ], "parameters": [ { - "id": 3437, + "id": 3459, "name": "this", "variant": "param", "kind": 32768, @@ -70454,7 +71891,7 @@ } }, { - "id": 3438, + "id": 3460, "name": "ev", "variant": "param", "kind": 32768, @@ -70482,7 +71919,7 @@ } }, { - "id": 3439, + "id": 3461, "name": "onerror", "variant": "declaration", "kind": 1024, @@ -70504,7 +71941,7 @@ { "type": "reflection", "declaration": { - "id": 3440, + "id": 3462, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70518,7 +71955,7 @@ ], "signatures": [ { - "id": 3441, + "id": 3463, "name": "__type", "variant": "signature", "kind": 4096, @@ -70532,7 +71969,7 @@ ], "parameters": [ { - "id": 3442, + "id": 3464, "name": "this", "variant": "param", "kind": 32768, @@ -70543,7 +71980,7 @@ } }, { - "id": 3443, + "id": 3465, "name": "ev", "variant": "param", "kind": 32768, @@ -70571,7 +72008,7 @@ } }, { - "id": 3429, + "id": 3451, "name": "onmessage", "variant": "declaration", "kind": 1024, @@ -70593,7 +72030,7 @@ { "type": "reflection", "declaration": { - "id": 3430, + "id": 3452, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70607,7 +72044,7 @@ ], "signatures": [ { - "id": 3431, + "id": 3453, "name": "__type", "variant": "signature", "kind": 4096, @@ -70621,7 +72058,7 @@ ], "parameters": [ { - "id": 3432, + "id": 3454, "name": "this", "variant": "param", "kind": 32768, @@ -70632,7 +72069,7 @@ } }, { - "id": 3433, + "id": 3455, "name": "ev", "variant": "param", "kind": 32768, @@ -70660,7 +72097,7 @@ } }, { - "id": 3424, + "id": 3446, "name": "onopen", "variant": "declaration", "kind": 1024, @@ -70682,7 +72119,7 @@ { "type": "reflection", "declaration": { - "id": 3425, + "id": 3447, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70696,7 +72133,7 @@ ], "signatures": [ { - "id": 3426, + "id": 3448, "name": "__type", "variant": "signature", "kind": 4096, @@ -70710,7 +72147,7 @@ ], "parameters": [ { - "id": 3427, + "id": 3449, "name": "this", "variant": "param", "kind": 32768, @@ -70721,7 +72158,7 @@ } }, { - "id": 3428, + "id": 3450, "name": "ev", "variant": "param", "kind": 32768, @@ -70749,7 +72186,7 @@ } }, { - "id": 3411, + "id": 3433, "name": "OPEN", "variant": "declaration", "kind": 1024, @@ -70769,7 +72206,7 @@ } }, { - "id": 3416, + "id": 3438, "name": "protocol", "variant": "declaration", "kind": 1024, @@ -70789,7 +72226,7 @@ } }, { - "id": 3414, + "id": 3436, "name": "readyState", "variant": "declaration", "kind": 1024, @@ -70809,7 +72246,7 @@ } }, { - "id": 3415, + "id": 3437, "name": "url", "variant": "declaration", "kind": 1024, @@ -70829,7 +72266,7 @@ } }, { - "id": 3444, + "id": 3466, "name": "addEventListener", "variant": "declaration", "kind": 2048, @@ -70843,7 +72280,7 @@ ], "signatures": [ { - "id": 3445, + "id": 3467, "name": "addEventListener", "variant": "signature", "kind": 4096, @@ -70865,7 +72302,7 @@ ], "parameters": [ { - "id": 3446, + "id": 3468, "name": "type", "variant": "param", "kind": 32768, @@ -70876,7 +72313,7 @@ } }, { - "id": 3447, + "id": 3469, "name": "listener", "variant": "param", "kind": 32768, @@ -70900,7 +72337,7 @@ ] }, { - "id": 3417, + "id": 3439, "name": "close", "variant": "declaration", "kind": 2048, @@ -70914,7 +72351,7 @@ ], "signatures": [ { - "id": 3418, + "id": 3440, "name": "close", "variant": "signature", "kind": 4096, @@ -70936,7 +72373,7 @@ ], "parameters": [ { - "id": 3419, + "id": 3441, "name": "code", "variant": "param", "kind": 32768, @@ -70949,7 +72386,7 @@ } }, { - "id": 3420, + "id": 3442, "name": "reason", "variant": "param", "kind": 32768, @@ -70970,7 +72407,7 @@ ] }, { - "id": 3448, + "id": 3470, "name": "removeEventListener", "variant": "declaration", "kind": 2048, @@ -70984,7 +72421,7 @@ ], "signatures": [ { - "id": 3449, + "id": 3471, "name": "removeEventListener", "variant": "signature", "kind": 4096, @@ -71006,7 +72443,7 @@ ], "parameters": [ { - "id": 3450, + "id": 3472, "name": "type", "variant": "param", "kind": 32768, @@ -71017,7 +72454,7 @@ } }, { - "id": 3451, + "id": 3473, "name": "listener", "variant": "param", "kind": 32768, @@ -71041,7 +72478,7 @@ ] }, { - "id": 3421, + "id": 3443, "name": "send", "variant": "declaration", "kind": 2048, @@ -71055,7 +72492,7 @@ ], "signatures": [ { - "id": 3422, + "id": 3444, "name": "send", "variant": "signature", "kind": 4096, @@ -71077,7 +72514,7 @@ ], "parameters": [ { - "id": 3423, + "id": 3445, "name": "data", "variant": "param", "kind": 32768, @@ -71143,13 +72580,13 @@ { "title": "Properties", "children": [ - 3452, 3453, 3413, 3412, 3410, 3455, 3454, 3434, 3439, 3429, 3424, 3411, 3416, 3414, - 3415 + 3474, 3475, 3435, 3434, 3432, 3477, 3476, 3456, 3461, 3451, 3446, 3433, 3438, 3436, + 3437 ] }, { "title": "Methods", - "children": [3444, 3417, 3448, 3421] + "children": [3466, 3439, 3470, 3443] } ], "sources": [ @@ -71161,7 +72598,7 @@ ] }, { - "id": 3459, + "id": 3481, "name": "WebSocketLikeConstructor", "variant": "declaration", "kind": 256, @@ -71184,7 +72621,7 @@ }, "children": [ { - "id": 3460, + "id": 3482, "name": "constructor", "variant": "declaration", "kind": 512, @@ -71198,7 +72635,7 @@ ], "signatures": [ { - "id": 3461, + "id": 3483, "name": "WebSocketLikeConstructor", "variant": "signature", "kind": 16384, @@ -71212,7 +72649,7 @@ ], "parameters": [ { - "id": 3462, + "id": 3484, "name": "address", "variant": "param", "kind": 32768, @@ -71237,7 +72674,7 @@ } }, { - "id": 3463, + "id": 3485, "name": "subprotocols", "variant": "param", "kind": 32768, @@ -71264,7 +72701,7 @@ ], "type": { "type": "reference", - "target": 3409, + "target": 3431, "name": "WebSocketLike", "package": "@supabase/realtime-js" } @@ -71275,7 +72712,7 @@ "groups": [ { "title": "Constructors", - "children": [3460] + "children": [3482] } ], "sources": [ @@ -71287,7 +72724,7 @@ ], "indexSignatures": [ { - "id": 3464, + "id": 3486, "name": "__index", "variant": "signature", "kind": 8192, @@ -71301,7 +72738,7 @@ ], "parameters": [ { - "id": 3465, + "id": 3487, "name": "key", "variant": "param", "kind": 32768, @@ -71320,7 +72757,7 @@ ] }, { - "id": 1703, + "id": 1705, "name": "AMRMethod", "variant": "declaration", "kind": 2097152, @@ -71328,7 +72765,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 278, + "line": 267, "character": 12 } ], @@ -71365,7 +72802,7 @@ { "type": "reflection", "declaration": { - "id": 1704, + "id": 1706, "name": "__type", "variant": "declaration", "kind": 65536, @@ -71373,7 +72810,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 278, + "line": 267, "character": 64 } ] @@ -71385,7 +72822,7 @@ } }, { - "id": 1587, + "id": 1589, "name": "AuthChangeEvent", "variant": "declaration", "kind": 2097152, @@ -71426,7 +72863,7 @@ }, { "type": "reference", - "target": 1586, + "target": 1588, "name": "AuthChangeEventMFA", "package": "@supabase/auth-js" } @@ -71434,7 +72871,7 @@ } }, { - "id": 1586, + "id": 1588, "name": "AuthChangeEventMFA", "variant": "declaration", "kind": 2097152, @@ -71452,7 +72889,7 @@ } }, { - "id": 2016, + "id": 2018, "name": "AuthenticatorAssuranceLevels", "variant": "declaration", "kind": 2097152, @@ -71460,7 +72897,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 984, + "line": 973, "character": 12 } ], @@ -71485,7 +72922,7 @@ { "type": "reflection", "declaration": { - "id": 2017, + "id": 2019, "name": "__type", "variant": "declaration", "kind": 65536, @@ -71493,7 +72930,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 984, + "line": 973, "character": 71 } ] @@ -71505,7 +72942,7 @@ } }, { - "id": 1808, + "id": 1810, "name": "AuthFlowType", "variant": "declaration", "kind": 2097152, @@ -71513,7 +72950,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 573, + "line": 562, "character": 12 } ], @@ -71538,7 +72975,7 @@ { "type": "reflection", "declaration": { - "id": 1809, + "id": 1811, "name": "__type", "variant": "declaration", "kind": 65536, @@ -71546,7 +72983,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 573, + "line": 562, "character": 59 } ] @@ -71558,7 +72995,7 @@ } }, { - "id": 2084, + "id": 2086, "name": "AuthMFAAdminDeleteFactorParams", "variant": "declaration", "kind": 2097152, @@ -71575,21 +73012,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1435, + "line": 1424, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2085, + "id": 2087, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2086, + "id": 2088, "name": "id", "variant": "declaration", "kind": 1024, @@ -71605,7 +73042,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1437, + "line": 1426, "character": 4 } ], @@ -71615,7 +73052,7 @@ } }, { - "id": 2087, + "id": 2089, "name": "userId", "variant": "declaration", "kind": 1024, @@ -71631,7 +73068,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1439, + "line": 1428, "character": 4 } ], @@ -71644,13 +73081,13 @@ "groups": [ { "title": "Properties", - "children": [2086, 2087] + "children": [2088, 2089] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1435, + "line": 1424, "character": 45 } ] @@ -71658,7 +73095,7 @@ } }, { - "id": 2081, + "id": 2083, "name": "AuthMFAAdminDeleteFactorResponse", "variant": "declaration", "kind": 2097152, @@ -71675,25 +73112,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1428, + "line": 1417, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2082, + "id": 2084, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2083, + "id": 2085, "name": "id", "variant": "declaration", "kind": 1024, @@ -71709,7 +73146,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1430, + "line": 1419, "character": 4 } ], @@ -71722,13 +73159,13 @@ "groups": [ { "title": "Properties", - "children": [2083] + "children": [2085] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1428, + "line": 1417, "character": 61 } ] @@ -71740,7 +73177,7 @@ } }, { - "id": 2091, + "id": 2093, "name": "AuthMFAAdminListFactorsParams", "variant": "declaration", "kind": 2097152, @@ -71757,21 +73194,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1451, + "line": 1440, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2092, + "id": 2094, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2093, + "id": 2095, "name": "userId", "variant": "declaration", "kind": 1024, @@ -71787,7 +73224,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1453, + "line": 1442, "character": 4 } ], @@ -71800,13 +73237,13 @@ "groups": [ { "title": "Properties", - "children": [2093] + "children": [2095] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1451, + "line": 1440, "character": 44 } ] @@ -71814,7 +73251,7 @@ } }, { - "id": 2088, + "id": 2090, "name": "AuthMFAAdminListFactorsResponse", "variant": "declaration", "kind": 2097152, @@ -71831,25 +73268,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1444, + "line": 1433, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2089, + "id": 2091, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2090, + "id": 2092, "name": "factors", "variant": "declaration", "kind": 1024, @@ -71865,7 +73302,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1446, + "line": 1435, "character": 4 } ], @@ -71873,7 +73310,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1721, + "target": 1723, "name": "Factor", "package": "@supabase/auth-js" } @@ -71883,13 +73320,13 @@ "groups": [ { "title": "Properties", - "children": [2090] + "children": [2092] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1444, + "line": 1433, "character": 60 } ] @@ -71901,7 +73338,7 @@ } }, { - "id": 2007, + "id": 2009, "name": "AuthMFAChallengePhoneResponse", "variant": "declaration", "kind": 2097152, @@ -71909,13 +73346,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 933, + "line": 922, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -71952,7 +73389,7 @@ } }, { - "id": 2011, + "id": 2013, "name": "AuthMFAChallengeResponse", "variant": "declaration", "kind": 2097152, @@ -71960,7 +73397,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 976, + "line": 965, "character": 12 } ], @@ -71969,19 +73406,19 @@ "types": [ { "type": "reference", - "target": 2006, + "target": 2008, "name": "AuthMFAChallengeTOTPResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2007, + "target": 2009, "name": "AuthMFAChallengePhoneResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2008, + "target": 2010, "name": "AuthMFAChallengeWebauthnResponse", "package": "@supabase/auth-js" } @@ -71989,7 +73426,7 @@ } }, { - "id": 2006, + "id": 2008, "name": "AuthMFAChallengeTOTPResponse", "variant": "declaration", "kind": 2097152, @@ -71997,13 +73434,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 931, + "line": 920, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72040,7 +73477,7 @@ } }, { - "id": 2008, + "id": 2010, "name": "AuthMFAChallengeWebauthnResponse", "variant": "declaration", "kind": 2097152, @@ -72069,13 +73506,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 952, + "line": 941, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72112,7 +73549,7 @@ } }, { - "id": 2009, + "id": 2011, "name": "AuthMFAChallengeWebauthnResponseDataJSON", "variant": "declaration", "kind": 2097152, @@ -72128,7 +73565,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 970, + "line": 959, "character": 12 } ], @@ -72163,7 +73600,7 @@ } }, { - "id": 2010, + "id": 2012, "name": "AuthMFAChallengeWebauthnServerResponse", "variant": "declaration", "kind": 2097152, @@ -72179,17 +73616,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 975, + "line": 964, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2009, + "target": 2011, "name": "AuthMFAChallengeWebauthnResponseDataJSON", "package": "@supabase/auth-js" } @@ -72199,7 +73636,7 @@ } }, { - "id": 2126, + "id": 2128, "name": "AuthMFAEnrollPhoneResponse", "variant": "declaration", "kind": 2097152, @@ -72207,13 +73644,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1620, + "line": 1609, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72250,7 +73687,7 @@ } }, { - "id": 2002, + "id": 2004, "name": "AuthMFAEnrollResponse", "variant": "declaration", "kind": 2097152, @@ -72258,7 +73695,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 917, + "line": 906, "character": 12 } ], @@ -72267,19 +73704,19 @@ "types": [ { "type": "reference", - "target": 2125, + "target": 2127, "name": "AuthMFAEnrollTOTPResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2126, + "target": 2128, "name": "AuthMFAEnrollPhoneResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2127, + "target": 2129, "name": "AuthMFAEnrollWebauthnResponse", "package": "@supabase/auth-js" } @@ -72287,7 +73724,7 @@ } }, { - "id": 2125, + "id": 2127, "name": "AuthMFAEnrollTOTPResponse", "variant": "declaration", "kind": 2097152, @@ -72295,13 +73732,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1615, + "line": 1604, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72338,7 +73775,7 @@ } }, { - "id": 2127, + "id": 2129, "name": "AuthMFAEnrollWebauthnResponse", "variant": "declaration", "kind": 2097152, @@ -72367,13 +73804,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1627, + "line": 1616, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72410,7 +73847,7 @@ } }, { - "id": 2018, + "id": 2020, "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse", "variant": "declaration", "kind": 2097152, @@ -72418,25 +73855,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 985, + "line": 974, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2019, + "id": 2021, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2022, + "id": 2024, "name": "currentAuthenticationMethods", "variant": "declaration", "kind": 1024, @@ -72452,7 +73889,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1004, + "line": 993, "character": 4 } ], @@ -72463,7 +73900,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1705, + "target": 1707, "name": "AMREntry", "package": "@supabase/auth-js" } @@ -72479,7 +73916,7 @@ } }, { - "id": 2020, + "id": 2022, "name": "currentLevel", "variant": "declaration", "kind": 1024, @@ -72495,7 +73932,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 987, + "line": 976, "character": 4 } ], @@ -72504,7 +73941,7 @@ "types": [ { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" }, @@ -72516,7 +73953,7 @@ } }, { - "id": 2021, + "id": 2023, "name": "nextLevel", "variant": "declaration", "kind": 1024, @@ -72536,7 +73973,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#challenge", - "target": 2033 + "target": 2035 } ] } @@ -72545,7 +73982,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 994, + "line": 983, "character": 4 } ], @@ -72554,7 +73991,7 @@ "types": [ { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" }, @@ -72569,13 +74006,13 @@ "groups": [ { "title": "Properties", - "children": [2022, 2020, 2021] + "children": [2024, 2022, 2023] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 985, + "line": 974, "character": 74 } ] @@ -72587,7 +74024,7 @@ } }, { - "id": 2012, + "id": 2014, "name": "AuthMFAListFactorsResponse", "variant": "declaration", "kind": 2097152, @@ -72603,13 +74040,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 978, + "line": 967, "character": 12 } ], "typeParameters": [ { - "id": 2015, + "id": 2017, "name": "T", "variant": "typeParam", "kind": 131072, @@ -72644,7 +74081,7 @@ ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72652,14 +74089,14 @@ { "type": "reflection", "declaration": { - "id": 2013, + "id": 2015, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2014, + "id": 2016, "name": "all", "variant": "declaration", "kind": 1024, @@ -72675,7 +74112,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 980, + "line": 969, "character": 4 } ], @@ -72683,7 +74120,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1721, + "target": 1723, "name": "Factor", "package": "@supabase/auth-js" } @@ -72693,13 +74130,13 @@ "groups": [ { "title": "Properties", - "children": [2014] + "children": [2016] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 978, + "line": 967, "character": 106 } ] @@ -72716,7 +74153,7 @@ }, "objectType": { "type": "reference", - "target": 2015, + "target": 2017, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -72726,7 +74163,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1721, + "target": 1723, "typeArguments": [ { "type": "reference", @@ -72756,7 +74193,7 @@ } }, { - "id": 2003, + "id": 2005, "name": "AuthMFAUnenrollResponse", "variant": "declaration", "kind": 2097152, @@ -72764,25 +74201,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 918, + "line": 907, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2004, + "id": 2006, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2005, + "id": 2007, "name": "id", "variant": "declaration", "kind": 1024, @@ -72798,7 +74235,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 920, + "line": 909, "character": 4 } ], @@ -72811,13 +74248,13 @@ "groups": [ { "title": "Properties", - "children": [2005] + "children": [2007] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 918, + "line": 907, "character": 52 } ] @@ -72829,7 +74266,7 @@ } }, { - "id": 2001, + "id": 2003, "name": "AuthMFAVerifyResponse", "variant": "declaration", "kind": 2097152, @@ -72845,17 +74282,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 916, + "line": 905, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 1994, + "target": 1996, "name": "AuthMFAVerifyResponseData", "package": "@supabase/auth-js" } @@ -72865,7 +74302,7 @@ } }, { - "id": 1994, + "id": 1996, "name": "AuthMFAVerifyResponseData", "variant": "declaration", "kind": 2097152, @@ -72881,21 +74318,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 900, + "line": 889, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1995, + "id": 1997, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1996, + "id": 1998, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -72911,7 +74348,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 902, + "line": 891, "character": 4 } ], @@ -72921,7 +74358,7 @@ } }, { - "id": 1998, + "id": 2000, "name": "expires_in", "variant": "declaration", "kind": 1024, @@ -72937,7 +74374,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 906, + "line": 895, "character": 4 } ], @@ -72947,7 +74384,7 @@ } }, { - "id": 1999, + "id": 2001, "name": "refresh_token", "variant": "declaration", "kind": 1024, @@ -72963,7 +74400,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 908, + "line": 897, "character": 4 } ], @@ -72973,7 +74410,7 @@ } }, { - "id": 1997, + "id": 1999, "name": "token_type", "variant": "declaration", "kind": 1024, @@ -72997,7 +74434,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 904, + "line": 893, "character": 4 } ], @@ -73007,7 +74444,7 @@ } }, { - "id": 2000, + "id": 2002, "name": "user", "variant": "declaration", "kind": 1024, @@ -73023,7 +74460,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 910, + "line": 899, "character": 4 } ], @@ -73038,13 +74475,13 @@ "groups": [ { "title": "Properties", - "children": [1996, 1998, 1999, 1997, 2000] + "children": [1998, 2000, 2001, 1999, 2002] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 900, + "line": 889, "character": 40 } ] @@ -73052,7 +74489,7 @@ } }, { - "id": 2380, + "id": 2382, "name": "AuthOAuthAuthorizationDetailsResponse", "variant": "declaration", "kind": 2097152, @@ -73079,26 +74516,26 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2200, + "line": 2189, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "union", "types": [ { "type": "reference", - "target": 2367, + "target": 2369, "name": "OAuthAuthorizationDetails", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2377, + "target": 2379, "name": "OAuthRedirect", "package": "@supabase/auth-js" } @@ -73110,7 +74547,7 @@ } }, { - "id": 2381, + "id": 2383, "name": "AuthOAuthConsentResponse", "variant": "declaration", "kind": 2097152, @@ -73126,17 +74563,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2205, + "line": 2194, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2377, + "target": 2379, "name": "OAuthRedirect", "package": "@supabase/auth-js" } @@ -73146,7 +74583,7 @@ } }, { - "id": 2387, + "id": 2389, "name": "AuthOAuthGrantsResponse", "variant": "declaration", "kind": 2097152, @@ -73162,19 +74599,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2222, + "line": 2211, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "array", "elementType": { "type": "reference", - "target": 2382, + "target": 2384, "name": "OAuthGrant", "package": "@supabase/auth-js" } @@ -73185,7 +74622,7 @@ } }, { - "id": 2388, + "id": 2390, "name": "AuthOAuthRevokeGrantResponse", "variant": "declaration", "kind": 2097152, @@ -73201,18 +74638,18 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2227, + "line": 2216, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2389, + "id": 2391, "name": "__type", "variant": "declaration", "kind": 65536, @@ -73220,7 +74657,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2227, + "line": 2216, "character": 57 } ] @@ -73232,7 +74669,7 @@ } }, { - "id": 1669, + "id": 1671, "name": "AuthOtpResponse", "variant": "declaration", "kind": 2097152, @@ -73253,25 +74690,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 205, + "line": 194, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1670, + "id": 1672, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1673, + "id": 1675, "name": "messageId", "variant": "declaration", "kind": 1024, @@ -73281,7 +74718,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 208, + "line": 197, "character": 4 } ], @@ -73300,7 +74737,7 @@ } }, { - "id": 1672, + "id": 1674, "name": "session", "variant": "declaration", "kind": 1024, @@ -73308,7 +74745,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 207, + "line": 196, "character": 4 } ], @@ -73318,7 +74755,7 @@ } }, { - "id": 1671, + "id": 1673, "name": "user", "variant": "declaration", "kind": 1024, @@ -73326,7 +74763,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 206, + "line": 195, "character": 4 } ], @@ -73339,13 +74776,13 @@ "groups": [ { "title": "Properties", - "children": [1673, 1672, 1671] + "children": [1675, 1674, 1673] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 205, + "line": 194, "character": 59 } ] @@ -73357,7 +74794,7 @@ } }, { - "id": 2486, + "id": 2488, "name": "AuthPasskeyAdminDeleteParams", "variant": "declaration", "kind": 2097152, @@ -73365,21 +74802,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2410, + "line": 2399, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2487, + "id": 2489, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2489, + "id": 2491, "name": "passkeyId", "variant": "declaration", "kind": 1024, @@ -73387,7 +74824,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2412, + "line": 2401, "character": 4 } ], @@ -73397,7 +74834,7 @@ } }, { - "id": 2488, + "id": 2490, "name": "userId", "variant": "declaration", "kind": 1024, @@ -73405,7 +74842,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2411, + "line": 2400, "character": 4 } ], @@ -73418,13 +74855,13 @@ "groups": [ { "title": "Properties", - "children": [2489, 2488] + "children": [2491, 2490] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2410, + "line": 2399, "character": 43 } ] @@ -73432,7 +74869,7 @@ } }, { - "id": 2483, + "id": 2485, "name": "AuthPasskeyAdminListParams", "variant": "declaration", "kind": 2097152, @@ -73440,21 +74877,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2407, + "line": 2396, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2484, + "id": 2486, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2485, + "id": 2487, "name": "userId", "variant": "declaration", "kind": 1024, @@ -73462,7 +74899,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2408, + "line": 2397, "character": 4 } ], @@ -73475,13 +74912,13 @@ "groups": [ { "title": "Properties", - "children": [2485] + "children": [2487] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2407, + "line": 2396, "character": 41 } ] @@ -73489,7 +74926,7 @@ } }, { - "id": 2475, + "id": 2477, "name": "AuthPasskeyAuthenticationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -73497,17 +74934,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2399, + "line": 2388, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2427, + "target": 2429, "name": "PasskeyAuthenticationOptionsResponse", "package": "@supabase/auth-js" } @@ -73517,7 +74954,7 @@ } }, { - "id": 2476, + "id": 2478, "name": "AuthPasskeyAuthenticationVerifyResponse", "variant": "declaration", "kind": 2097152, @@ -73525,25 +74962,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2400, + "line": 2389, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2477, + "id": 2479, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2478, + "id": 2480, "name": "session", "variant": "declaration", "kind": 1024, @@ -73551,7 +74988,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2401, + "line": 2390, "character": 4 } ], @@ -73572,7 +75009,7 @@ } }, { - "id": 2479, + "id": 2481, "name": "user", "variant": "declaration", "kind": 1024, @@ -73580,7 +75017,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2402, + "line": 2391, "character": 4 } ], @@ -73604,13 +75041,13 @@ "groups": [ { "title": "Properties", - "children": [2478, 2479] + "children": [2480, 2481] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2400, + "line": 2389, "character": 68 } ] @@ -73630,7 +75067,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -73642,7 +75079,7 @@ } }, { - "id": 2482, + "id": 2484, "name": "AuthPasskeyDeleteResponse", "variant": "declaration", "kind": 2097152, @@ -73650,13 +75087,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2406, + "line": 2395, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "literal", @@ -73668,7 +75105,7 @@ } }, { - "id": 2480, + "id": 2482, "name": "AuthPasskeyListResponse", "variant": "declaration", "kind": 2097152, @@ -73676,19 +75113,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2404, + "line": 2393, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "array", "elementType": { "type": "reference", - "target": 2436, + "target": 2438, "name": "PasskeyListItem", "package": "@supabase/auth-js" } @@ -73699,7 +75136,7 @@ } }, { - "id": 2473, + "id": 2475, "name": "AuthPasskeyRegistrationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -73707,17 +75144,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2397, + "line": 2386, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2413, + "target": 2415, "name": "PasskeyRegistrationOptionsResponse", "package": "@supabase/auth-js" } @@ -73727,7 +75164,7 @@ } }, { - "id": 2474, + "id": 2476, "name": "AuthPasskeyRegistrationVerifyResponse", "variant": "declaration", "kind": 2097152, @@ -73735,17 +75172,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2398, + "line": 2387, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2422, + "target": 2424, "name": "PasskeyMetadata", "package": "@supabase/auth-js" }, @@ -73763,7 +75200,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -73775,7 +75212,7 @@ } }, { - "id": 2481, + "id": 2483, "name": "AuthPasskeyUpdateResponse", "variant": "declaration", "kind": 2097152, @@ -73783,17 +75220,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2405, + "line": 2394, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2436, + "target": 2438, "name": "PasskeyListItem", "package": "@supabase/auth-js" } @@ -73803,7 +75240,7 @@ } }, { - "id": 1660, + "id": 1662, "name": "AuthResponse", "variant": "declaration", "kind": 2097152, @@ -73811,25 +75248,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 191, + "line": 180, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1661, + "id": 1663, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1663, + "id": 1665, "name": "session", "variant": "declaration", "kind": 1024, @@ -73837,7 +75274,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 193, + "line": 182, "character": 4 } ], @@ -73858,7 +75295,7 @@ } }, { - "id": 1662, + "id": 1664, "name": "user", "variant": "declaration", "kind": 1024, @@ -73866,7 +75303,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 192, + "line": 181, "character": 4 } ], @@ -73890,13 +75327,13 @@ "groups": [ { "title": "Properties", - "children": [1663, 1662] + "children": [1665, 1664] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 191, + "line": 180, "character": 56 } ] @@ -73908,7 +75345,7 @@ } }, { - "id": 1664, + "id": 1666, "name": "AuthResponsePassword", "variant": "declaration", "kind": 2097152, @@ -73916,25 +75353,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 195, + "line": 184, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1665, + "id": 1667, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1667, + "id": 1669, "name": "session", "variant": "declaration", "kind": 1024, @@ -73942,7 +75379,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 197, + "line": 186, "character": 4 } ], @@ -73963,7 +75400,7 @@ } }, { - "id": 1666, + "id": 1668, "name": "user", "variant": "declaration", "kind": 1024, @@ -73971,7 +75408,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 196, + "line": 185, "character": 4 } ], @@ -73992,7 +75429,7 @@ } }, { - "id": 1668, + "id": 1670, "name": "weak_password", "variant": "declaration", "kind": 1024, @@ -74002,7 +75439,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 198, + "line": 187, "character": 4 } ], @@ -74011,7 +75448,7 @@ "types": [ { "type": "reference", - "target": 1634, + "target": 1636, "name": "WeakPassword", "package": "@supabase/auth-js" }, @@ -74026,13 +75463,13 @@ "groups": [ { "title": "Properties", - "children": [1667, 1666, 1668] + "children": [1669, 1668, 1670] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 195, + "line": 184, "character": 64 } ] @@ -74044,7 +75481,7 @@ } }, { - "id": 1674, + "id": 1676, "name": "AuthTokenResponse", "variant": "declaration", "kind": 2097152, @@ -74052,25 +75489,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 210, + "line": 199, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1675, + "id": 1677, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1677, + "id": 1679, "name": "session", "variant": "declaration", "kind": 1024, @@ -74078,7 +75515,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 212, + "line": 201, "character": 4 } ], @@ -74090,7 +75527,7 @@ } }, { - "id": 1676, + "id": 1678, "name": "user", "variant": "declaration", "kind": 1024, @@ -74098,7 +75535,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 211, + "line": 200, "character": 4 } ], @@ -74113,13 +75550,13 @@ "groups": [ { "title": "Properties", - "children": [1677, 1676] + "children": [1679, 1678] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 210, + "line": 199, "character": 61 } ] @@ -74131,7 +75568,7 @@ } }, { - "id": 1678, + "id": 1680, "name": "AuthTokenResponsePassword", "variant": "declaration", "kind": 2097152, @@ -74139,25 +75576,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 214, + "line": 203, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1679, + "id": 1681, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1681, + "id": 1683, "name": "session", "variant": "declaration", "kind": 1024, @@ -74165,7 +75602,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 216, + "line": 205, "character": 4 } ], @@ -74177,7 +75614,7 @@ } }, { - "id": 1680, + "id": 1682, "name": "user", "variant": "declaration", "kind": 1024, @@ -74185,7 +75622,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 215, + "line": 204, "character": 4 } ], @@ -74197,7 +75634,7 @@ } }, { - "id": 1682, + "id": 1684, "name": "weakPassword", "variant": "declaration", "kind": 1024, @@ -74207,13 +75644,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 217, + "line": 206, "character": 4 } ], "type": { "type": "reference", - "target": 1634, + "target": 1636, "name": "WeakPassword", "package": "@supabase/auth-js" } @@ -74222,13 +75659,13 @@ "groups": [ { "title": "Properties", - "children": [1681, 1680, 1682] + "children": [1683, 1682, 1684] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 214, + "line": 203, "character": 69 } ] @@ -74240,7 +75677,7 @@ } }, { - "id": 2107, + "id": 2109, "name": "CallRefreshTokenResult", "variant": "declaration", "kind": 2097152, @@ -74248,13 +75685,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1542, + "line": 1531, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", @@ -74268,7 +75705,7 @@ } }, { - "id": 2286, + "id": 2288, "name": "CreateCustomProviderParams", "variant": "declaration", "kind": 2097152, @@ -74284,21 +75721,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1949, + "line": 1938, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2287, + "id": 2289, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2293, + "id": 2295, "name": "acceptable_client_ids", "variant": "declaration", "kind": 1024, @@ -74316,7 +75753,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1961, + "line": 1950, "character": 4 } ], @@ -74329,7 +75766,7 @@ } }, { - "id": 2296, + "id": 2298, "name": "attribute_mapping", "variant": "declaration", "kind": 1024, @@ -74347,7 +75784,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1967, + "line": 1956, "character": 4 } ], @@ -74372,7 +75809,7 @@ } }, { - "id": 2297, + "id": 2299, "name": "authorization_params", "variant": "declaration", "kind": 1024, @@ -74390,7 +75827,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1969, + "line": 1958, "character": 4 } ], @@ -74415,7 +75852,7 @@ } }, { - "id": 2303, + "id": 2305, "name": "authorization_url", "variant": "declaration", "kind": 1024, @@ -74433,7 +75870,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1981, + "line": 1970, "character": 4 } ], @@ -74443,7 +75880,7 @@ } }, { - "id": 2291, + "id": 2293, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -74459,7 +75896,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1957, + "line": 1946, "character": 4 } ], @@ -74469,7 +75906,7 @@ } }, { - "id": 2292, + "id": 2294, "name": "client_secret", "variant": "declaration", "kind": 1024, @@ -74485,7 +75922,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1959, + "line": 1948, "character": 4 } ], @@ -74495,7 +75932,7 @@ } }, { - "id": 2301, + "id": 2303, "name": "discovery_url", "variant": "declaration", "kind": 1024, @@ -74513,7 +75950,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1977, + "line": 1966, "character": 4 } ], @@ -74523,7 +75960,7 @@ } }, { - "id": 2299, + "id": 2301, "name": "email_optional", "variant": "declaration", "kind": 1024, @@ -74541,7 +75978,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1973, + "line": 1962, "character": 4 } ], @@ -74551,7 +75988,7 @@ } }, { - "id": 2298, + "id": 2300, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -74569,7 +76006,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1971, + "line": 1960, "character": 4 } ], @@ -74579,7 +76016,7 @@ } }, { - "id": 2289, + "id": 2291, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -74603,7 +76040,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1953, + "line": 1942, "character": 4 } ], @@ -74613,7 +76050,7 @@ } }, { - "id": 2300, + "id": 2302, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -74631,7 +76068,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1975, + "line": 1964, "character": 4 } ], @@ -74641,7 +76078,7 @@ } }, { - "id": 2306, + "id": 2308, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -74659,7 +76096,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1987, + "line": 1976, "character": 4 } ], @@ -74669,7 +76106,7 @@ } }, { - "id": 2290, + "id": 2292, "name": "name", "variant": "declaration", "kind": 1024, @@ -74685,7 +76122,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1955, + "line": 1944, "character": 4 } ], @@ -74695,7 +76132,7 @@ } }, { - "id": 2295, + "id": 2297, "name": "pkce_enabled", "variant": "declaration", "kind": 1024, @@ -74713,7 +76150,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1965, + "line": 1954, "character": 4 } ], @@ -74723,7 +76160,7 @@ } }, { - "id": 2288, + "id": 2290, "name": "provider_type", "variant": "declaration", "kind": 1024, @@ -74739,19 +76176,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1951, + "line": 1940, "character": 4 } ], "type": { "type": "reference", - "target": 2249, + "target": 2251, "name": "CustomProviderType", "package": "@supabase/auth-js" } }, { - "id": 2294, + "id": 2296, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -74769,7 +76206,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1963, + "line": 1952, "character": 4 } ], @@ -74782,7 +76219,7 @@ } }, { - "id": 2302, + "id": 2304, "name": "skip_nonce_check", "variant": "declaration", "kind": 1024, @@ -74800,7 +76237,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1979, + "line": 1968, "character": 4 } ], @@ -74810,7 +76247,7 @@ } }, { - "id": 2304, + "id": 2306, "name": "token_url", "variant": "declaration", "kind": 1024, @@ -74828,7 +76265,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1983, + "line": 1972, "character": 4 } ], @@ -74838,7 +76275,7 @@ } }, { - "id": 2305, + "id": 2307, "name": "userinfo_url", "variant": "declaration", "kind": 1024, @@ -74856,7 +76293,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1985, + "line": 1974, "character": 4 } ], @@ -74870,15 +76307,15 @@ { "title": "Properties", "children": [ - 2293, 2296, 2297, 2303, 2291, 2292, 2301, 2299, 2298, 2289, 2300, 2306, 2290, - 2295, 2288, 2294, 2302, 2304, 2305 + 2295, 2298, 2299, 2305, 2293, 2294, 2303, 2301, 2300, 2291, 2302, 2308, 2292, + 2297, 2290, 2296, 2304, 2306, 2307 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1949, + "line": 1938, "character": 41 } ] @@ -74886,7 +76323,7 @@ } }, { - "id": 2196, + "id": 2198, "name": "CreateOAuthClientParams", "variant": "declaration", "kind": 2097152, @@ -74902,21 +76339,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1741, + "line": 1730, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2197, + "id": 2199, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2198, + "id": 2200, "name": "client_name", "variant": "declaration", "kind": 1024, @@ -74932,7 +76369,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1743, + "line": 1732, "character": 4 } ], @@ -74942,7 +76379,7 @@ } }, { - "id": 2199, + "id": 2201, "name": "client_uri", "variant": "declaration", "kind": 1024, @@ -74960,7 +76397,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1745, + "line": 1734, "character": 4 } ], @@ -74970,7 +76407,7 @@ } }, { - "id": 2201, + "id": 2203, "name": "grant_types", "variant": "declaration", "kind": 1024, @@ -74988,7 +76425,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1749, + "line": 1738, "character": 4 } ], @@ -74996,14 +76433,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2174, + "target": 2176, "name": "OAuthClientGrantType", "package": "@supabase/auth-js" } } }, { - "id": 2200, + "id": 2202, "name": "redirect_uris", "variant": "declaration", "kind": 1024, @@ -75019,7 +76456,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1747, + "line": 1736, "character": 4 } ], @@ -75032,7 +76469,7 @@ } }, { - "id": 2202, + "id": 2204, "name": "response_types", "variant": "declaration", "kind": 1024, @@ -75050,7 +76487,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1751, + "line": 1740, "character": 4 } ], @@ -75058,14 +76495,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2176, + "target": 2178, "name": "OAuthClientResponseType", "package": "@supabase/auth-js" } } }, { - "id": 2203, + "id": 2205, "name": "scope", "variant": "declaration", "kind": 1024, @@ -75083,7 +76520,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1753, + "line": 1742, "character": 4 } ], @@ -75093,7 +76530,7 @@ } }, { - "id": 2204, + "id": 2206, "name": "token_endpoint_auth_method", "variant": "declaration", "kind": 1024, @@ -75111,13 +76548,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1755, + "line": 1744, "character": 4 } ], "type": { "type": "reference", - "target": 2179, + "target": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "package": "@supabase/auth-js" } @@ -75126,13 +76563,13 @@ "groups": [ { "title": "Properties", - "children": [2198, 2199, 2201, 2200, 2202, 2203, 2204] + "children": [2200, 2201, 2203, 2202, 2204, 2205, 2206] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1741, + "line": 1730, "character": 38 } ] @@ -75140,7 +76577,7 @@ } }, { - "id": 2262, + "id": 2264, "name": "CustomOAuthProvider", "variant": "declaration", "kind": 2097152, @@ -75156,21 +76593,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1900, + "line": 1889, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2263, + "id": 2265, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2269, + "id": 2271, "name": "acceptable_client_ids", "variant": "declaration", "kind": 1024, @@ -75188,7 +76625,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1912, + "line": 1901, "character": 4 } ], @@ -75201,7 +76638,7 @@ } }, { - "id": 2272, + "id": 2274, "name": "attribute_mapping", "variant": "declaration", "kind": 1024, @@ -75219,7 +76656,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1918, + "line": 1907, "character": 4 } ], @@ -75244,7 +76681,7 @@ } }, { - "id": 2273, + "id": 2275, "name": "authorization_params", "variant": "declaration", "kind": 1024, @@ -75262,7 +76699,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1920, + "line": 1909, "character": 4 } ], @@ -75287,7 +76724,7 @@ } }, { - "id": 2279, + "id": 2281, "name": "authorization_url", "variant": "declaration", "kind": 1024, @@ -75305,7 +76742,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1932, + "line": 1921, "character": 4 } ], @@ -75315,7 +76752,7 @@ } }, { - "id": 2268, + "id": 2270, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -75331,7 +76768,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1910, + "line": 1899, "character": 4 } ], @@ -75341,7 +76778,7 @@ } }, { - "id": 2284, + "id": 2286, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -75357,7 +76794,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1942, + "line": 1931, "character": 4 } ], @@ -75367,7 +76804,7 @@ } }, { - "id": 2283, + "id": 2285, "name": "discovery_document", "variant": "declaration", "kind": 1024, @@ -75385,7 +76822,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1940, + "line": 1929, "character": 4 } ], @@ -75394,7 +76831,7 @@ "types": [ { "type": "reference", - "target": 2250, + "target": 2252, "name": "OIDCDiscoveryDocument", "package": "@supabase/auth-js" }, @@ -75406,7 +76843,7 @@ } }, { - "id": 2277, + "id": 2279, "name": "discovery_url", "variant": "declaration", "kind": 1024, @@ -75424,7 +76861,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1928, + "line": 1917, "character": 4 } ], @@ -75434,7 +76871,7 @@ } }, { - "id": 2275, + "id": 2277, "name": "email_optional", "variant": "declaration", "kind": 1024, @@ -75452,7 +76889,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1924, + "line": 1913, "character": 4 } ], @@ -75462,7 +76899,7 @@ } }, { - "id": 2274, + "id": 2276, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -75480,7 +76917,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1922, + "line": 1911, "character": 4 } ], @@ -75490,7 +76927,7 @@ } }, { - "id": 2264, + "id": 2266, "name": "id", "variant": "declaration", "kind": 1024, @@ -75506,7 +76943,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1902, + "line": 1891, "character": 4 } ], @@ -75516,7 +76953,7 @@ } }, { - "id": 2266, + "id": 2268, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -75540,7 +76977,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1906, + "line": 1895, "character": 4 } ], @@ -75550,7 +76987,7 @@ } }, { - "id": 2276, + "id": 2278, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -75568,7 +77005,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1926, + "line": 1915, "character": 4 } ], @@ -75578,7 +77015,7 @@ } }, { - "id": 2282, + "id": 2284, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -75596,7 +77033,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1938, + "line": 1927, "character": 4 } ], @@ -75606,7 +77043,7 @@ } }, { - "id": 2267, + "id": 2269, "name": "name", "variant": "declaration", "kind": 1024, @@ -75622,7 +77059,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1908, + "line": 1897, "character": 4 } ], @@ -75632,7 +77069,7 @@ } }, { - "id": 2271, + "id": 2273, "name": "pkce_enabled", "variant": "declaration", "kind": 1024, @@ -75650,7 +77087,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1916, + "line": 1905, "character": 4 } ], @@ -75660,7 +77097,7 @@ } }, { - "id": 2265, + "id": 2267, "name": "provider_type", "variant": "declaration", "kind": 1024, @@ -75676,19 +77113,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1904, + "line": 1893, "character": 4 } ], "type": { "type": "reference", - "target": 2249, + "target": 2251, "name": "CustomProviderType", "package": "@supabase/auth-js" } }, { - "id": 2270, + "id": 2272, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -75706,7 +77143,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1914, + "line": 1903, "character": 4 } ], @@ -75719,7 +77156,7 @@ } }, { - "id": 2278, + "id": 2280, "name": "skip_nonce_check", "variant": "declaration", "kind": 1024, @@ -75737,7 +77174,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1930, + "line": 1919, "character": 4 } ], @@ -75747,7 +77184,7 @@ } }, { - "id": 2280, + "id": 2282, "name": "token_url", "variant": "declaration", "kind": 1024, @@ -75765,7 +77202,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1934, + "line": 1923, "character": 4 } ], @@ -75775,7 +77212,7 @@ } }, { - "id": 2285, + "id": 2287, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -75791,7 +77228,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1944, + "line": 1933, "character": 4 } ], @@ -75801,7 +77238,7 @@ } }, { - "id": 2281, + "id": 2283, "name": "userinfo_url", "variant": "declaration", "kind": 1024, @@ -75819,7 +77256,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1936, + "line": 1925, "character": 4 } ], @@ -75833,15 +77270,15 @@ { "title": "Properties", "children": [ - 2269, 2272, 2273, 2279, 2268, 2284, 2283, 2277, 2275, 2274, 2264, 2266, 2276, - 2282, 2267, 2271, 2265, 2270, 2278, 2280, 2285, 2281 + 2271, 2274, 2275, 2281, 2270, 2286, 2285, 2279, 2277, 2276, 2266, 2268, 2278, + 2284, 2269, 2273, 2267, 2272, 2280, 2282, 2287, 2283 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1900, + "line": 1889, "character": 34 } ] @@ -75849,7 +77286,7 @@ } }, { - "id": 2330, + "id": 2332, "name": "CustomProviderListResponse", "variant": "declaration", "kind": 2097152, @@ -75865,7 +77302,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2044, + "line": 2033, "character": 12 } ], @@ -75875,14 +77312,14 @@ { "type": "reflection", "declaration": { - "id": 2331, + "id": 2333, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2332, + "id": 2334, "name": "data", "variant": "declaration", "kind": 1024, @@ -75890,21 +77327,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2045, + "line": 2034, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2333, + "id": 2335, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2334, + "id": 2336, "name": "providers", "variant": "declaration", "kind": 1024, @@ -75912,7 +77349,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2046, + "line": 2035, "character": 8 } ], @@ -75920,7 +77357,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2262, + "target": 2264, "name": "CustomOAuthProvider", "package": "@supabase/auth-js" } @@ -75930,13 +77367,13 @@ "groups": [ { "title": "Properties", - "children": [2334] + "children": [2336] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2045, + "line": 2034, "character": 10 } ] @@ -75944,7 +77381,7 @@ } }, { - "id": 2335, + "id": 2337, "name": "error", "variant": "declaration", "kind": 1024, @@ -75952,7 +77389,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2048, + "line": 2037, "character": 4 } ], @@ -75965,13 +77402,13 @@ "groups": [ { "title": "Properties", - "children": [2332, 2335] + "children": [2334, 2337] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2044, + "line": 2033, "character": 41 } ] @@ -75980,14 +77417,14 @@ { "type": "reflection", "declaration": { - "id": 2336, + "id": 2338, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2337, + "id": 2339, "name": "data", "variant": "declaration", "kind": 1024, @@ -75995,21 +77432,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2050, + "line": 2039, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2338, + "id": 2340, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2339, + "id": 2341, "name": "providers", "variant": "declaration", "kind": 1024, @@ -76017,7 +77454,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2051, + "line": 2040, "character": 8 } ], @@ -76029,13 +77466,13 @@ "groups": [ { "title": "Properties", - "children": [2339] + "children": [2341] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2050, + "line": 2039, "character": 10 } ] @@ -76043,7 +77480,7 @@ } }, { - "id": 2340, + "id": 2342, "name": "error", "variant": "declaration", "kind": 1024, @@ -76051,13 +77488,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2053, + "line": 2042, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -76066,13 +77503,13 @@ "groups": [ { "title": "Properties", - "children": [2337, 2340] + "children": [2339, 2342] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2049, + "line": 2038, "character": 4 } ] @@ -76082,7 +77519,7 @@ } }, { - "id": 2329, + "id": 2331, "name": "CustomProviderResponse", "variant": "declaration", "kind": 2097152, @@ -76098,17 +77535,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2040, + "line": 2029, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2262, + "target": 2264, "name": "CustomOAuthProvider", "package": "@supabase/auth-js" } @@ -76118,7 +77555,7 @@ } }, { - "id": 2249, + "id": 2251, "name": "CustomProviderType", "variant": "declaration", "kind": 2097152, @@ -76134,7 +77571,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1869, + "line": 1858, "character": 12 } ], @@ -76181,9 +77618,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 313, + "line": 320, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L313" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L320" } ], "typeParameters": [ @@ -76219,7 +77656,7 @@ } }, { - "id": 1906, + "id": 1908, "name": "EmailOtpType", "variant": "declaration", "kind": 2097152, @@ -76227,7 +77664,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 704, + "line": 693, "character": 12 } ], @@ -76268,7 +77705,7 @@ { "type": "reflection", "declaration": { - "id": 1907, + "id": 1909, "name": "__type", "variant": "declaration", "kind": 65536, @@ -76276,7 +77713,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 704, + "line": 693, "character": 113 } ] @@ -76288,7 +77725,7 @@ } }, { - "id": 1865, + "id": 1867, "name": "EthereumWallet", "variant": "declaration", "kind": 2097152, @@ -76296,7 +77733,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 635, + "line": 624, "character": 12 } ], @@ -76311,7 +77748,7 @@ } }, { - "id": 1866, + "id": 1868, "name": "EthereumWeb3Credentials", "variant": "declaration", "kind": 2097152, @@ -76319,7 +77756,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 636, + "line": 625, "character": 12 } ], @@ -76329,14 +77766,14 @@ { "type": "reflection", "declaration": { - "id": 1867, + "id": 1869, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1868, + "id": 1870, "name": "chain", "variant": "declaration", "kind": 1024, @@ -76344,7 +77781,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 637, + "line": 626, "character": 4 } ], @@ -76354,7 +77791,7 @@ } }, { - "id": 1871, + "id": 1873, "name": "options", "variant": "declaration", "kind": 1024, @@ -76364,21 +77801,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 642, + "line": 631, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1872, + "id": 1874, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1874, + "id": 1876, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -76396,7 +77833,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 646, + "line": 635, "character": 8 } ], @@ -76406,7 +77843,7 @@ } }, { - "id": 1875, + "id": 1877, "name": "signInWithEthereum", "variant": "declaration", "kind": 1024, @@ -76416,7 +77853,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 647, + "line": 636, "character": 8 } ], @@ -76474,7 +77911,7 @@ } }, { - "id": 1873, + "id": 1875, "name": "url", "variant": "declaration", "kind": 1024, @@ -76492,7 +77929,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 644, + "line": 633, "character": 8 } ], @@ -76505,13 +77942,13 @@ "groups": [ { "title": "Properties", - "children": [1874, 1875, 1873] + "children": [1876, 1877, 1875] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 642, + "line": 631, "character": 14 } ] @@ -76519,7 +77956,7 @@ } }, { - "id": 1870, + "id": 1872, "name": "statement", "variant": "declaration", "kind": 1024, @@ -76537,7 +77974,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 641, + "line": 630, "character": 4 } ], @@ -76547,7 +77984,7 @@ } }, { - "id": 1869, + "id": 1871, "name": "wallet", "variant": "declaration", "kind": 1024, @@ -76573,13 +78010,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 639, + "line": 628, "character": 4 } ], "type": { "type": "reference", - "target": 1865, + "target": 1867, "name": "EthereumWallet", "package": "@supabase/auth-js" } @@ -76588,13 +78025,13 @@ "groups": [ { "title": "Properties", - "children": [1868, 1871, 1870, 1869] + "children": [1870, 1873, 1872, 1871] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 636, + "line": 625, "character": 38 } ] @@ -76603,14 +78040,14 @@ { "type": "reflection", "declaration": { - "id": 1876, + "id": 1878, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1877, + "id": 1879, "name": "chain", "variant": "declaration", "kind": 1024, @@ -76618,7 +78055,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 650, + "line": 639, "character": 4 } ], @@ -76628,7 +78065,7 @@ } }, { - "id": 1878, + "id": 1880, "name": "message", "variant": "declaration", "kind": 1024, @@ -76668,7 +78105,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 652, + "line": 641, "character": 4 } ], @@ -76678,7 +78115,7 @@ } }, { - "id": 1880, + "id": 1882, "name": "options", "variant": "declaration", "kind": 1024, @@ -76688,21 +78125,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 655, + "line": 644, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1881, + "id": 1883, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1882, + "id": 1884, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -76720,7 +78157,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 657, + "line": 646, "character": 8 } ], @@ -76733,13 +78170,13 @@ "groups": [ { "title": "Properties", - "children": [1882] + "children": [1884] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 655, + "line": 644, "character": 14 } ] @@ -76747,7 +78184,7 @@ } }, { - "id": 1879, + "id": 1881, "name": "signature", "variant": "declaration", "kind": 1024, @@ -76763,7 +78200,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 654, + "line": 643, "character": 4 } ], @@ -76781,13 +78218,13 @@ "groups": [ { "title": "Properties", - "children": [1877, 1878, 1880, 1879] + "children": [1879, 1880, 1882, 1881] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 649, + "line": 638, "character": 4 } ] @@ -76797,7 +78234,7 @@ } }, { - "id": 1630, + "id": 1632, "name": "ExperimentalFeatureFlags", "variant": "declaration", "kind": 2097152, @@ -76805,21 +78242,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 137, + "line": 126, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1631, + "id": 1633, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1632, + "id": 1634, "name": "passkey", "variant": "declaration", "kind": 1024, @@ -76877,7 +78314,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 147, + "line": 136, "character": 4 } ], @@ -76890,13 +78327,13 @@ "groups": [ { "title": "Properties", - "children": [1632] + "children": [1634] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 137, + "line": 126, "character": 39 } ] @@ -76904,7 +78341,7 @@ } }, { - "id": 1721, + "id": 1723, "name": "Factor", "variant": "declaration", "kind": 2097152, @@ -76928,7 +78365,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#enroll", - "target": 2024 + "target": 2026 }, { "kind": "text", @@ -76942,7 +78379,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#listFactors", - "target": 2075 + "target": 2077 }, { "kind": "text", @@ -76968,32 +78405,32 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 329, + "line": 318, "character": 12 } ], "typeParameters": [ { - "id": 1730, + "id": 1732, "name": "Type", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1720, + "target": 1722, "name": "FactorType", "package": "@supabase/auth-js" }, "default": { "type": "reference", - "target": 1720, + "target": 1722, "name": "FactorType", "package": "@supabase/auth-js" } }, { - "id": 1731, + "id": 1733, "name": "Status", "variant": "typeParam", "kind": 131072, @@ -77032,14 +78469,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1722, + "id": 1724, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1727, + "id": 1729, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -77047,7 +78484,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 342, + "line": 331, "character": 4 } ], @@ -77057,7 +78494,7 @@ } }, { - "id": 1725, + "id": 1727, "name": "factor_type", "variant": "declaration", "kind": 1024, @@ -77089,20 +78526,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 337, + "line": 326, "character": 4 } ], "type": { "type": "reference", - "target": 1730, + "target": 1732, "name": "Type", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1724, + "id": 1726, "name": "friendly_name", "variant": "declaration", "kind": 1024, @@ -77120,7 +78557,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 333, + "line": 322, "character": 4 } ], @@ -77130,7 +78567,7 @@ } }, { - "id": 1723, + "id": 1725, "name": "id", "variant": "declaration", "kind": 1024, @@ -77146,7 +78583,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 331, + "line": 320, "character": 4 } ], @@ -77156,7 +78593,7 @@ } }, { - "id": 1729, + "id": 1731, "name": "last_challenged_at", "variant": "declaration", "kind": 1024, @@ -77166,7 +78603,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 344, + "line": 333, "character": 4 } ], @@ -77176,7 +78613,7 @@ } }, { - "id": 1726, + "id": 1728, "name": "status", "variant": "declaration", "kind": 1024, @@ -77220,20 +78657,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 341, + "line": 330, "character": 4 } ], "type": { "type": "reference", - "target": 1731, + "target": 1733, "name": "Status", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1728, + "id": 1730, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -77241,7 +78678,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 343, + "line": 332, "character": 4 } ], @@ -77254,13 +78691,13 @@ "groups": [ { "title": "Properties", - "children": [1727, 1725, 1724, 1723, 1729, 1726, 1728] + "children": [1729, 1727, 1726, 1725, 1731, 1728, 1730] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 329, + "line": 318, "character": 146 } ] @@ -77268,7 +78705,7 @@ } }, { - "id": 1720, + "id": 1722, "name": "FactorType", "variant": "declaration", "kind": 2097152, @@ -77300,7 +78737,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 316, + "line": 305, "character": 12 } ], @@ -77687,7 +79124,7 @@ } }, { - "id": 1953, + "id": 1955, "name": "GenerateEmailChangeLinkParams", "variant": "declaration", "kind": 2097152, @@ -77695,21 +79132,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 771, + "line": 760, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1954, + "id": 1956, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1956, + "id": 1958, "name": "email", "variant": "declaration", "kind": 1024, @@ -77725,7 +79162,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 774, + "line": 763, "character": 4 } ], @@ -77735,7 +79172,7 @@ } }, { - "id": 1957, + "id": 1959, "name": "newEmail", "variant": "declaration", "kind": 1024, @@ -77751,7 +79188,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 778, + "line": 767, "character": 4 } ], @@ -77761,7 +79198,7 @@ } }, { - "id": 1958, + "id": 1960, "name": "options", "variant": "declaration", "kind": 1024, @@ -77771,7 +79208,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 779, + "line": 768, "character": 4 } ], @@ -77784,7 +79221,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -77798,7 +79235,7 @@ } }, { - "id": 1955, + "id": 1957, "name": "type", "variant": "declaration", "kind": 1024, @@ -77806,7 +79243,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 772, + "line": 761, "character": 4 } ], @@ -77828,13 +79265,13 @@ "groups": [ { "title": "Properties", - "children": [1956, 1957, 1958, 1955] + "children": [1958, 1959, 1960, 1957] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 771, + "line": 760, "character": 44 } ] @@ -77842,7 +79279,7 @@ } }, { - "id": 1943, + "id": 1945, "name": "GenerateInviteOrMagiclinkParams", "variant": "declaration", "kind": 2097152, @@ -77850,21 +79287,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 759, + "line": 748, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1944, + "id": 1946, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1946, + "id": 1948, "name": "email", "variant": "declaration", "kind": 1024, @@ -77880,7 +79317,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 762, + "line": 751, "character": 4 } ], @@ -77890,7 +79327,7 @@ } }, { - "id": 1947, + "id": 1949, "name": "options", "variant": "declaration", "kind": 1024, @@ -77900,7 +79337,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 763, + "line": 752, "character": 4 } ], @@ -77913,7 +79350,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -77936,7 +79373,7 @@ } }, { - "id": 1945, + "id": 1947, "name": "type", "variant": "declaration", "kind": 1024, @@ -77944,7 +79381,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 760, + "line": 749, "character": 4 } ], @@ -77966,13 +79403,13 @@ "groups": [ { "title": "Properties", - "children": [1946, 1947, 1945] + "children": [1948, 1949, 1947] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 759, + "line": 748, "character": 46 } ] @@ -77980,7 +79417,7 @@ } }, { - "id": 1962, + "id": 1964, "name": "GenerateLinkParams", "variant": "declaration", "kind": 2097152, @@ -77988,7 +79425,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 791, + "line": 780, "character": 12 } ], @@ -77997,25 +79434,25 @@ "types": [ { "type": "reference", - "target": 1937, + "target": 1939, "name": "GenerateSignupLinkParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1943, + "target": 1945, "name": "GenerateInviteOrMagiclinkParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1948, + "target": 1950, "name": "GenerateRecoveryLinkParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1953, + "target": 1955, "name": "GenerateEmailChangeLinkParams", "package": "@supabase/auth-js" } @@ -78023,7 +79460,7 @@ } }, { - "id": 1967, + "id": 1969, "name": "GenerateLinkProperties", "variant": "declaration", "kind": 2097152, @@ -78039,21 +79476,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 797, + "line": 786, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1968, + "id": 1970, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1969, + "id": 1971, "name": "action_link", "variant": "declaration", "kind": 1024, @@ -78069,7 +79506,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 802, + "line": 791, "character": 4 } ], @@ -78079,7 +79516,7 @@ } }, { - "id": 1970, + "id": 1972, "name": "email_otp", "variant": "declaration", "kind": 1024, @@ -78095,7 +79532,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 807, + "line": 796, "character": 4 } ], @@ -78105,7 +79542,7 @@ } }, { - "id": 1971, + "id": 1973, "name": "hashed_token", "variant": "declaration", "kind": 1024, @@ -78121,7 +79558,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 811, + "line": 800, "character": 4 } ], @@ -78131,7 +79568,7 @@ } }, { - "id": 1972, + "id": 1974, "name": "redirect_to", "variant": "declaration", "kind": 1024, @@ -78147,7 +79584,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 813, + "line": 802, "character": 4 } ], @@ -78157,7 +79594,7 @@ } }, { - "id": 1973, + "id": 1975, "name": "verification_type", "variant": "declaration", "kind": 1024, @@ -78173,13 +79610,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 815, + "line": 804, "character": 4 } ], "type": { "type": "reference", - "target": 1974, + "target": 1976, "name": "GenerateLinkType", "package": "@supabase/auth-js" } @@ -78188,13 +79625,13 @@ "groups": [ { "title": "Properties", - "children": [1969, 1970, 1971, 1972, 1973] + "children": [1971, 1972, 1973, 1974, 1975] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 797, + "line": 786, "character": 37 } ] @@ -78202,7 +79639,7 @@ } }, { - "id": 1963, + "id": 1965, "name": "GenerateLinkResponse", "variant": "declaration", "kind": 2097152, @@ -78210,25 +79647,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 792, + "line": 781, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1964, + "id": 1966, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1965, + "id": 1967, "name": "properties", "variant": "declaration", "kind": 1024, @@ -78236,19 +79673,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 793, + "line": 782, "character": 4 } ], "type": { "type": "reference", - "target": 1967, + "target": 1969, "name": "GenerateLinkProperties", "package": "@supabase/auth-js" } }, { - "id": 1966, + "id": 1968, "name": "user", "variant": "declaration", "kind": 1024, @@ -78256,7 +79693,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 794, + "line": 783, "character": 4 } ], @@ -78271,13 +79708,13 @@ "groups": [ { "title": "Properties", - "children": [1965, 1966] + "children": [1967, 1968] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 792, + "line": 781, "character": 64 } ] @@ -78289,7 +79726,7 @@ } }, { - "id": 1974, + "id": 1976, "name": "GenerateLinkType", "variant": "declaration", "kind": 2097152, @@ -78297,7 +79734,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 817, + "line": 806, "character": 12 } ], @@ -78332,7 +79769,7 @@ } }, { - "id": 1948, + "id": 1950, "name": "GenerateRecoveryLinkParams", "variant": "declaration", "kind": 2097152, @@ -78340,21 +79777,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 765, + "line": 754, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1949, + "id": 1951, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1951, + "id": 1953, "name": "email", "variant": "declaration", "kind": 1024, @@ -78370,7 +79807,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 768, + "line": 757, "character": 4 } ], @@ -78380,7 +79817,7 @@ } }, { - "id": 1952, + "id": 1954, "name": "options", "variant": "declaration", "kind": 1024, @@ -78390,7 +79827,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 769, + "line": 758, "character": 4 } ], @@ -78403,7 +79840,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -78417,7 +79854,7 @@ } }, { - "id": 1950, + "id": 1952, "name": "type", "variant": "declaration", "kind": 1024, @@ -78425,7 +79862,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 766, + "line": 755, "character": 4 } ], @@ -78438,13 +79875,13 @@ "groups": [ { "title": "Properties", - "children": [1951, 1952, 1950] + "children": [1953, 1954, 1952] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 765, + "line": 754, "character": 41 } ] @@ -78452,7 +79889,7 @@ } }, { - "id": 1937, + "id": 1939, "name": "GenerateSignupLinkParams", "variant": "declaration", "kind": 2097152, @@ -78460,21 +79897,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 753, + "line": 742, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1938, + "id": 1940, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1940, + "id": 1942, "name": "email", "variant": "declaration", "kind": 1024, @@ -78482,7 +79919,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 755, + "line": 744, "character": 4 } ], @@ -78492,7 +79929,7 @@ } }, { - "id": 1942, + "id": 1944, "name": "options", "variant": "declaration", "kind": 1024, @@ -78502,7 +79939,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 757, + "line": 746, "character": 4 } ], @@ -78515,7 +79952,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -78538,7 +79975,7 @@ } }, { - "id": 1941, + "id": 1943, "name": "password", "variant": "declaration", "kind": 1024, @@ -78546,7 +79983,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 756, + "line": 745, "character": 4 } ], @@ -78556,7 +79993,7 @@ } }, { - "id": 1939, + "id": 1941, "name": "type", "variant": "declaration", "kind": 1024, @@ -78564,7 +80001,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 754, + "line": 743, "character": 4 } ], @@ -78577,13 +80014,13 @@ "groups": [ { "title": "Properties", - "children": [1940, 1942, 1941, 1939] + "children": [1942, 1944, 1943, 1941] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 753, + "line": 742, "character": 39 } ] @@ -78591,7 +80028,7 @@ } }, { - "id": 1597, + "id": 1599, "name": "GoTrueClientOptions", "variant": "declaration", "kind": 2097152, @@ -78606,14 +80043,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1598, + "id": 1600, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1613, + "id": 1615, "name": "autoRefreshToken", "variant": "declaration", "kind": 1024, @@ -78633,7 +80070,7 @@ } }, { - "id": 1619, + "id": 1621, "name": "debug", "variant": "declaration", "kind": 1024, @@ -78657,7 +80094,7 @@ { "type": "reflection", "declaration": { - "id": 1620, + "id": 1622, "name": "__type", "variant": "declaration", "kind": 65536, @@ -78671,14 +80108,14 @@ ], "signatures": [ { - "id": 1621, + "id": 1623, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1622, + "id": 1624, "name": "message", "variant": "param", "kind": 32768, @@ -78689,7 +80126,7 @@ } }, { - "id": 1623, + "id": 1625, "name": "args", "variant": "param", "kind": 32768, @@ -78717,7 +80154,7 @@ } }, { - "id": 1605, + "id": 1607, "name": "detectSessionInUrl", "variant": "declaration", "kind": 1024, @@ -78760,7 +80197,7 @@ { "type": "reflection", "declaration": { - "id": 1606, + "id": 1608, "name": "__type", "variant": "declaration", "kind": 65536, @@ -78774,14 +80211,14 @@ ], "signatures": [ { - "id": 1607, + "id": 1609, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1608, + "id": 1610, "name": "url", "variant": "param", "kind": 32768, @@ -78797,7 +80234,7 @@ } }, { - "id": 1609, + "id": 1611, "name": "params", "variant": "param", "kind": 32768, @@ -78805,7 +80242,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1610, + "id": 1612, "name": "__type", "variant": "declaration", "kind": 65536, @@ -78819,7 +80256,7 @@ ], "indexSignatures": [ { - "id": 1611, + "id": 1613, "name": "__index", "variant": "signature", "kind": 8192, @@ -78833,7 +80270,7 @@ ], "parameters": [ { - "id": 1612, + "id": 1614, "name": "parameter", "variant": "param", "kind": 32768, @@ -78866,7 +80303,7 @@ } }, { - "id": 1629, + "id": 1631, "name": "experimental", "variant": "declaration", "kind": 1024, @@ -78885,19 +80322,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 135, + "line": 124, "character": 4 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } }, { - "id": 1617, + "id": 1619, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -78922,7 +80359,7 @@ } }, { - "id": 1618, + "id": 1620, "name": "flowType", "variant": "declaration", "kind": 1024, @@ -78938,13 +80375,13 @@ ], "type": { "type": "reference", - "target": 1808, + "target": 1810, "name": "AuthFlowType", "package": "@supabase/auth-js" } }, { - "id": 1625, + "id": 1627, "name": "hasCustomAuthorizationHeader", "variant": "declaration", "kind": 1024, @@ -78963,7 +80400,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 88, + "line": 93, "character": 4 } ], @@ -78973,7 +80410,7 @@ } }, { - "id": 1600, + "id": 1602, "name": "headers", "variant": "declaration", "kind": 1024, @@ -78990,7 +80427,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1601, + "id": 1603, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79004,7 +80441,7 @@ ], "indexSignatures": [ { - "id": 1602, + "id": 1604, "name": "__index", "variant": "signature", "kind": 8192, @@ -79018,7 +80455,7 @@ ], "parameters": [ { - "id": 1603, + "id": 1605, "name": "key", "variant": "param", "kind": 32768, @@ -79039,7 +80476,7 @@ } }, { - "id": 1624, + "id": 1626, "name": "lock", "variant": "declaration", "kind": 1024, @@ -79050,43 +80487,53 @@ "summary": [ { "kind": "text", - "text": "Provide your own locking mechanism based on the environment. By default,\n" + "text": "Provide your own locking mechanism based on the environment. By default\nthe client coordinates refreshes itself (single-flight via\n" }, { "kind": "code", - "text": "`navigatorLock`" + "text": "`refreshingDeferred`" }, { "kind": "text", - "text": " (Web Locks API) is used in browser environments when\n" + "text": " + commit guard) and relies on the GoTrue server to\nresolve cross-tab refresh races. Passing a custom lock opts into a\nlegacy path that wraps every auth operation in your supplied lock — this\npath is preserved for backwards compatibility (typically React Native\n" }, { "kind": "code", - "text": "`persistSession`" + "text": "`processLock`" }, { "kind": "text", - "text": " is true. Falls back to an in-process lock for non-browser\nenvironments (e.g. React Native)." + "text": " or Node multi-process setups)." } ], - "modifierTags": ["@experimental"] + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Custom locks still work in v2.x for backwards compatibility.\nThe legacy lock path will be removed in v3 — drop this option from your\nconstructor options before upgrading." + } + ] + } + ] }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 83, + "line": 88, "character": 4 } ], "type": { "type": "reference", - "target": 1588, + "target": 1590, "name": "LockFunc", "package": "@supabase/auth-js" } }, { - "id": 1627, + "id": 1629, "name": "lockAcquireTimeout", "variant": "declaration", "kind": 1024, @@ -79097,23 +80544,23 @@ "summary": [ { "kind": "text", - "text": "The maximum time in milliseconds to wait for acquiring a cross-tab synchronization lock.\n\nWhen multiple browser tabs or windows use the auth client simultaneously, they coordinate\nvia the Web Locks API to prevent race conditions during session refresh and other operations.\nThis timeout controls how long to wait before attempting lock recovery.\n\n- **Positive value**: Wait up to this many milliseconds. If the lock is still held, attempt\n automatic recovery by stealing it (the previous holder is evicted, its callback continues\n to completion without exclusive access). This recovers from orphaned locks caused by\n React Strict Mode double-mount, storage API hangs, or aborted operations.\n- **Zero (0)**: Fail immediately if the lock is unavailable; throws " + "text": "The maximum time in milliseconds to wait for acquiring the custom lock\nsupplied via the " }, { "kind": "code", - "text": "`LockAcquireTimeoutError`" + "text": "`lock`" }, { "kind": "text", - "text": "\n (check " + "text": " option. Only consulted when a custom " }, { "kind": "code", - "text": "`error.isAcquireTimeout === true`" + "text": "`lock`" }, { "kind": "text", - "text": ").\n- **Negative value**: Wait indefinitely — can cause permanent deadlocks if the lock is orphaned." + "text": " is\npassed — the default lockless path doesn't use this timeout." } ], "blockTags": [ @@ -79127,11 +80574,19 @@ ] }, { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "Only used by the legacy lock path. Will be removed in v3\nalong with the " + }, { "kind": "code", - "text": "```ts\nconst client = createClient(url, key, {\n auth: {\n lockAcquireTimeout: 5000, // 5 seconds, then steal orphaned lock\n },\n})\n```" + "text": "`lock`" + }, + { + "kind": "text", + "text": " option." } ] } @@ -79140,7 +80595,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 120, + "line": 109, "character": 4 } ], @@ -79150,7 +80605,7 @@ } }, { - "id": 1614, + "id": 1616, "name": "persistSession", "variant": "declaration", "kind": 1024, @@ -79170,7 +80625,7 @@ } }, { - "id": 1628, + "id": 1630, "name": "skipAutoInitialize", "variant": "declaration", "kind": 1024, @@ -79199,7 +80654,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 128, + "line": 117, "character": 4 } ], @@ -79209,7 +80664,7 @@ } }, { - "id": 1615, + "id": 1617, "name": "storage", "variant": "declaration", "kind": 1024, @@ -79225,13 +80680,13 @@ ], "type": { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } }, { - "id": 1604, + "id": 1606, "name": "storageKey", "variant": "declaration", "kind": 1024, @@ -79251,7 +80706,7 @@ } }, { - "id": 1626, + "id": 1628, "name": "throwOnError", "variant": "declaration", "kind": 1024, @@ -79269,7 +80724,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 93, + "line": 98, "character": 4 } ], @@ -79279,7 +80734,7 @@ } }, { - "id": 1599, + "id": 1601, "name": "url", "variant": "declaration", "kind": 1024, @@ -79299,7 +80754,7 @@ } }, { - "id": 1616, + "id": 1618, "name": "userStorage", "variant": "declaration", "kind": 1024, @@ -79364,7 +80819,7 @@ ], "type": { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } @@ -79374,8 +80829,8 @@ { "title": "Properties", "children": [ - 1613, 1619, 1605, 1629, 1617, 1618, 1625, 1600, 1624, 1627, 1614, 1628, 1615, - 1604, 1626, 1599, 1616 + 1615, 1621, 1607, 1631, 1619, 1620, 1627, 1602, 1626, 1629, 1616, 1630, 1617, + 1606, 1628, 1601, 1618 ] } ], @@ -79390,7 +80845,7 @@ } }, { - "id": 2104, + "id": 2106, "name": "InitializeResult", "variant": "declaration", "kind": 2097152, @@ -79398,21 +80853,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1539, + "line": 1528, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2105, + "id": 2107, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2106, + "id": 2108, "name": "error", "variant": "declaration", "kind": 1024, @@ -79420,7 +80875,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1540, + "line": 1529, "character": 4 } ], @@ -79429,7 +80884,7 @@ "types": [ { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -79444,13 +80899,13 @@ "groups": [ { "title": "Properties", - "children": [2106] + "children": [2108] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1539, + "line": 1528, "character": 31 } ] @@ -79458,7 +80913,7 @@ } }, { - "id": 2128, + "id": 2130, "name": "JwtHeader", "variant": "declaration", "kind": 2097152, @@ -79466,21 +80921,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1628, + "line": 1617, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2129, + "id": 2131, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2130, + "id": 2132, "name": "alg", "variant": "declaration", "kind": 1024, @@ -79488,7 +80943,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1629, + "line": 1618, "character": 4 } ], @@ -79517,7 +80972,7 @@ { "type": "reflection", "declaration": { - "id": 2131, + "id": 2133, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79525,7 +80980,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1629, + "line": 1618, "character": 49 } ] @@ -79537,7 +80992,7 @@ } }, { - "id": 2132, + "id": 2134, "name": "kid", "variant": "declaration", "kind": 1024, @@ -79545,7 +81000,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1630, + "line": 1619, "character": 4 } ], @@ -79555,7 +81010,7 @@ } }, { - "id": 2133, + "id": 2135, "name": "typ", "variant": "declaration", "kind": 1024, @@ -79563,7 +81018,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1631, + "line": 1620, "character": 4 } ], @@ -79576,13 +81031,13 @@ "groups": [ { "title": "Properties", - "children": [2130, 2132, 2133] + "children": [2132, 2134, 2135] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1628, + "line": 1617, "character": 24 } ] @@ -79590,7 +81045,7 @@ } }, { - "id": 2326, + "id": 2328, "name": "ListCustomProvidersParams", "variant": "declaration", "kind": 2097152, @@ -79606,21 +81061,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2033, + "line": 2022, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2327, + "id": 2329, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2328, + "id": 2330, "name": "type", "variant": "declaration", "kind": 1024, @@ -79638,13 +81093,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2035, + "line": 2024, "character": 4 } ], "type": { "type": "reference", - "target": 2249, + "target": 2251, "name": "CustomProviderType", "package": "@supabase/auth-js" } @@ -79653,13 +81108,13 @@ "groups": [ { "title": "Properties", - "children": [2328] + "children": [2330] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2033, + "line": 2022, "character": 40 } ] @@ -79667,7 +81122,7 @@ } }, { - "id": 1588, + "id": 1590, "name": "LockFunc", "variant": "declaration", "kind": 2097152, @@ -79699,7 +81154,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1589, + "id": 1591, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79713,14 +81168,14 @@ ], "signatures": [ { - "id": 1590, + "id": 1592, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 1596, + "id": 1598, "name": "R", "variant": "typeParam", "kind": 131072, @@ -79729,7 +81184,7 @@ ], "parameters": [ { - "id": 1591, + "id": 1593, "name": "name", "variant": "param", "kind": 32768, @@ -79748,7 +81203,7 @@ } }, { - "id": 1592, + "id": 1594, "name": "acquireTimeout", "variant": "param", "kind": 32768, @@ -79775,7 +81230,7 @@ } }, { - "id": 1593, + "id": 1595, "name": "fn", "variant": "param", "kind": 32768, @@ -79791,7 +81246,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1594, + "id": 1596, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79805,7 +81260,7 @@ ], "signatures": [ { - "id": 1595, + "id": 1597, "name": "__type", "variant": "signature", "kind": 4096, @@ -79819,7 +81274,7 @@ "typeArguments": [ { "type": "reference", - "target": 1596, + "target": 1598, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -79843,7 +81298,7 @@ "typeArguments": [ { "type": "reference", - "target": 1596, + "target": 1598, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -79858,7 +81313,7 @@ } }, { - "id": 1993, + "id": 1995, "name": "MFAChallengeAndVerifyParams", "variant": "declaration", "kind": 2097152, @@ -79866,7 +81321,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 895, + "line": 884, "character": 12 } ], @@ -79881,7 +81336,7 @@ } }, { - "id": 1992, + "id": 1994, "name": "MFAChallengeParams", "variant": "declaration", "kind": 2097152, @@ -79889,7 +81344,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 891, + "line": 880, "character": 12 } ], @@ -79898,19 +81353,19 @@ "types": [ { "type": "reference", - "target": 1989, + "target": 1991, "name": "MFAChallengeTOTPParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1990, + "target": 1992, "name": "MFAChallengePhoneParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1991, + "target": 1993, "name": "MFAChallengeWebauthnParams", "package": "@supabase/auth-js" } @@ -79918,7 +81373,7 @@ } }, { - "id": 1990, + "id": 1992, "name": "MFAChallengePhoneParams", "variant": "declaration", "kind": 2097152, @@ -79926,7 +81381,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 875, + "line": 864, "character": 12 } ], @@ -79955,7 +81410,7 @@ } }, { - "id": 1989, + "id": 1991, "name": "MFAChallengeTOTPParams", "variant": "declaration", "kind": 2097152, @@ -79963,7 +81418,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 870, + "line": 859, "character": 12 } ], @@ -79978,7 +81433,7 @@ } }, { - "id": 1991, + "id": 1993, "name": "MFAChallengeWebauthnParams", "variant": "declaration", "kind": 2097152, @@ -80007,7 +81462,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 890, + "line": 879, "character": 12 } ], @@ -80036,7 +81491,7 @@ } }, { - "id": 1975, + "id": 1977, "name": "MFAEnrollParams", "variant": "declaration", "kind": 2097152, @@ -80044,7 +81499,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 818, + "line": 807, "character": 12 } ], @@ -80053,19 +81508,19 @@ "types": [ { "type": "reference", - "target": 2122, + "target": 2124, "name": "MFAEnrollTOTPParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2123, + "target": 2125, "name": "MFAEnrollPhoneParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2124, + "target": 2126, "name": "MFAEnrollWebauthnParams", "package": "@supabase/auth-js" } @@ -80073,7 +81528,7 @@ } }, { - "id": 2123, + "id": 2125, "name": "MFAEnrollPhoneParams", "variant": "declaration", "kind": 2097152, @@ -80081,7 +81536,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1583, + "line": 1572, "character": 12 } ], @@ -80116,7 +81571,7 @@ } }, { - "id": 2122, + "id": 2124, "name": "MFAEnrollTOTPParams", "variant": "declaration", "kind": 2097152, @@ -80124,7 +81579,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1578, + "line": 1567, "character": 12 } ], @@ -80159,7 +81614,7 @@ } }, { - "id": 2124, + "id": 2126, "name": "MFAEnrollWebauthnParams", "variant": "declaration", "kind": 2097152, @@ -80188,7 +81643,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1590, + "line": 1579, "character": 12 } ], @@ -80223,7 +81678,7 @@ } }, { - "id": 1988, + "id": 1990, "name": "MFATOTPChannel", "variant": "declaration", "kind": 2097152, @@ -80231,7 +81686,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 869, + "line": 858, "character": 12 } ], @@ -80257,7 +81712,7 @@ } }, { - "id": 1976, + "id": 1978, "name": "MFAUnenrollParams", "variant": "declaration", "kind": 2097152, @@ -80265,21 +81720,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 819, + "line": 808, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1977, + "id": 1979, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1978, + "id": 1980, "name": "factorId", "variant": "declaration", "kind": 1024, @@ -80295,7 +81750,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 821, + "line": 810, "character": 4 } ], @@ -80308,13 +81763,13 @@ "groups": [ { "title": "Properties", - "children": [1978] + "children": [1980] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 819, + "line": 808, "character": 32 } ] @@ -80322,7 +81777,7 @@ } }, { - "id": 1987, + "id": 1989, "name": "MFAVerifyParams", "variant": "declaration", "kind": 2097152, @@ -80330,7 +81785,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 863, + "line": 852, "character": 12 } ], @@ -80339,19 +81794,19 @@ "types": [ { "type": "reference", - "target": 1979, + "target": 1981, "name": "MFAVerifyTOTPParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1980, + "target": 1982, "name": "MFAVerifyPhoneParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1985, + "target": 1987, "name": "MFAVerifyWebauthnParams", "package": "@supabase/auth-js" } @@ -80359,7 +81814,7 @@ } }, { - "id": 1980, + "id": 1982, "name": "MFAVerifyPhoneParams", "variant": "declaration", "kind": 2097152, @@ -80367,7 +81822,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 835, + "line": 824, "character": 12 } ], @@ -80396,7 +81851,7 @@ } }, { - "id": 1979, + "id": 1981, "name": "MFAVerifyTOTPParams", "variant": "declaration", "kind": 2097152, @@ -80404,7 +81859,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 833, + "line": 822, "character": 12 } ], @@ -80433,7 +81888,7 @@ } }, { - "id": 1981, + "id": 1983, "name": "MFAVerifyWebauthnParamFields", "variant": "declaration", "kind": 2097152, @@ -80449,13 +81904,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 853, + "line": 842, "character": 12 } ], "typeParameters": [ { - "id": 1984, + "id": 1986, "name": "T", "variant": "typeParam", "kind": 131072, @@ -80499,14 +81954,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1982, + "id": 1984, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1983, + "id": 1985, "name": "webauthn", "variant": "declaration", "kind": 1024, @@ -80514,7 +81969,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 854, + "line": 843, "character": 4 } ], @@ -80539,7 +81994,7 @@ "typeArguments": [ { "type": "reference", - "target": 1984, + "target": 1986, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -80555,13 +82010,13 @@ "groups": [ { "title": "Properties", - "children": [1983] + "children": [1985] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 853, + "line": 842, "character": 98 } ] @@ -80569,7 +82024,7 @@ } }, { - "id": 1985, + "id": 1987, "name": "MFAVerifyWebauthnParams", "variant": "declaration", "kind": 2097152, @@ -80598,13 +82053,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 862, + "line": 851, "character": 12 } ], "typeParameters": [ { - "id": 1986, + "id": 1988, "name": "T", "variant": "typeParam", "kind": 131072, @@ -80659,11 +82114,11 @@ }, { "type": "reference", - "target": 1981, + "target": 1983, "typeArguments": [ { "type": "reference", - "target": 1986, + "target": 1988, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -80676,7 +82131,7 @@ } }, { - "id": 1904, + "id": 1906, "name": "MobileOtpType", "variant": "declaration", "kind": 2097152, @@ -80684,7 +82139,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 703, + "line": 692, "character": 12 } ], @@ -80709,7 +82164,7 @@ { "type": "reflection", "declaration": { - "id": 1905, + "id": 1907, "name": "__type", "variant": "declaration", "kind": 65536, @@ -80717,7 +82172,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 703, + "line": 692, "character": 63 } ] @@ -80729,7 +82184,7 @@ } }, { - "id": 2361, + "id": 2363, "name": "OAuthAuthorizationClient", "variant": "declaration", "kind": 2097152, @@ -80745,21 +82200,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2123, + "line": 2112, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2362, + "id": 2364, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2363, + "id": 2365, "name": "id", "variant": "declaration", "kind": 1024, @@ -80775,7 +82230,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2125, + "line": 2114, "character": 4 } ], @@ -80785,7 +82240,7 @@ } }, { - "id": 2366, + "id": 2368, "name": "logo_uri", "variant": "declaration", "kind": 1024, @@ -80801,7 +82256,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2131, + "line": 2120, "character": 4 } ], @@ -80811,7 +82266,7 @@ } }, { - "id": 2364, + "id": 2366, "name": "name", "variant": "declaration", "kind": 1024, @@ -80827,7 +82282,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2127, + "line": 2116, "character": 4 } ], @@ -80837,7 +82292,7 @@ } }, { - "id": 2365, + "id": 2367, "name": "uri", "variant": "declaration", "kind": 1024, @@ -80853,7 +82308,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2129, + "line": 2118, "character": 4 } ], @@ -80866,13 +82321,13 @@ "groups": [ { "title": "Properties", - "children": [2363, 2366, 2364, 2365] + "children": [2365, 2368, 2366, 2367] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2123, + "line": 2112, "character": 39 } ] @@ -80880,7 +82335,7 @@ } }, { - "id": 2367, + "id": 2369, "name": "OAuthAuthorizationDetails", "variant": "declaration", "kind": 2097152, @@ -80912,21 +82367,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2144, + "line": 2133, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2368, + "id": 2370, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2369, + "id": 2371, "name": "authorization_id", "variant": "declaration", "kind": 1024, @@ -80942,7 +82397,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2146, + "line": 2135, "character": 4 } ], @@ -80952,7 +82407,7 @@ } }, { - "id": 2371, + "id": 2373, "name": "client", "variant": "declaration", "kind": 1024, @@ -80968,19 +82423,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2150, + "line": 2139, "character": 4 } ], "type": { "type": "reference", - "target": 2361, + "target": 2363, "name": "OAuthAuthorizationClient", "package": "@supabase/auth-js" } }, { - "id": 2370, + "id": 2372, "name": "redirect_uri", "variant": "declaration", "kind": 1024, @@ -80996,7 +82451,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2148, + "line": 2137, "character": 4 } ], @@ -81006,7 +82461,7 @@ } }, { - "id": 2376, + "id": 2378, "name": "scope", "variant": "declaration", "kind": 1024, @@ -81022,7 +82477,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2159, + "line": 2148, "character": 4 } ], @@ -81032,7 +82487,7 @@ } }, { - "id": 2372, + "id": 2374, "name": "user", "variant": "declaration", "kind": 1024, @@ -81048,21 +82503,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2152, + "line": 2141, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2373, + "id": 2375, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2375, + "id": 2377, "name": "email", "variant": "declaration", "kind": 1024, @@ -81078,7 +82533,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2156, + "line": 2145, "character": 8 } ], @@ -81088,7 +82543,7 @@ } }, { - "id": 2374, + "id": 2376, "name": "id", "variant": "declaration", "kind": 1024, @@ -81104,7 +82559,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2154, + "line": 2143, "character": 8 } ], @@ -81117,13 +82572,13 @@ "groups": [ { "title": "Properties", - "children": [2375, 2374] + "children": [2377, 2376] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2152, + "line": 2141, "character": 10 } ] @@ -81134,13 +82589,13 @@ "groups": [ { "title": "Properties", - "children": [2369, 2371, 2370, 2376, 2372] + "children": [2371, 2373, 2372, 2378, 2374] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2144, + "line": 2133, "character": 40 } ] @@ -81148,7 +82603,7 @@ } }, { - "id": 2180, + "id": 2182, "name": "OAuthClient", "variant": "declaration", "kind": 2097152, @@ -81164,21 +82619,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1707, + "line": 1696, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2181, + "id": 2183, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2182, + "id": 2184, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -81194,7 +82649,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1709, + "line": 1698, "character": 4 } ], @@ -81204,7 +82659,7 @@ } }, { - "id": 2183, + "id": 2185, "name": "client_name", "variant": "declaration", "kind": 1024, @@ -81220,7 +82675,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1711, + "line": 1700, "character": 4 } ], @@ -81230,7 +82685,7 @@ } }, { - "id": 2184, + "id": 2186, "name": "client_secret", "variant": "declaration", "kind": 1024, @@ -81248,7 +82703,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1713, + "line": 1702, "character": 4 } ], @@ -81258,7 +82713,7 @@ } }, { - "id": 2185, + "id": 2187, "name": "client_type", "variant": "declaration", "kind": 1024, @@ -81274,19 +82729,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1715, + "line": 1704, "character": 4 } ], "type": { "type": "reference", - "target": 2177, + "target": 2179, "name": "OAuthClientType", "package": "@supabase/auth-js" } }, { - "id": 2188, + "id": 2190, "name": "client_uri", "variant": "declaration", "kind": 1024, @@ -81304,7 +82759,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1721, + "line": 1710, "character": 4 } ], @@ -81314,7 +82769,7 @@ } }, { - "id": 2194, + "id": 2196, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -81330,7 +82785,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1733, + "line": 1722, "character": 4 } ], @@ -81340,7 +82795,7 @@ } }, { - "id": 2191, + "id": 2193, "name": "grant_types", "variant": "declaration", "kind": 1024, @@ -81356,7 +82811,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1727, + "line": 1716, "character": 4 } ], @@ -81364,14 +82819,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2174, + "target": 2176, "name": "OAuthClientGrantType", "package": "@supabase/auth-js" } } }, { - "id": 2189, + "id": 2191, "name": "logo_uri", "variant": "declaration", "kind": 1024, @@ -81389,7 +82844,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1723, + "line": 1712, "character": 4 } ], @@ -81399,7 +82854,7 @@ } }, { - "id": 2190, + "id": 2192, "name": "redirect_uris", "variant": "declaration", "kind": 1024, @@ -81415,7 +82870,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1725, + "line": 1714, "character": 4 } ], @@ -81428,7 +82883,7 @@ } }, { - "id": 2187, + "id": 2189, "name": "registration_type", "variant": "declaration", "kind": 1024, @@ -81444,19 +82899,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1719, + "line": 1708, "character": 4 } ], "type": { "type": "reference", - "target": 2178, + "target": 2180, "name": "OAuthClientRegistrationType", "package": "@supabase/auth-js" } }, { - "id": 2192, + "id": 2194, "name": "response_types", "variant": "declaration", "kind": 1024, @@ -81472,7 +82927,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1729, + "line": 1718, "character": 4 } ], @@ -81480,14 +82935,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2176, + "target": 2178, "name": "OAuthClientResponseType", "package": "@supabase/auth-js" } } }, { - "id": 2193, + "id": 2195, "name": "scope", "variant": "declaration", "kind": 1024, @@ -81505,7 +82960,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1731, + "line": 1720, "character": 4 } ], @@ -81515,7 +82970,7 @@ } }, { - "id": 2186, + "id": 2188, "name": "token_endpoint_auth_method", "variant": "declaration", "kind": 1024, @@ -81531,19 +82986,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1717, + "line": 1706, "character": 4 } ], "type": { "type": "reference", - "target": 2179, + "target": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "package": "@supabase/auth-js" } }, { - "id": 2195, + "id": 2197, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -81559,7 +83014,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1735, + "line": 1724, "character": 4 } ], @@ -81573,15 +83028,15 @@ { "title": "Properties", "children": [ - 2182, 2183, 2184, 2185, 2188, 2194, 2191, 2189, 2190, 2187, 2192, 2193, 2186, - 2195 + 2184, 2185, 2186, 2187, 2190, 2196, 2193, 2191, 2192, 2189, 2194, 2195, 2188, + 2197 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1707, + "line": 1696, "character": 26 } ] @@ -81589,7 +83044,7 @@ } }, { - "id": 2174, + "id": 2176, "name": "OAuthClientGrantType", "variant": "declaration", "kind": 2097152, @@ -81605,7 +83060,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1682, + "line": 1671, "character": 12 } ], @@ -81630,7 +83085,7 @@ { "type": "reflection", "declaration": { - "id": 2175, + "id": 2177, "name": "__type", "variant": "declaration", "kind": 65536, @@ -81638,7 +83093,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1682, + "line": 1671, "character": 86 } ] @@ -81650,7 +83105,7 @@ } }, { - "id": 2214, + "id": 2216, "name": "OAuthClientListResponse", "variant": "declaration", "kind": 2097152, @@ -81666,7 +83121,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1785, + "line": 1774, "character": 12 } ], @@ -81676,14 +83131,14 @@ { "type": "reflection", "declaration": { - "id": 2215, + "id": 2217, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2216, + "id": 2218, "name": "data", "variant": "declaration", "kind": 1024, @@ -81691,7 +83146,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1786, + "line": 1775, "character": 4 } ], @@ -81701,14 +83156,14 @@ { "type": "reflection", "declaration": { - "id": 2217, + "id": 2219, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2219, + "id": 2221, "name": "aud", "variant": "declaration", "kind": 1024, @@ -81716,7 +83171,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1788, + "line": 1777, "character": 8 } ], @@ -81726,7 +83181,7 @@ } }, { - "id": 2218, + "id": 2220, "name": "clients", "variant": "declaration", "kind": 1024, @@ -81734,7 +83189,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1787, + "line": 1776, "character": 8 } ], @@ -81742,7 +83197,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2180, + "target": 2182, "name": "OAuthClient", "package": "@supabase/auth-js" } @@ -81752,13 +83207,13 @@ "groups": [ { "title": "Properties", - "children": [2219, 2218] + "children": [2221, 2220] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1786, + "line": 1775, "character": 10 } ] @@ -81766,7 +83221,7 @@ }, { "type": "reference", - "target": 2108, + "target": 2110, "name": "Pagination", "package": "@supabase/auth-js" } @@ -81774,7 +83229,7 @@ } }, { - "id": 2220, + "id": 2222, "name": "error", "variant": "declaration", "kind": 1024, @@ -81782,7 +83237,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1790, + "line": 1779, "character": 4 } ], @@ -81795,13 +83250,13 @@ "groups": [ { "title": "Properties", - "children": [2216, 2220] + "children": [2218, 2222] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1785, + "line": 1774, "character": 38 } ] @@ -81810,14 +83265,14 @@ { "type": "reflection", "declaration": { - "id": 2221, + "id": 2223, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2222, + "id": 2224, "name": "data", "variant": "declaration", "kind": 1024, @@ -81825,21 +83280,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1792, + "line": 1781, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2223, + "id": 2225, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2224, + "id": 2226, "name": "clients", "variant": "declaration", "kind": 1024, @@ -81847,7 +83302,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1793, + "line": 1782, "character": 8 } ], @@ -81859,13 +83314,13 @@ "groups": [ { "title": "Properties", - "children": [2224] + "children": [2226] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1792, + "line": 1781, "character": 10 } ] @@ -81873,7 +83328,7 @@ } }, { - "id": 2225, + "id": 2227, "name": "error", "variant": "declaration", "kind": 1024, @@ -81881,13 +83336,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1795, + "line": 1784, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -81896,13 +83351,13 @@ "groups": [ { "title": "Properties", - "children": [2222, 2225] + "children": [2224, 2227] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1791, + "line": 1780, "character": 4 } ] @@ -81912,7 +83367,7 @@ } }, { - "id": 2178, + "id": 2180, "name": "OAuthClientRegistrationType", "variant": "declaration", "kind": 2097152, @@ -81928,7 +83383,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1697, + "line": 1686, "character": 12 } ], @@ -81947,7 +83402,7 @@ } }, { - "id": 2213, + "id": 2215, "name": "OAuthClientResponse", "variant": "declaration", "kind": 2097152, @@ -81963,17 +83418,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1780, + "line": 1769, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2180, + "target": 2182, "name": "OAuthClient", "package": "@supabase/auth-js" } @@ -81983,7 +83438,7 @@ } }, { - "id": 2176, + "id": 2178, "name": "OAuthClientResponseType", "variant": "declaration", "kind": 2097152, @@ -81999,7 +83454,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1687, + "line": 1676, "character": 12 } ], @@ -82009,7 +83464,7 @@ } }, { - "id": 2179, + "id": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "variant": "declaration", "kind": 2097152, @@ -82025,7 +83480,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1702, + "line": 1691, "character": 12 } ], @@ -82048,7 +83503,7 @@ } }, { - "id": 2177, + "id": 2179, "name": "OAuthClientType", "variant": "declaration", "kind": 2097152, @@ -82064,7 +83519,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1692, + "line": 1681, "character": 12 } ], @@ -82083,7 +83538,7 @@ } }, { - "id": 2382, + "id": 2384, "name": "OAuthGrant", "variant": "declaration", "kind": 2097152, @@ -82099,21 +83554,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2210, + "line": 2199, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2383, + "id": 2385, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2384, + "id": 2386, "name": "client", "variant": "declaration", "kind": 1024, @@ -82129,19 +83584,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2212, + "line": 2201, "character": 4 } ], "type": { "type": "reference", - "target": 2361, + "target": 2363, "name": "OAuthAuthorizationClient", "package": "@supabase/auth-js" } }, { - "id": 2386, + "id": 2388, "name": "granted_at", "variant": "declaration", "kind": 1024, @@ -82157,7 +83612,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2216, + "line": 2205, "character": 4 } ], @@ -82167,7 +83622,7 @@ } }, { - "id": 2385, + "id": 2387, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -82183,7 +83638,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2214, + "line": 2203, "character": 4 } ], @@ -82199,13 +83654,13 @@ "groups": [ { "title": "Properties", - "children": [2384, 2386, 2385] + "children": [2386, 2388, 2387] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2210, + "line": 2199, "character": 25 } ] @@ -82213,7 +83668,7 @@ } }, { - "id": 2377, + "id": 2379, "name": "OAuthRedirect", "variant": "declaration", "kind": 2097152, @@ -82237,21 +83692,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2174, + "line": 2163, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2378, + "id": 2380, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2379, + "id": 2381, "name": "redirect_url", "variant": "declaration", "kind": 1024, @@ -82267,7 +83722,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2176, + "line": 2165, "character": 4 } ], @@ -82280,13 +83735,13 @@ "groups": [ { "title": "Properties", - "children": [2379] + "children": [2381] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2174, + "line": 2163, "character": 28 } ] @@ -82294,7 +83749,7 @@ } }, { - "id": 1683, + "id": 1685, "name": "OAuthResponse", "variant": "declaration", "kind": 2097152, @@ -82302,7 +83757,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 219, + "line": 208, "character": 12 } ], @@ -82312,14 +83767,14 @@ { "type": "reflection", "declaration": { - "id": 1684, + "id": 1686, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1685, + "id": 1687, "name": "data", "variant": "declaration", "kind": 1024, @@ -82327,21 +83782,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 220, + "line": 209, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1686, + "id": 1688, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1687, + "id": 1689, "name": "provider", "variant": "declaration", "kind": 1024, @@ -82349,19 +83804,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 221, + "line": 210, "character": 8 } ], "type": { "type": "reference", - "target": 1585, + "target": 1587, "name": "Provider", "package": "@supabase/auth-js" } }, { - "id": 1688, + "id": 1690, "name": "url", "variant": "declaration", "kind": 1024, @@ -82369,7 +83824,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 222, + "line": 211, "character": 8 } ], @@ -82382,13 +83837,13 @@ "groups": [ { "title": "Properties", - "children": [1687, 1688] + "children": [1689, 1690] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 220, + "line": 209, "character": 10 } ] @@ -82396,7 +83851,7 @@ } }, { - "id": 1689, + "id": 1691, "name": "error", "variant": "declaration", "kind": 1024, @@ -82404,7 +83859,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 224, + "line": 213, "character": 4 } ], @@ -82417,13 +83872,13 @@ "groups": [ { "title": "Properties", - "children": [1685, 1689] + "children": [1687, 1691] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 219, + "line": 208, "character": 28 } ] @@ -82432,14 +83887,14 @@ { "type": "reflection", "declaration": { - "id": 1690, + "id": 1692, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1691, + "id": 1693, "name": "data", "variant": "declaration", "kind": 1024, @@ -82447,21 +83902,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 226, + "line": 215, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1692, + "id": 1694, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1693, + "id": 1695, "name": "provider", "variant": "declaration", "kind": 1024, @@ -82469,19 +83924,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 227, + "line": 216, "character": 8 } ], "type": { "type": "reference", - "target": 1585, + "target": 1587, "name": "Provider", "package": "@supabase/auth-js" } }, { - "id": 1694, + "id": 1696, "name": "url", "variant": "declaration", "kind": 1024, @@ -82489,7 +83944,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 228, + "line": 217, "character": 8 } ], @@ -82502,13 +83957,13 @@ "groups": [ { "title": "Properties", - "children": [1693, 1694] + "children": [1695, 1696] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 226, + "line": 215, "character": 10 } ] @@ -82516,7 +83971,7 @@ } }, { - "id": 1695, + "id": 1697, "name": "error", "variant": "declaration", "kind": 1024, @@ -82524,13 +83979,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 230, + "line": 219, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -82539,13 +83994,13 @@ "groups": [ { "title": "Properties", - "children": [1691, 1695] + "children": [1693, 1697] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 225, + "line": 214, "character": 4 } ] @@ -82555,7 +84010,7 @@ } }, { - "id": 2250, + "id": 2252, "name": "OIDCDiscoveryDocument", "variant": "declaration", "kind": 2097152, @@ -82571,21 +84026,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1875, + "line": 1864, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2251, + "id": 2253, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2253, + "id": 2255, "name": "authorization_endpoint", "variant": "declaration", "kind": 1024, @@ -82601,7 +84056,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1879, + "line": 1868, "character": 4 } ], @@ -82611,7 +84066,7 @@ } }, { - "id": 2252, + "id": 2254, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -82627,7 +84082,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1877, + "line": 1866, "character": 4 } ], @@ -82637,7 +84092,7 @@ } }, { - "id": 2255, + "id": 2257, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -82653,7 +84108,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1883, + "line": 1872, "character": 4 } ], @@ -82663,7 +84118,7 @@ } }, { - "id": 2257, + "id": 2259, "name": "revocation_endpoint", "variant": "declaration", "kind": 1024, @@ -82681,7 +84136,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1887, + "line": 1876, "character": 4 } ], @@ -82691,7 +84146,7 @@ } }, { - "id": 2261, + "id": 2263, "name": "supported_id_token_signing_algs", "variant": "declaration", "kind": 1024, @@ -82709,7 +84164,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1895, + "line": 1884, "character": 4 } ], @@ -82722,7 +84177,7 @@ } }, { - "id": 2259, + "id": 2261, "name": "supported_response_types", "variant": "declaration", "kind": 1024, @@ -82740,7 +84195,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1891, + "line": 1880, "character": 4 } ], @@ -82753,7 +84208,7 @@ } }, { - "id": 2258, + "id": 2260, "name": "supported_scopes", "variant": "declaration", "kind": 1024, @@ -82771,7 +84226,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1889, + "line": 1878, "character": 4 } ], @@ -82784,7 +84239,7 @@ } }, { - "id": 2260, + "id": 2262, "name": "supported_subject_types", "variant": "declaration", "kind": 1024, @@ -82802,7 +84257,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1893, + "line": 1882, "character": 4 } ], @@ -82815,7 +84270,7 @@ } }, { - "id": 2254, + "id": 2256, "name": "token_endpoint", "variant": "declaration", "kind": 1024, @@ -82831,7 +84286,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1881, + "line": 1870, "character": 4 } ], @@ -82841,7 +84296,7 @@ } }, { - "id": 2256, + "id": 2258, "name": "userinfo_endpoint", "variant": "declaration", "kind": 1024, @@ -82859,7 +84314,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1885, + "line": 1874, "character": 4 } ], @@ -82872,13 +84327,13 @@ "groups": [ { "title": "Properties", - "children": [2253, 2252, 2255, 2257, 2261, 2259, 2258, 2260, 2254, 2256] + "children": [2255, 2254, 2257, 2259, 2263, 2261, 2260, 2262, 2256, 2258] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1875, + "line": 1864, "character": 36 } ] @@ -82886,7 +84341,7 @@ } }, { - "id": 2115, + "id": 2117, "name": "PageParams", "variant": "declaration", "kind": 2097152, @@ -82894,21 +84349,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1549, + "line": 1538, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2116, + "id": 2118, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2117, + "id": 2119, "name": "page", "variant": "declaration", "kind": 1024, @@ -82926,7 +84381,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1551, + "line": 1540, "character": 4 } ], @@ -82936,7 +84391,7 @@ } }, { - "id": 2118, + "id": 2120, "name": "perPage", "variant": "declaration", "kind": 1024, @@ -82954,7 +84409,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1553, + "line": 1542, "character": 4 } ], @@ -82967,13 +84422,13 @@ "groups": [ { "title": "Properties", - "children": [2117, 2118] + "children": [2119, 2120] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1549, + "line": 1538, "character": 25 } ] @@ -82981,7 +84436,7 @@ } }, { - "id": 2108, + "id": 2110, "name": "Pagination", "variant": "declaration", "kind": 2097152, @@ -82989,21 +84444,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1543, + "line": 1532, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2109, + "id": 2111, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2111, + "id": 2113, "name": "lastPage", "variant": "declaration", "kind": 1024, @@ -83011,7 +84466,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1546, + "line": 1535, "character": 4 } ], @@ -83021,7 +84476,7 @@ } }, { - "id": 2110, + "id": 2112, "name": "nextPage", "variant": "declaration", "kind": 1024, @@ -83029,7 +84484,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1545, + "line": 1534, "character": 4 } ], @@ -83048,7 +84503,7 @@ } }, { - "id": 2112, + "id": 2114, "name": "total", "variant": "declaration", "kind": 1024, @@ -83056,7 +84511,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1547, + "line": 1536, "character": 4 } ], @@ -83069,19 +84524,19 @@ "groups": [ { "title": "Properties", - "children": [2111, 2110, 2112] + "children": [2113, 2112, 2114] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1543, + "line": 1532, "character": 25 } ], "indexSignatures": [ { - "id": 2113, + "id": 2115, "name": "__index", "variant": "signature", "kind": 8192, @@ -83089,13 +84544,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1544, + "line": 1533, "character": 4 } ], "parameters": [ { - "id": 2114, + "id": 2116, "name": "key", "variant": "param", "kind": 32768, @@ -83116,7 +84571,7 @@ } }, { - "id": 2427, + "id": 2429, "name": "PasskeyAuthenticationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -83132,21 +84587,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2342, + "line": 2331, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2428, + "id": 2430, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2429, + "id": 2431, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83154,7 +84609,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2343, + "line": 2332, "character": 4 } ], @@ -83164,7 +84619,7 @@ } }, { - "id": 2431, + "id": 2433, "name": "expires_at", "variant": "declaration", "kind": 1024, @@ -83172,7 +84627,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2345, + "line": 2334, "character": 4 } ], @@ -83182,7 +84637,7 @@ } }, { - "id": 2430, + "id": 2432, "name": "options", "variant": "declaration", "kind": 1024, @@ -83190,7 +84645,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2344, + "line": 2333, "character": 4 } ], @@ -83208,13 +84663,13 @@ "groups": [ { "title": "Properties", - "children": [2429, 2431, 2430] + "children": [2431, 2433, 2432] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2342, + "line": 2331, "character": 51 } ] @@ -83222,7 +84677,7 @@ } }, { - "id": 2432, + "id": 2434, "name": "PasskeyAuthenticationVerifyParams", "variant": "declaration", "kind": 2097152, @@ -83238,21 +84693,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2348, + "line": 2337, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2433, + "id": 2435, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2434, + "id": 2436, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83260,7 +84715,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2349, + "line": 2338, "character": 4 } ], @@ -83270,7 +84725,7 @@ } }, { - "id": 2435, + "id": 2437, "name": "credential", "variant": "declaration", "kind": 1024, @@ -83278,7 +84733,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2350, + "line": 2339, "character": 4 } ], @@ -83296,13 +84751,13 @@ "groups": [ { "title": "Properties", - "children": [2434, 2435] + "children": [2436, 2437] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2348, + "line": 2337, "character": 48 } ] @@ -83310,7 +84765,7 @@ } }, { - "id": 2470, + "id": 2472, "name": "PasskeyDeleteParams", "variant": "declaration", "kind": 2097152, @@ -83318,21 +84773,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2393, + "line": 2382, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2471, + "id": 2473, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2472, + "id": 2474, "name": "passkeyId", "variant": "declaration", "kind": 1024, @@ -83348,7 +84803,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2395, + "line": 2384, "character": 4 } ], @@ -83361,13 +84816,13 @@ "groups": [ { "title": "Properties", - "children": [2472] + "children": [2474] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2393, + "line": 2382, "character": 34 } ] @@ -83375,7 +84830,7 @@ } }, { - "id": 2436, + "id": 2438, "name": "PasskeyListItem", "variant": "declaration", "kind": 2097152, @@ -83391,21 +84846,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2353, + "line": 2342, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2437, + "id": 2439, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2440, + "id": 2442, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -83413,7 +84868,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2356, + "line": 2345, "character": 4 } ], @@ -83423,7 +84878,7 @@ } }, { - "id": 2439, + "id": 2441, "name": "friendly_name", "variant": "declaration", "kind": 1024, @@ -83433,7 +84888,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2355, + "line": 2344, "character": 4 } ], @@ -83443,7 +84898,7 @@ } }, { - "id": 2438, + "id": 2440, "name": "id", "variant": "declaration", "kind": 1024, @@ -83451,7 +84906,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2354, + "line": 2343, "character": 4 } ], @@ -83461,7 +84916,7 @@ } }, { - "id": 2441, + "id": 2443, "name": "last_used_at", "variant": "declaration", "kind": 1024, @@ -83471,7 +84926,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2357, + "line": 2346, "character": 4 } ], @@ -83484,13 +84939,13 @@ "groups": [ { "title": "Properties", - "children": [2440, 2439, 2438, 2441] + "children": [2442, 2441, 2440, 2443] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2353, + "line": 2342, "character": 30 } ] @@ -83498,7 +84953,7 @@ } }, { - "id": 2422, + "id": 2424, "name": "PasskeyMetadata", "variant": "declaration", "kind": 2097152, @@ -83514,21 +84969,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2336, + "line": 2325, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2423, + "id": 2425, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2426, + "id": 2428, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -83536,7 +84991,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2339, + "line": 2328, "character": 4 } ], @@ -83546,7 +85001,7 @@ } }, { - "id": 2425, + "id": 2427, "name": "friendly_name", "variant": "declaration", "kind": 1024, @@ -83556,7 +85011,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2338, + "line": 2327, "character": 4 } ], @@ -83566,7 +85021,7 @@ } }, { - "id": 2424, + "id": 2426, "name": "id", "variant": "declaration", "kind": 1024, @@ -83574,7 +85029,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2337, + "line": 2326, "character": 4 } ], @@ -83587,13 +85042,13 @@ "groups": [ { "title": "Properties", - "children": [2426, 2425, 2424] + "children": [2428, 2427, 2426] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2336, + "line": 2325, "character": 30 } ] @@ -83601,7 +85056,7 @@ } }, { - "id": 2413, + "id": 2415, "name": "PasskeyRegistrationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -83617,21 +85072,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2325, + "line": 2314, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2414, + "id": 2416, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2415, + "id": 2417, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83639,7 +85094,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2326, + "line": 2315, "character": 4 } ], @@ -83649,7 +85104,7 @@ } }, { - "id": 2417, + "id": 2419, "name": "expires_at", "variant": "declaration", "kind": 1024, @@ -83657,7 +85112,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2328, + "line": 2317, "character": 4 } ], @@ -83667,7 +85122,7 @@ } }, { - "id": 2416, + "id": 2418, "name": "options", "variant": "declaration", "kind": 1024, @@ -83675,7 +85130,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2327, + "line": 2316, "character": 4 } ], @@ -83693,13 +85148,13 @@ "groups": [ { "title": "Properties", - "children": [2415, 2417, 2416] + "children": [2417, 2419, 2418] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2325, + "line": 2314, "character": 49 } ] @@ -83707,7 +85162,7 @@ } }, { - "id": 2418, + "id": 2420, "name": "PasskeyRegistrationVerifyParams", "variant": "declaration", "kind": 2097152, @@ -83723,21 +85178,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2331, + "line": 2320, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2419, + "id": 2421, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2420, + "id": 2422, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83745,7 +85200,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2332, + "line": 2321, "character": 4 } ], @@ -83755,7 +85210,7 @@ } }, { - "id": 2421, + "id": 2423, "name": "credential", "variant": "declaration", "kind": 1024, @@ -83763,7 +85218,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2333, + "line": 2322, "character": 4 } ], @@ -83781,13 +85236,13 @@ "groups": [ { "title": "Properties", - "children": [2420, 2421] + "children": [2422, 2423] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2331, + "line": 2320, "character": 46 } ] @@ -83795,7 +85250,7 @@ } }, { - "id": 2466, + "id": 2468, "name": "PasskeyUpdateParams", "variant": "declaration", "kind": 2097152, @@ -83803,21 +85258,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2387, + "line": 2376, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2467, + "id": 2469, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2469, + "id": 2471, "name": "friendlyName", "variant": "declaration", "kind": 1024, @@ -83833,7 +85288,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2391, + "line": 2380, "character": 4 } ], @@ -83843,7 +85298,7 @@ } }, { - "id": 2468, + "id": 2470, "name": "passkeyId", "variant": "declaration", "kind": 1024, @@ -83859,7 +85314,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2389, + "line": 2378, "character": 4 } ], @@ -83872,13 +85327,13 @@ "groups": [ { "title": "Properties", - "children": [2469, 2468] + "children": [2471, 2470] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2387, + "line": 2376, "character": 34 } ] @@ -83894,7 +85349,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 622, + "line": 641, "character": 5 } ], @@ -83941,7 +85396,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 623, + "line": 642, "character": 5 } ], @@ -83982,7 +85437,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 621, + "line": 640, "character": 5 } ], @@ -84029,7 +85484,7 @@ } }, { - "id": 1638, + "id": 1640, "name": "Prettify", "variant": "declaration", "kind": 2097152, @@ -84045,13 +85500,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 12 } ], "typeParameters": [ { - "id": 1639, + "id": 1641, "name": "T", "variant": "typeParam", "kind": 131072, @@ -84062,7 +85517,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84078,7 +85533,7 @@ }, "trueType": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84091,7 +85546,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84111,7 +85566,7 @@ }, "objectType": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84121,7 +85576,7 @@ } }, { - "id": 1585, + "id": 1587, "name": "Provider", "variant": "declaration", "kind": 2097152, @@ -84313,9 +85768,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 301, + "line": 308, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L308" } ], "typeParameters": [ @@ -84361,9 +85816,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 301, + "line": 308, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L308" } ], "type": { @@ -84381,9 +85836,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 301, + "line": 308, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L308" } ] } @@ -84432,9 +85887,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 302, + "line": 309, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L309" } ], "type": { @@ -84461,9 +85916,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 300, + "line": 307, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L307" } ], "typeParameters": [ @@ -84516,7 +85971,7 @@ } }, { - "id": 3114, + "id": 3136, "name": "RealtimeChannelOptions", "variant": "declaration", "kind": 2097152, @@ -84531,14 +85986,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3115, + "id": 3137, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3116, + "id": 3138, "name": "config", "variant": "declaration", "kind": 1024, @@ -84553,14 +86008,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3117, + "id": 3139, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3118, + "id": 3140, "name": "broadcast", "variant": "declaration", "kind": 1024, @@ -84585,14 +86040,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3119, + "id": 3141, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3121, + "id": 3143, "name": "ack", "variant": "declaration", "kind": 1024, @@ -84612,7 +86067,7 @@ } }, { - "id": 3122, + "id": 3144, "name": "replay", "variant": "declaration", "kind": 1024, @@ -84637,7 +86092,7 @@ } }, { - "id": 3120, + "id": 3142, "name": "self", "variant": "declaration", "kind": 1024, @@ -84660,7 +86115,7 @@ "groups": [ { "title": "Properties", - "children": [3121, 3122, 3120] + "children": [3143, 3144, 3142] } ], "sources": [ @@ -84674,7 +86129,7 @@ } }, { - "id": 3123, + "id": 3145, "name": "presence", "variant": "declaration", "kind": 1024, @@ -84699,14 +86154,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3124, + "id": 3146, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3126, + "id": 3148, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -84726,7 +86181,7 @@ } }, { - "id": 3125, + "id": 3147, "name": "key", "variant": "declaration", "kind": 1024, @@ -84749,7 +86204,7 @@ "groups": [ { "title": "Properties", - "children": [3126, 3125] + "children": [3148, 3147] } ], "sources": [ @@ -84763,7 +86218,7 @@ } }, { - "id": 3127, + "id": 3149, "name": "private", "variant": "declaration", "kind": 1024, @@ -84794,7 +86249,7 @@ "groups": [ { "title": "Properties", - "children": [3118, 3123, 3127] + "children": [3140, 3145, 3149] } ], "sources": [ @@ -84811,7 +86266,7 @@ "groups": [ { "title": "Properties", - "children": [3116] + "children": [3138] } ], "sources": [ @@ -84825,7 +86280,7 @@ } }, { - "id": 3128, + "id": 3150, "name": "RealtimeChannelSendResponse", "variant": "declaration", "kind": 2097152, @@ -84862,7 +86317,7 @@ { "type": "reflection", "declaration": { - "id": 3129, + "id": 3151, "name": "__type", "variant": "declaration", "kind": 65536, @@ -84882,7 +86337,7 @@ } }, { - "id": 3251, + "id": 3273, "name": "RealtimeClientOptions", "variant": "declaration", "kind": 2097152, @@ -84897,14 +86352,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3252, + "id": 3274, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3287, + "id": 3309, "name": "accessToken", "variant": "declaration", "kind": 1024, @@ -84921,7 +86376,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3288, + "id": 3310, "name": "__type", "variant": "declaration", "kind": 65536, @@ -84935,7 +86390,7 @@ ], "signatures": [ { - "id": 3289, + "id": 3311, "name": "__type", "variant": "signature", "kind": 4096, @@ -84970,7 +86425,7 @@ } }, { - "id": 3269, + "id": 3291, "name": "decode", "variant": "declaration", "kind": 1024, @@ -85001,7 +86456,7 @@ } }, { - "id": 3290, + "id": 3312, "name": "disconnectOnEmptyChannelsAfterMs", "variant": "declaration", "kind": 1024, @@ -85021,7 +86476,7 @@ } }, { - "id": 3268, + "id": 3290, "name": "encode", "variant": "declaration", "kind": 1024, @@ -85052,7 +86507,7 @@ } }, { - "id": 3284, + "id": 3306, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -85077,7 +86532,7 @@ } }, { - "id": 3274, + "id": 3296, "name": "headers", "variant": "declaration", "kind": 1024, @@ -85094,7 +86549,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3275, + "id": 3297, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85108,7 +86563,7 @@ ], "indexSignatures": [ { - "id": 3276, + "id": 3298, "name": "__index", "variant": "signature", "kind": 8192, @@ -85122,7 +86577,7 @@ ], "parameters": [ { - "id": 3277, + "id": 3299, "name": "key", "variant": "param", "kind": 32768, @@ -85143,7 +86598,7 @@ } }, { - "id": 3256, + "id": 3278, "name": "heartbeatCallback", "variant": "declaration", "kind": 1024, @@ -85160,7 +86615,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3257, + "id": 3279, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85174,14 +86629,14 @@ ], "signatures": [ { - "id": 3258, + "id": 3280, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3259, + "id": 3281, "name": "status", "variant": "param", "kind": 32768, @@ -85197,7 +86652,7 @@ } }, { - "id": 3260, + "id": 3282, "name": "latency", "variant": "param", "kind": 32768, @@ -85220,7 +86675,7 @@ } }, { - "id": 3255, + "id": 3277, "name": "heartbeatIntervalMs", "variant": "declaration", "kind": 1024, @@ -85240,7 +86695,7 @@ } }, { - "id": 3282, + "id": 3304, "name": "log_level", "variant": "declaration", "kind": 1024, @@ -85265,7 +86720,7 @@ } }, { - "id": 3262, + "id": 3284, "name": "logger", "variant": "declaration", "kind": 1024, @@ -85282,7 +86737,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3263, + "id": 3285, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85296,14 +86751,14 @@ ], "signatures": [ { - "id": 3264, + "id": 3286, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3265, + "id": 3287, "name": "kind", "variant": "param", "kind": 32768, @@ -85314,7 +86769,7 @@ } }, { - "id": 3266, + "id": 3288, "name": "msg", "variant": "param", "kind": 32768, @@ -85325,7 +86780,7 @@ } }, { - "id": 3267, + "id": 3289, "name": "data", "variant": "param", "kind": 32768, @@ -85348,7 +86803,7 @@ } }, { - "id": 3283, + "id": 3305, "name": "logLevel", "variant": "declaration", "kind": 1024, @@ -85373,7 +86828,7 @@ } }, { - "id": 3278, + "id": 3300, "name": "params", "variant": "declaration", "kind": 1024, @@ -85390,7 +86845,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3279, + "id": 3301, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85404,7 +86859,7 @@ ], "indexSignatures": [ { - "id": 3280, + "id": 3302, "name": "__index", "variant": "signature", "kind": 8192, @@ -85418,7 +86873,7 @@ ], "parameters": [ { - "id": 3281, + "id": 3303, "name": "key", "variant": "param", "kind": 32768, @@ -85439,7 +86894,7 @@ } }, { - "id": 3270, + "id": 3292, "name": "reconnectAfterMs", "variant": "declaration", "kind": 1024, @@ -85456,7 +86911,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3271, + "id": 3293, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85470,14 +86925,14 @@ ], "signatures": [ { - "id": 3272, + "id": 3294, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3273, + "id": 3295, "name": "tries", "variant": "param", "kind": 32768, @@ -85498,7 +86953,7 @@ } }, { - "id": 3291, + "id": 3313, "name": "sessionStorage", "variant": "declaration", "kind": 1024, @@ -85547,7 +87002,7 @@ } }, { - "id": 3254, + "id": 3276, "name": "timeout", "variant": "declaration", "kind": 1024, @@ -85567,7 +87022,7 @@ } }, { - "id": 3253, + "id": 3275, "name": "transport", "variant": "declaration", "kind": 1024, @@ -85583,13 +87038,13 @@ ], "type": { "type": "reference", - "target": 3459, + "target": 3481, "name": "WebSocketLikeConstructor", "package": "@supabase/realtime-js" } }, { - "id": 3261, + "id": 3283, "name": "vsn", "variant": "declaration", "kind": 1024, @@ -85609,7 +87064,7 @@ } }, { - "id": 3285, + "id": 3307, "name": "worker", "variant": "declaration", "kind": 1024, @@ -85629,7 +87084,7 @@ } }, { - "id": 3286, + "id": 3308, "name": "workerUrl", "variant": "declaration", "kind": 1024, @@ -85653,8 +87108,8 @@ { "title": "Properties", "children": [ - 3287, 3269, 3290, 3268, 3284, 3274, 3256, 3255, 3282, 3262, 3283, 3278, 3270, - 3291, 3254, 3253, 3261, 3285, 3286 + 3309, 3291, 3312, 3290, 3306, 3296, 3278, 3277, 3304, 3284, 3305, 3300, 3292, + 3313, 3276, 3275, 3283, 3307, 3308 ] } ], @@ -85669,7 +87124,7 @@ } }, { - "id": 3292, + "id": 3314, "name": "RealtimeMessage", "variant": "declaration", "kind": 2097152, @@ -85684,14 +87139,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3293, + "id": 3315, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3295, + "id": 3317, "name": "event", "variant": "declaration", "kind": 1024, @@ -85709,7 +87164,7 @@ } }, { - "id": 3298, + "id": 3320, "name": "join_ref", "variant": "declaration", "kind": 1024, @@ -85729,7 +87184,7 @@ } }, { - "id": 3296, + "id": 3318, "name": "payload", "variant": "declaration", "kind": 1024, @@ -85747,7 +87202,7 @@ } }, { - "id": 3297, + "id": 3319, "name": "ref", "variant": "declaration", "kind": 1024, @@ -85765,7 +87220,7 @@ } }, { - "id": 3294, + "id": 3316, "name": "topic", "variant": "declaration", "kind": 1024, @@ -85786,7 +87241,7 @@ "groups": [ { "title": "Properties", - "children": [3295, 3298, 3296, 3297, 3294] + "children": [3317, 3320, 3318, 3319, 3316] } ], "sources": [ @@ -85800,7 +87255,7 @@ } }, { - "id": 3299, + "id": 3321, "name": "RealtimePostgresChangesFilter", "variant": "declaration", "kind": 2097152, @@ -85814,7 +87269,7 @@ ], "typeParameters": [ { - "id": 3305, + "id": 3327, "name": "T", "variant": "typeParam", "kind": 131072, @@ -85826,7 +87281,7 @@ [ { "type": "reference", - "target": 3376, + "target": 3398, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT", "package": "@supabase/realtime-js" }, @@ -85839,14 +87294,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3300, + "id": 3322, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3301, + "id": 3323, "name": "event", "variant": "declaration", "kind": 1024, @@ -85868,14 +87323,14 @@ ], "type": { "type": "reference", - "target": 3305, + "target": 3327, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 3304, + "id": 3326, "name": "filter", "variant": "declaration", "kind": 1024, @@ -85903,7 +87358,7 @@ } }, { - "id": 3302, + "id": 3324, "name": "schema", "variant": "declaration", "kind": 1024, @@ -85929,7 +87384,7 @@ } }, { - "id": 3303, + "id": 3325, "name": "table", "variant": "declaration", "kind": 1024, @@ -85960,7 +87415,7 @@ "groups": [ { "title": "Properties", - "children": [3301, 3304, 3302, 3303] + "children": [3323, 3326, 3324, 3325] } ], "sources": [ @@ -85974,7 +87429,7 @@ } }, { - "id": 3306, + "id": 3328, "name": "RealtimePostgresChangesPayload", "variant": "declaration", "kind": 2097152, @@ -85988,7 +87443,7 @@ ], "typeParameters": [ { - "id": 3307, + "id": 3329, "name": "T", "variant": "typeParam", "kind": 131072, @@ -85996,7 +87451,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3308, + "id": 3330, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86010,7 +87465,7 @@ ], "indexSignatures": [ { - "id": 3309, + "id": 3331, "name": "__index", "variant": "signature", "kind": 8192, @@ -86024,7 +87479,7 @@ ], "parameters": [ { - "id": 3310, + "id": 3332, "name": "key", "variant": "param", "kind": 32768, @@ -86050,11 +87505,11 @@ "types": [ { "type": "reference", - "target": 3311, + "target": 3333, "typeArguments": [ { "type": "reference", - "target": 3307, + "target": 3329, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86065,11 +87520,11 @@ }, { "type": "reference", - "target": 3321, + "target": 3343, "typeArguments": [ { "type": "reference", - "target": 3307, + "target": 3329, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86080,11 +87535,11 @@ }, { "type": "reference", - "target": 3330, + "target": 3352, "typeArguments": [ { "type": "reference", - "target": 3307, + "target": 3329, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86097,7 +87552,7 @@ } }, { - "id": 3330, + "id": 3352, "name": "RealtimePostgresDeletePayload", "variant": "declaration", "kind": 2097152, @@ -86111,7 +87566,7 @@ ], "typeParameters": [ { - "id": 3336, + "id": 3358, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86119,7 +87574,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3337, + "id": 3359, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86133,7 +87588,7 @@ ], "indexSignatures": [ { - "id": 3338, + "id": 3360, "name": "__index", "variant": "signature", "kind": 8192, @@ -86147,7 +87602,7 @@ ], "parameters": [ { - "id": 3339, + "id": 3361, "name": "key", "variant": "param", "kind": 32768, @@ -86183,14 +87638,14 @@ { "type": "reflection", "declaration": { - "id": 3331, + "id": 3353, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3332, + "id": 3354, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -86209,7 +87664,7 @@ [ { "type": "reference", - "target": 3380, + "target": 3402, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE", "package": "@supabase/realtime-js" }, @@ -86219,7 +87674,7 @@ } }, { - "id": 3333, + "id": 3355, "name": "new", "variant": "declaration", "kind": 1024, @@ -86234,7 +87689,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3334, + "id": 3356, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86250,7 +87705,7 @@ } }, { - "id": 3335, + "id": 3357, "name": "old", "variant": "declaration", "kind": 1024, @@ -86271,7 +87726,7 @@ "typeArguments": [ { "type": "reference", - "target": 3336, + "target": 3358, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86285,7 +87740,7 @@ "groups": [ { "title": "Properties", - "children": [3332, 3333, 3335] + "children": [3354, 3355, 3357] } ], "sources": [ @@ -86301,7 +87756,7 @@ } }, { - "id": 3311, + "id": 3333, "name": "RealtimePostgresInsertPayload", "variant": "declaration", "kind": 2097152, @@ -86315,7 +87770,7 @@ ], "typeParameters": [ { - "id": 3317, + "id": 3339, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86323,7 +87778,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3318, + "id": 3340, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86337,7 +87792,7 @@ ], "indexSignatures": [ { - "id": 3319, + "id": 3341, "name": "__index", "variant": "signature", "kind": 8192, @@ -86351,7 +87806,7 @@ ], "parameters": [ { - "id": 3320, + "id": 3342, "name": "key", "variant": "param", "kind": 32768, @@ -86387,14 +87842,14 @@ { "type": "reflection", "declaration": { - "id": 3312, + "id": 3334, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3313, + "id": 3335, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -86413,7 +87868,7 @@ [ { "type": "reference", - "target": 3378, + "target": 3400, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT", "package": "@supabase/realtime-js" }, @@ -86423,7 +87878,7 @@ } }, { - "id": 3314, + "id": 3336, "name": "new", "variant": "declaration", "kind": 1024, @@ -86437,14 +87892,14 @@ ], "type": { "type": "reference", - "target": 3317, + "target": 3339, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 3315, + "id": 3337, "name": "old", "variant": "declaration", "kind": 1024, @@ -86459,7 +87914,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3316, + "id": 3338, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86478,7 +87933,7 @@ "groups": [ { "title": "Properties", - "children": [3313, 3314, 3315] + "children": [3335, 3336, 3337] } ], "sources": [ @@ -86494,7 +87949,7 @@ } }, { - "id": 3321, + "id": 3343, "name": "RealtimePostgresUpdatePayload", "variant": "declaration", "kind": 2097152, @@ -86508,7 +87963,7 @@ ], "typeParameters": [ { - "id": 3326, + "id": 3348, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86516,7 +87971,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3327, + "id": 3349, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86530,7 +87985,7 @@ ], "indexSignatures": [ { - "id": 3328, + "id": 3350, "name": "__index", "variant": "signature", "kind": 8192, @@ -86544,7 +87999,7 @@ ], "parameters": [ { - "id": 3329, + "id": 3351, "name": "key", "variant": "param", "kind": 32768, @@ -86580,14 +88035,14 @@ { "type": "reflection", "declaration": { - "id": 3322, + "id": 3344, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3323, + "id": 3345, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -86606,7 +88061,7 @@ [ { "type": "reference", - "target": 3379, + "target": 3401, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE", "package": "@supabase/realtime-js" }, @@ -86616,7 +88071,7 @@ } }, { - "id": 3324, + "id": 3346, "name": "new", "variant": "declaration", "kind": 1024, @@ -86630,14 +88085,14 @@ ], "type": { "type": "reference", - "target": 3326, + "target": 3348, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 3325, + "id": 3347, "name": "old", "variant": "declaration", "kind": 1024, @@ -86658,7 +88113,7 @@ "typeArguments": [ { "type": "reference", - "target": 3326, + "target": 3348, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86672,7 +88127,7 @@ "groups": [ { "title": "Properties", - "children": [3323, 3324, 3325] + "children": [3345, 3346, 3347] } ], "sources": [ @@ -86688,7 +88143,7 @@ } }, { - "id": 3340, + "id": 3362, "name": "RealtimePresenceJoinPayload", "variant": "declaration", "kind": 2097152, @@ -86702,7 +88157,7 @@ ], "typeParameters": [ { - "id": 3346, + "id": 3368, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86710,7 +88165,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3347, + "id": 3369, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86724,7 +88179,7 @@ ], "indexSignatures": [ { - "id": 3348, + "id": 3370, "name": "__index", "variant": "signature", "kind": 8192, @@ -86738,7 +88193,7 @@ ], "parameters": [ { - "id": 3349, + "id": 3371, "name": "key", "variant": "param", "kind": 32768, @@ -86762,14 +88217,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3341, + "id": 3363, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3344, + "id": 3366, "name": "currentPresences", "variant": "declaration", "kind": 1024, @@ -86792,7 +88247,7 @@ "typeArguments": [ { "type": "reference", - "target": 3346, + "target": 3368, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86804,7 +88259,7 @@ } }, { - "id": 3342, + "id": 3364, "name": "event", "variant": "declaration", "kind": 1024, @@ -86823,7 +88278,7 @@ [ { "type": "reference", - "target": 3383, + "target": 3405, "name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN", "package": "@supabase/realtime-js" }, @@ -86833,7 +88288,7 @@ } }, { - "id": 3343, + "id": 3365, "name": "key", "variant": "declaration", "kind": 1024, @@ -86851,7 +88306,7 @@ } }, { - "id": 3345, + "id": 3367, "name": "newPresences", "variant": "declaration", "kind": 1024, @@ -86874,7 +88329,7 @@ "typeArguments": [ { "type": "reference", - "target": 3346, + "target": 3368, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86889,7 +88344,7 @@ "groups": [ { "title": "Properties", - "children": [3344, 3342, 3343, 3345] + "children": [3366, 3364, 3365, 3367] } ], "sources": [ @@ -86903,7 +88358,7 @@ } }, { - "id": 3350, + "id": 3372, "name": "RealtimePresenceLeavePayload", "variant": "declaration", "kind": 2097152, @@ -86917,7 +88372,7 @@ ], "typeParameters": [ { - "id": 3356, + "id": 3378, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86925,7 +88380,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3357, + "id": 3379, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86939,7 +88394,7 @@ ], "indexSignatures": [ { - "id": 3358, + "id": 3380, "name": "__index", "variant": "signature", "kind": 8192, @@ -86953,7 +88408,7 @@ ], "parameters": [ { - "id": 3359, + "id": 3381, "name": "key", "variant": "param", "kind": 32768, @@ -86977,14 +88432,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3351, + "id": 3373, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3354, + "id": 3376, "name": "currentPresences", "variant": "declaration", "kind": 1024, @@ -87007,7 +88462,7 @@ "typeArguments": [ { "type": "reference", - "target": 3356, + "target": 3378, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -87019,7 +88474,7 @@ } }, { - "id": 3352, + "id": 3374, "name": "event", "variant": "declaration", "kind": 1024, @@ -87038,7 +88493,7 @@ [ { "type": "reference", - "target": 3384, + "target": 3406, "name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE", "package": "@supabase/realtime-js" }, @@ -87048,7 +88503,7 @@ } }, { - "id": 3353, + "id": 3375, "name": "key", "variant": "declaration", "kind": 1024, @@ -87066,7 +88521,7 @@ } }, { - "id": 3355, + "id": 3377, "name": "leftPresences", "variant": "declaration", "kind": 1024, @@ -87089,7 +88544,7 @@ "typeArguments": [ { "type": "reference", - "target": 3356, + "target": 3378, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -87104,7 +88559,7 @@ "groups": [ { "title": "Properties", - "children": [3354, 3352, 3353, 3355] + "children": [3376, 3374, 3375, 3377] } ], "sources": [ @@ -87118,7 +88573,7 @@ } }, { - "id": 3360, + "id": 3382, "name": "RealtimePresenceState", "variant": "declaration", "kind": 2097152, @@ -87132,7 +88587,7 @@ ], "typeParameters": [ { - "id": 3364, + "id": 3386, "name": "T", "variant": "typeParam", "kind": 131072, @@ -87140,7 +88595,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3365, + "id": 3387, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87154,7 +88609,7 @@ ], "indexSignatures": [ { - "id": 3366, + "id": 3388, "name": "__index", "variant": "signature", "kind": 8192, @@ -87168,7 +88623,7 @@ ], "parameters": [ { - "id": 3367, + "id": 3389, "name": "key", "variant": "param", "kind": 32768, @@ -87190,7 +88645,7 @@ "default": { "type": "reflection", "declaration": { - "id": 3368, + "id": 3390, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87209,7 +88664,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3361, + "id": 3383, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87223,7 +88678,7 @@ ], "indexSignatures": [ { - "id": 3362, + "id": 3384, "name": "__index", "variant": "signature", "kind": 8192, @@ -87237,7 +88692,7 @@ ], "parameters": [ { - "id": 3363, + "id": 3385, "name": "key", "variant": "param", "kind": 32768, @@ -87259,7 +88714,7 @@ "typeArguments": [ { "type": "reference", - "target": 3364, + "target": 3386, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -87275,7 +88730,7 @@ } }, { - "id": 3369, + "id": 3391, "name": "RealtimeRemoveChannelResponse", "variant": "declaration", "kind": 2097152, @@ -87312,7 +88767,7 @@ { "type": "reflection", "declaration": { - "id": 3370, + "id": 3392, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87332,7 +88787,7 @@ } }, { - "id": 2448, + "id": 2450, "name": "RegisterPasskeyCredentials", "variant": "declaration", "kind": 2097152, @@ -87340,21 +88795,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2365, + "line": 2354, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2449, + "id": 2451, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2450, + "id": 2452, "name": "options", "variant": "declaration", "kind": 1024, @@ -87364,21 +88819,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2366, + "line": 2355, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2451, + "id": 2453, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2452, + "id": 2454, "name": "signal", "variant": "declaration", "kind": 1024, @@ -87388,7 +88843,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2367, + "line": 2356, "character": 8 } ], @@ -87406,13 +88861,13 @@ "groups": [ { "title": "Properties", - "children": [2452] + "children": [2454] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2366, + "line": 2355, "character": 14 } ] @@ -87423,13 +88878,13 @@ "groups": [ { "title": "Properties", - "children": [2450] + "children": [2452] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2365, + "line": 2354, "character": 41 } ] @@ -87437,7 +88892,7 @@ } }, { - "id": 1643, + "id": 1645, "name": "RequestResult", "variant": "declaration", "kind": 2097152, @@ -87453,20 +88908,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 171, + "line": 160, "character": 12 } ], "typeParameters": [ { - "id": 1650, + "id": 1652, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 1651, + "id": 1653, "name": "ErrorType", "variant": "typeParam", "kind": 131072, @@ -87482,7 +88937,7 @@ }, "default": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -87494,14 +88949,14 @@ { "type": "reflection", "declaration": { - "id": 1644, + "id": 1646, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1645, + "id": 1647, "name": "data", "variant": "declaration", "kind": 1024, @@ -87509,20 +88964,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], "type": { "type": "reference", - "target": 1650, + "target": 1652, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1646, + "id": 1648, "name": "error", "variant": "declaration", "kind": 1024, @@ -87530,7 +88985,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -87543,13 +88998,13 @@ "groups": [ { "title": "Properties", - "children": [1645, 1646] + "children": [1647, 1648] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 171, + "line": 160, "character": 68 } ] @@ -87558,14 +89013,14 @@ { "type": "reflection", "declaration": { - "id": 1647, + "id": 1649, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1648, + "id": 1650, "name": "data", "variant": "declaration", "kind": 1024, @@ -87573,7 +89028,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -87583,7 +89038,7 @@ } }, { - "id": 1649, + "id": 1651, "name": "error", "variant": "declaration", "kind": 1024, @@ -87591,7 +89046,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], @@ -87608,19 +89063,19 @@ }, "extendsType": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, "trueType": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, "falseType": { "type": "reference", - "target": 1651, + "target": 1653, "name": "ErrorType", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -87631,13 +89086,13 @@ "groups": [ { "title": "Properties", - "children": [1648, 1649] + "children": [1650, 1651] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 174, + "line": 163, "character": 4 } ] @@ -87647,7 +89102,7 @@ } }, { - "id": 1652, + "id": 1654, "name": "RequestResultSafeDestructure", "variant": "declaration", "kind": 2097152, @@ -87668,13 +89123,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 182, + "line": 171, "character": 12 } ], "typeParameters": [ { - "id": 1659, + "id": 1661, "name": "T", "variant": "typeParam", "kind": 131072, @@ -87687,14 +89142,14 @@ { "type": "reflection", "declaration": { - "id": 1653, + "id": 1655, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1654, + "id": 1656, "name": "data", "variant": "declaration", "kind": 1024, @@ -87702,20 +89157,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 183, + "line": 172, "character": 4 } ], "type": { "type": "reference", - "target": 1659, + "target": 1661, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1655, + "id": 1657, "name": "error", "variant": "declaration", "kind": 1024, @@ -87723,7 +89178,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 184, + "line": 173, "character": 4 } ], @@ -87736,13 +89191,13 @@ "groups": [ { "title": "Properties", - "children": [1654, 1655] + "children": [1656, 1657] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 182, + "line": 171, "character": 46 } ] @@ -87751,14 +89206,14 @@ { "type": "reflection", "declaration": { - "id": 1656, + "id": 1658, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1657, + "id": 1659, "name": "data", "variant": "declaration", "kind": 1024, @@ -87766,7 +89221,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 186, + "line": 175, "character": 4 } ], @@ -87774,7 +89229,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1659, + "target": 1661, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -87791,7 +89246,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1659, + "target": 1661, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -87809,7 +89264,7 @@ } }, { - "id": 1658, + "id": 1660, "name": "error", "variant": "declaration", "kind": 1024, @@ -87817,13 +89272,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 189, + "line": 178, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -87832,13 +89287,13 @@ "groups": [ { "title": "Properties", - "children": [1657, 1658] + "children": [1659, 1660] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 185, + "line": 174, "character": 4 } ] @@ -87848,7 +89303,7 @@ } }, { - "id": 2134, + "id": 2136, "name": "RequiredClaims", "variant": "declaration", "kind": 2097152, @@ -87856,21 +89311,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1633, + "line": 1622, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2135, + "id": 2137, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2142, + "id": 2144, "name": "aal", "variant": "declaration", "kind": 1024, @@ -87878,19 +89333,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1640, + "line": 1629, "character": 4 } ], "type": { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" } }, { - "id": 2138, + "id": 2140, "name": "aud", "variant": "declaration", "kind": 1024, @@ -87898,7 +89353,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1636, + "line": 1625, "character": 4 } ], @@ -87920,7 +89375,7 @@ } }, { - "id": 2139, + "id": 2141, "name": "exp", "variant": "declaration", "kind": 1024, @@ -87928,7 +89383,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1637, + "line": 1626, "character": 4 } ], @@ -87938,7 +89393,7 @@ } }, { - "id": 2140, + "id": 2142, "name": "iat", "variant": "declaration", "kind": 1024, @@ -87946,7 +89401,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1638, + "line": 1627, "character": 4 } ], @@ -87956,7 +89411,7 @@ } }, { - "id": 2136, + "id": 2138, "name": "iss", "variant": "declaration", "kind": 1024, @@ -87964,7 +89419,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1634, + "line": 1623, "character": 4 } ], @@ -87974,7 +89429,7 @@ } }, { - "id": 2141, + "id": 2143, "name": "role", "variant": "declaration", "kind": 1024, @@ -87982,7 +89437,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1639, + "line": 1628, "character": 4 } ], @@ -87992,7 +89447,7 @@ } }, { - "id": 2143, + "id": 2145, "name": "session_id", "variant": "declaration", "kind": 1024, @@ -88000,7 +89455,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1641, + "line": 1630, "character": 4 } ], @@ -88010,7 +89465,7 @@ } }, { - "id": 2137, + "id": 2139, "name": "sub", "variant": "declaration", "kind": 1024, @@ -88018,7 +89473,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1635, + "line": 1624, "character": 4 } ], @@ -88031,13 +89486,13 @@ "groups": [ { "title": "Properties", - "children": [2142, 2138, 2139, 2140, 2136, 2141, 2143, 2137] + "children": [2144, 2140, 2141, 2142, 2138, 2143, 2145, 2139] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1633, + "line": 1622, "character": 29 } ] @@ -88046,13 +89501,13 @@ "extendedBy": [ { "type": "reference", - "target": 2144, + "target": 2146, "name": "JwtPayload" } ] }, { - "id": 1908, + "id": 1910, "name": "ResendParams", "variant": "declaration", "kind": 2097152, @@ -88060,7 +89515,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 705, + "line": 694, "character": 12 } ], @@ -88070,14 +89525,14 @@ { "type": "reflection", "declaration": { - "id": 1909, + "id": 1911, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1911, + "id": 1913, "name": "email", "variant": "declaration", "kind": 1024, @@ -88085,7 +89540,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 707, + "line": 696, "character": 4 } ], @@ -88095,7 +89550,7 @@ } }, { - "id": 1912, + "id": 1914, "name": "options", "variant": "declaration", "kind": 1024, @@ -88105,21 +89560,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 708, + "line": 697, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1913, + "id": 1915, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1915, + "id": 1917, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88137,7 +89592,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 712, + "line": 701, "character": 8 } ], @@ -88147,7 +89602,7 @@ } }, { - "id": 1914, + "id": 1916, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -88165,7 +89620,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 710, + "line": 699, "character": 8 } ], @@ -88178,13 +89633,13 @@ "groups": [ { "title": "Properties", - "children": [1915, 1914] + "children": [1917, 1916] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 708, + "line": 697, "character": 14 } ] @@ -88192,7 +89647,7 @@ } }, { - "id": 1910, + "id": 1912, "name": "type", "variant": "declaration", "kind": 1024, @@ -88200,7 +89655,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 706, + "line": 695, "character": 4 } ], @@ -88213,7 +89668,7 @@ "typeArguments": [ { "type": "reference", - "target": 1906, + "target": 1908, "name": "EmailOtpType", "package": "@supabase/auth-js" }, @@ -88239,13 +89694,13 @@ "groups": [ { "title": "Properties", - "children": [1911, 1912, 1910] + "children": [1913, 1914, 1912] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 705, + "line": 694, "character": 27 } ] @@ -88254,14 +89709,14 @@ { "type": "reflection", "declaration": { - "id": 1916, + "id": 1918, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1919, + "id": 1921, "name": "options", "variant": "declaration", "kind": 1024, @@ -88271,21 +89726,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 717, + "line": 706, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1920, + "id": 1922, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1921, + "id": 1923, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88303,7 +89758,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 719, + "line": 708, "character": 8 } ], @@ -88316,13 +89771,13 @@ "groups": [ { "title": "Properties", - "children": [1921] + "children": [1923] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 717, + "line": 706, "character": 14 } ] @@ -88330,7 +89785,7 @@ } }, { - "id": 1918, + "id": 1920, "name": "phone", "variant": "declaration", "kind": 1024, @@ -88338,7 +89793,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 716, + "line": 705, "character": 4 } ], @@ -88348,7 +89803,7 @@ } }, { - "id": 1917, + "id": 1919, "name": "type", "variant": "declaration", "kind": 1024, @@ -88356,7 +89811,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 715, + "line": 704, "character": 4 } ], @@ -88369,7 +89824,7 @@ "typeArguments": [ { "type": "reference", - "target": 1904, + "target": 1906, "name": "MobileOtpType", "package": "@supabase/auth-js" }, @@ -88395,13 +89850,13 @@ "groups": [ { "title": "Properties", - "children": [1919, 1918, 1917] + "children": [1921, 1920, 1919] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 714, + "line": 703, "character": 4 } ] @@ -88411,7 +89866,7 @@ } }, { - "id": 1772, + "id": 1774, "name": "SignInAnonymouslyCredentials", "variant": "declaration", "kind": 2097152, @@ -88419,21 +89874,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 506, + "line": 495, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1773, + "id": 1775, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1774, + "id": 1776, "name": "options", "variant": "declaration", "kind": 1024, @@ -88443,21 +89898,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 507, + "line": 496, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1775, + "id": 1777, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1777, + "id": 1779, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88475,7 +89930,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 515, + "line": 504, "character": 8 } ], @@ -88485,7 +89940,7 @@ } }, { - "id": 1776, + "id": 1778, "name": "data", "variant": "declaration", "kind": 1024, @@ -88519,7 +89974,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 513, + "line": 502, "character": 8 } ], @@ -88532,13 +89987,13 @@ "groups": [ { "title": "Properties", - "children": [1777, 1776] + "children": [1779, 1778] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 507, + "line": 496, "character": 14 } ] @@ -88549,13 +90004,13 @@ "groups": [ { "title": "Properties", - "children": [1774] + "children": [1776] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 506, + "line": 495, "character": 43 } ] @@ -88563,7 +90018,7 @@ } }, { - "id": 1822, + "id": 1824, "name": "SignInWithIdTokenCredentials", "variant": "declaration", "kind": 2097152, @@ -88571,21 +90026,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 590, + "line": 579, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1823, + "id": 1825, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1827, + "id": 1829, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -88611,7 +90066,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 596, + "line": 585, "character": 4 } ], @@ -88621,7 +90076,7 @@ } }, { - "id": 1828, + "id": 1830, "name": "nonce", "variant": "declaration", "kind": 1024, @@ -88647,7 +90102,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 598, + "line": 587, "character": 4 } ], @@ -88657,7 +90112,7 @@ } }, { - "id": 1829, + "id": 1831, "name": "options", "variant": "declaration", "kind": 1024, @@ -88667,21 +90122,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 599, + "line": 588, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1830, + "id": 1832, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1831, + "id": 1833, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88699,7 +90154,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 601, + "line": 590, "character": 8 } ], @@ -88712,13 +90167,13 @@ "groups": [ { "title": "Properties", - "children": [1831] + "children": [1833] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 599, + "line": 588, "character": 14 } ] @@ -88726,7 +90181,7 @@ } }, { - "id": 1824, + "id": 1826, "name": "provider", "variant": "declaration", "kind": 1024, @@ -88806,7 +90261,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 592, + "line": 581, "character": 4 } ], @@ -88856,7 +90311,7 @@ { "type": "reflection", "declaration": { - "id": 1825, + "id": 1827, "name": "__type", "variant": "declaration", "kind": 65536, @@ -88864,7 +90319,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 592, + "line": 581, "character": 99 } ] @@ -88876,7 +90331,7 @@ } }, { - "id": 1826, + "id": 1828, "name": "token", "variant": "declaration", "kind": 1024, @@ -88924,7 +90379,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 594, + "line": 583, "character": 4 } ], @@ -88937,13 +90392,13 @@ "groups": [ { "title": "Properties", - "children": [1827, 1828, 1829, 1824, 1826] + "children": [1829, 1830, 1831, 1826, 1828] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 590, + "line": 579, "character": 43 } ] @@ -88951,7 +90406,7 @@ } }, { - "id": 1810, + "id": 1812, "name": "SignInWithOAuthCredentials", "variant": "declaration", "kind": 2097152, @@ -88959,21 +90414,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 574, + "line": 563, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1811, + "id": 1813, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1813, + "id": 1815, "name": "options", "variant": "declaration", "kind": 1024, @@ -88983,21 +90438,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 577, + "line": 566, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1814, + "id": 1816, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1817, + "id": 1819, "name": "queryParams", "variant": "declaration", "kind": 1024, @@ -89015,14 +90470,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 583, + "line": 572, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1818, + "id": 1820, "name": "__type", "variant": "declaration", "kind": 65536, @@ -89030,13 +90485,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 583, + "line": 572, "character": 22 } ], "indexSignatures": [ { - "id": 1819, + "id": 1821, "name": "__index", "variant": "signature", "kind": 8192, @@ -89044,13 +90499,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 584, + "line": 573, "character": 12 } ], "parameters": [ { - "id": 1820, + "id": 1822, "name": "key", "variant": "param", "kind": 32768, @@ -89071,7 +90526,7 @@ } }, { - "id": 1815, + "id": 1817, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -89089,7 +90544,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 579, + "line": 568, "character": 8 } ], @@ -89099,7 +90554,7 @@ } }, { - "id": 1816, + "id": 1818, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -89117,7 +90572,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 581, + "line": 570, "character": 8 } ], @@ -89127,7 +90582,7 @@ } }, { - "id": 1821, + "id": 1823, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -89145,7 +90600,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 587, + "line": 576, "character": 8 } ], @@ -89158,13 +90613,13 @@ "groups": [ { "title": "Properties", - "children": [1817, 1815, 1816, 1821] + "children": [1819, 1817, 1818, 1823] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 577, + "line": 566, "character": 14 } ] @@ -89172,7 +90627,7 @@ } }, { - "id": 1812, + "id": 1814, "name": "provider", "variant": "declaration", "kind": 1024, @@ -89188,13 +90643,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 576, + "line": 565, "character": 4 } ], "type": { "type": "reference", - "target": 1585, + "target": 1587, "name": "Provider", "package": "@supabase/auth-js" } @@ -89203,13 +90658,13 @@ "groups": [ { "title": "Properties", - "children": [1813, 1812] + "children": [1815, 1814] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 574, + "line": 563, "character": 41 } ] @@ -89217,7 +90672,7 @@ } }, { - "id": 2442, + "id": 2444, "name": "SignInWithPasskeyCredentials", "variant": "declaration", "kind": 2097152, @@ -89225,21 +90680,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2359, + "line": 2348, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2443, + "id": 2445, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2444, + "id": 2446, "name": "options", "variant": "declaration", "kind": 1024, @@ -89249,21 +90704,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2360, + "line": 2349, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2445, + "id": 2447, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2446, + "id": 2448, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89273,7 +90728,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2361, + "line": 2350, "character": 8 } ], @@ -89283,7 +90738,7 @@ } }, { - "id": 2447, + "id": 2449, "name": "signal", "variant": "declaration", "kind": 1024, @@ -89293,7 +90748,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2362, + "line": 2351, "character": 8 } ], @@ -89311,13 +90766,13 @@ "groups": [ { "title": "Properties", - "children": [2446, 2447] + "children": [2448, 2449] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2360, + "line": 2349, "character": 14 } ] @@ -89328,13 +90783,13 @@ "groups": [ { "title": "Properties", - "children": [2444] + "children": [2446] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2359, + "line": 2348, "character": 43 } ] @@ -89342,7 +90797,7 @@ } }, { - "id": 1786, + "id": 1788, "name": "SignInWithPasswordCredentials", "variant": "declaration", "kind": 2097152, @@ -89350,7 +90805,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 533, + "line": 522, "character": 12 } ], @@ -89369,14 +90824,14 @@ { "type": "reflection", "declaration": { - "id": 1787, + "id": 1789, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1788, + "id": 1790, "name": "options", "variant": "declaration", "kind": 1024, @@ -89386,21 +90841,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 534, + "line": 523, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1789, + "id": 1791, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1790, + "id": 1792, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89410,7 +90865,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 535, + "line": 524, "character": 8 } ], @@ -89423,13 +90878,13 @@ "groups": [ { "title": "Properties", - "children": [1790] + "children": [1792] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 534, + "line": 523, "character": 14 } ] @@ -89440,13 +90895,13 @@ "groups": [ { "title": "Properties", - "children": [1788] + "children": [1790] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 533, + "line": 522, "character": 70 } ] @@ -89456,7 +90911,7 @@ } }, { - "id": 1791, + "id": 1793, "name": "SignInWithPasswordlessCredentials", "variant": "declaration", "kind": 2097152, @@ -89464,7 +90919,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 538, + "line": 527, "character": 12 } ], @@ -89474,14 +90929,14 @@ { "type": "reflection", "declaration": { - "id": 1792, + "id": 1794, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1793, + "id": 1795, "name": "email", "variant": "declaration", "kind": 1024, @@ -89497,7 +90952,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 540, + "line": 529, "character": 4 } ], @@ -89507,7 +90962,7 @@ } }, { - "id": 1794, + "id": 1796, "name": "options", "variant": "declaration", "kind": 1024, @@ -89517,21 +90972,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 541, + "line": 530, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1795, + "id": 1797, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1799, + "id": 1801, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89549,7 +91004,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 553, + "line": 542, "character": 8 } ], @@ -89559,7 +91014,7 @@ } }, { - "id": 1798, + "id": 1800, "name": "data", "variant": "declaration", "kind": 1024, @@ -89593,7 +91048,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 551, + "line": 540, "character": 8 } ], @@ -89603,7 +91058,7 @@ } }, { - "id": 1796, + "id": 1798, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -89621,7 +91076,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 543, + "line": 532, "character": 8 } ], @@ -89631,7 +91086,7 @@ } }, { - "id": 1797, + "id": 1799, "name": "shouldCreateUser", "variant": "declaration", "kind": 1024, @@ -89649,7 +91104,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 545, + "line": 534, "character": 8 } ], @@ -89662,13 +91117,13 @@ "groups": [ { "title": "Properties", - "children": [1799, 1798, 1796, 1797] + "children": [1801, 1800, 1798, 1799] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 541, + "line": 530, "character": 14 } ] @@ -89679,13 +91134,13 @@ "groups": [ { "title": "Properties", - "children": [1793, 1794] + "children": [1795, 1796] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 538, + "line": 527, "character": 48 } ] @@ -89694,14 +91149,14 @@ { "type": "reflection", "declaration": { - "id": 1800, + "id": 1802, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1802, + "id": 1804, "name": "options", "variant": "declaration", "kind": 1024, @@ -89711,21 +91166,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 558, + "line": 547, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1803, + "id": 1805, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1806, + "id": 1808, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89743,7 +91198,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 568, + "line": 557, "character": 8 } ], @@ -89753,7 +91208,7 @@ } }, { - "id": 1807, + "id": 1809, "name": "channel", "variant": "declaration", "kind": 1024, @@ -89771,7 +91226,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 570, + "line": 559, "character": 8 } ], @@ -89790,7 +91245,7 @@ } }, { - "id": 1805, + "id": 1807, "name": "data", "variant": "declaration", "kind": 1024, @@ -89824,7 +91279,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 566, + "line": 555, "character": 8 } ], @@ -89834,7 +91289,7 @@ } }, { - "id": 1804, + "id": 1806, "name": "shouldCreateUser", "variant": "declaration", "kind": 1024, @@ -89852,7 +91307,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 560, + "line": 549, "character": 8 } ], @@ -89865,13 +91320,13 @@ "groups": [ { "title": "Properties", - "children": [1806, 1807, 1805, 1804] + "children": [1808, 1809, 1807, 1806] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 558, + "line": 547, "character": 14 } ] @@ -89879,7 +91334,7 @@ } }, { - "id": 1801, + "id": 1803, "name": "phone", "variant": "declaration", "kind": 1024, @@ -89895,7 +91350,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 557, + "line": 546, "character": 4 } ], @@ -89908,13 +91363,13 @@ "groups": [ { "title": "Properties", - "children": [1802, 1801] + "children": [1804, 1803] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 555, + "line": 544, "character": 4 } ] @@ -89924,7 +91379,7 @@ } }, { - "id": 1922, + "id": 1924, "name": "SignInWithSSO", "variant": "declaration", "kind": 2097152, @@ -89932,7 +91387,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 722, + "line": 711, "character": 12 } ], @@ -89942,14 +91397,14 @@ { "type": "reflection", "declaration": { - "id": 1923, + "id": 1925, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1925, + "id": 1927, "name": "options", "variant": "declaration", "kind": 1024, @@ -89959,21 +91414,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 725, + "line": 714, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1926, + "id": 1928, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1928, + "id": 1930, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89991,7 +91446,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 729, + "line": 718, "character": 8 } ], @@ -90001,7 +91456,7 @@ } }, { - "id": 1927, + "id": 1929, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -90019,7 +91474,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 727, + "line": 716, "character": 8 } ], @@ -90029,7 +91484,7 @@ } }, { - "id": 1929, + "id": 1931, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -90047,7 +91502,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 735, + "line": 724, "character": 8 } ], @@ -90060,13 +91515,13 @@ "groups": [ { "title": "Properties", - "children": [1928, 1927, 1929] + "children": [1930, 1929, 1931] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 725, + "line": 714, "character": 14 } ] @@ -90074,7 +91529,7 @@ } }, { - "id": 1924, + "id": 1926, "name": "providerId", "variant": "declaration", "kind": 1024, @@ -90090,7 +91545,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 724, + "line": 713, "character": 4 } ], @@ -90103,13 +91558,13 @@ "groups": [ { "title": "Properties", - "children": [1925, 1924] + "children": [1927, 1926] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 722, + "line": 711, "character": 28 } ] @@ -90118,14 +91573,14 @@ { "type": "reflection", "declaration": { - "id": 1930, + "id": 1932, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1931, + "id": 1933, "name": "domain", "variant": "declaration", "kind": 1024, @@ -90141,7 +91596,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 739, + "line": 728, "character": 4 } ], @@ -90151,7 +91606,7 @@ } }, { - "id": 1932, + "id": 1934, "name": "options", "variant": "declaration", "kind": 1024, @@ -90161,21 +91616,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 740, + "line": 729, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1933, + "id": 1935, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1935, + "id": 1937, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -90193,7 +91648,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 744, + "line": 733, "character": 8 } ], @@ -90203,7 +91658,7 @@ } }, { - "id": 1934, + "id": 1936, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -90221,7 +91676,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 742, + "line": 731, "character": 8 } ], @@ -90231,7 +91686,7 @@ } }, { - "id": 1936, + "id": 1938, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -90249,7 +91704,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 750, + "line": 739, "character": 8 } ], @@ -90262,13 +91717,13 @@ "groups": [ { "title": "Properties", - "children": [1935, 1934, 1936] + "children": [1937, 1936, 1938] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 740, + "line": 729, "character": 14 } ] @@ -90279,13 +91734,13 @@ "groups": [ { "title": "Properties", - "children": [1931, 1932] + "children": [1933, 1934] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 737, + "line": 726, "character": 4 } ] @@ -90295,7 +91750,7 @@ } }, { - "id": 2119, + "id": 2121, "name": "SignOut", "variant": "declaration", "kind": 2097152, @@ -90303,21 +91758,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1555, + "line": 1544, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2120, + "id": 2122, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2121, + "id": 2123, "name": "scope", "variant": "declaration", "kind": 1024, @@ -90335,7 +91790,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1566, + "line": 1555, "character": 4 } ], @@ -90361,13 +91816,13 @@ "groups": [ { "title": "Properties", - "children": [2121] + "children": [2123] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1555, + "line": 1544, "character": 22 } ] @@ -90375,7 +91830,7 @@ } }, { - "id": 2173, + "id": 2175, "name": "SignOutScope", "variant": "declaration", "kind": 2097152, @@ -90383,7 +91838,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1677, + "line": 1666, "character": 12 } ], @@ -90397,7 +91852,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 2172, + "target": 2174, "name": "SIGN_OUT_SCOPES", "package": "@supabase/auth-js" } @@ -90405,7 +91860,7 @@ } }, { - "id": 1778, + "id": 1780, "name": "SignUpWithPasswordCredentials", "variant": "declaration", "kind": 2097152, @@ -90413,7 +91868,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 518, + "line": 507, "character": 12 } ], @@ -90432,14 +91887,14 @@ { "type": "reflection", "declaration": { - "id": 1779, + "id": 1781, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1780, + "id": 1782, "name": "options", "variant": "declaration", "kind": 1024, @@ -90449,21 +91904,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 519, + "line": 508, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1781, + "id": 1783, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1784, + "id": 1786, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -90473,7 +91928,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 522, + "line": 511, "character": 8 } ], @@ -90483,7 +91938,7 @@ } }, { - "id": 1785, + "id": 1787, "name": "channel", "variant": "declaration", "kind": 1024, @@ -90493,7 +91948,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 523, + "line": 512, "character": 8 } ], @@ -90512,7 +91967,7 @@ } }, { - "id": 1783, + "id": 1785, "name": "data", "variant": "declaration", "kind": 1024, @@ -90522,7 +91977,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 521, + "line": 510, "character": 8 } ], @@ -90532,7 +91987,7 @@ } }, { - "id": 1782, + "id": 1784, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -90542,7 +91997,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 520, + "line": 509, "character": 8 } ], @@ -90555,13 +92010,13 @@ "groups": [ { "title": "Properties", - "children": [1784, 1785, 1783, 1782] + "children": [1786, 1787, 1785, 1784] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 519, + "line": 508, "character": 14 } ] @@ -90572,13 +92027,13 @@ "groups": [ { "title": "Properties", - "children": [1780] + "children": [1782] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 518, + "line": 507, "character": 70 } ] @@ -90588,7 +92043,7 @@ } }, { - "id": 1832, + "id": 1834, "name": "SolanaWallet", "variant": "declaration", "kind": 2097152, @@ -90596,21 +92051,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 604, + "line": 593, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1833, + "id": 1835, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1838, + "id": 1840, "name": "publicKey", "variant": "declaration", "kind": 1024, @@ -90620,7 +92075,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 606, + "line": 595, "character": 4 } ], @@ -90630,14 +92085,14 @@ { "type": "reflection", "declaration": { - "id": 1839, + "id": 1841, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1840, + "id": 1842, "name": "toBase58", "variant": "declaration", "kind": 1024, @@ -90645,14 +92100,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 607, + "line": 596, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1841, + "id": 1843, "name": "__type", "variant": "declaration", "kind": 65536, @@ -90660,13 +92115,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 607, + "line": 596, "character": 18 } ], "signatures": [ { - "id": 1842, + "id": 1844, "name": "__type", "variant": "signature", "kind": 4096, @@ -90684,13 +92139,13 @@ "groups": [ { "title": "Properties", - "children": [1840] + "children": [1842] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 606, + "line": 595, "character": 16 } ] @@ -90704,7 +92159,7 @@ } }, { - "id": 1834, + "id": 1836, "name": "signIn", "variant": "declaration", "kind": 1024, @@ -90714,14 +92169,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 605, + "line": 594, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1835, + "id": 1837, "name": "__type", "variant": "declaration", "kind": 65536, @@ -90729,20 +92184,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 605, + "line": 594, "character": 13 } ], "signatures": [ { - "id": 1836, + "id": 1838, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1837, + "id": 1839, "name": "inputs", "variant": "param", "kind": 32768, @@ -90806,7 +92261,7 @@ } }, { - "id": 1843, + "id": 1845, "name": "signMessage", "variant": "declaration", "kind": 1024, @@ -90816,14 +92271,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 609, + "line": 598, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1844, + "id": 1846, "name": "__type", "variant": "declaration", "kind": 65536, @@ -90831,20 +92286,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 609, + "line": 598, "character": 18 } ], "signatures": [ { - "id": 1845, + "id": 1847, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1846, + "id": 1848, "name": "message", "variant": "param", "kind": 32768, @@ -90860,7 +92315,7 @@ } }, { - "id": 1847, + "id": 1849, "name": "encoding", "variant": "param", "kind": 32768, @@ -90920,13 +92375,13 @@ "groups": [ { "title": "Properties", - "children": [1838, 1834, 1843] + "children": [1840, 1836, 1845] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 604, + "line": 593, "character": 27 } ] @@ -90934,7 +92389,7 @@ } }, { - "id": 1848, + "id": 1850, "name": "SolanaWeb3Credentials", "variant": "declaration", "kind": 2097152, @@ -90942,7 +92397,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 611, + "line": 600, "character": 12 } ], @@ -90952,14 +92407,14 @@ { "type": "reflection", "declaration": { - "id": 1849, + "id": 1851, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1850, + "id": 1852, "name": "chain", "variant": "declaration", "kind": 1024, @@ -90967,7 +92422,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 612, + "line": 601, "character": 4 } ], @@ -90977,7 +92432,7 @@ } }, { - "id": 1853, + "id": 1855, "name": "options", "variant": "declaration", "kind": 1024, @@ -90987,21 +92442,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 617, + "line": 606, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1854, + "id": 1856, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1856, + "id": 1858, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -91019,7 +92474,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 621, + "line": 610, "character": 8 } ], @@ -91029,7 +92484,7 @@ } }, { - "id": 1857, + "id": 1859, "name": "signInWithSolana", "variant": "declaration", "kind": 1024, @@ -91039,7 +92494,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 622, + "line": 611, "character": 8 } ], @@ -91101,7 +92556,7 @@ } }, { - "id": 1855, + "id": 1857, "name": "url", "variant": "declaration", "kind": 1024, @@ -91119,7 +92574,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 619, + "line": 608, "character": 8 } ], @@ -91132,13 +92587,13 @@ "groups": [ { "title": "Properties", - "children": [1856, 1857, 1855] + "children": [1858, 1859, 1857] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 617, + "line": 606, "character": 14 } ] @@ -91146,7 +92601,7 @@ } }, { - "id": 1852, + "id": 1854, "name": "statement", "variant": "declaration", "kind": 1024, @@ -91164,7 +92619,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 616, + "line": 605, "character": 4 } ], @@ -91174,7 +92629,7 @@ } }, { - "id": 1851, + "id": 1853, "name": "wallet", "variant": "declaration", "kind": 1024, @@ -91200,13 +92655,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 614, + "line": 603, "character": 4 } ], "type": { "type": "reference", - "target": 1832, + "target": 1834, "name": "SolanaWallet", "package": "@supabase/auth-js" } @@ -91215,13 +92670,13 @@ "groups": [ { "title": "Properties", - "children": [1850, 1853, 1852, 1851] + "children": [1852, 1855, 1854, 1853] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 611, + "line": 600, "character": 36 } ] @@ -91230,14 +92685,14 @@ { "type": "reflection", "declaration": { - "id": 1858, + "id": 1860, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1859, + "id": 1861, "name": "chain", "variant": "declaration", "kind": 1024, @@ -91245,7 +92700,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 625, + "line": 614, "character": 4 } ], @@ -91255,7 +92710,7 @@ } }, { - "id": 1860, + "id": 1862, "name": "message", "variant": "declaration", "kind": 1024, @@ -91295,7 +92750,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 627, + "line": 616, "character": 4 } ], @@ -91305,7 +92760,7 @@ } }, { - "id": 1862, + "id": 1864, "name": "options", "variant": "declaration", "kind": 1024, @@ -91315,21 +92770,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 630, + "line": 619, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1863, + "id": 1865, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1864, + "id": 1866, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -91347,7 +92802,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 632, + "line": 621, "character": 8 } ], @@ -91360,13 +92815,13 @@ "groups": [ { "title": "Properties", - "children": [1864] + "children": [1866] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 630, + "line": 619, "character": 14 } ] @@ -91374,7 +92829,7 @@ } }, { - "id": 1861, + "id": 1863, "name": "signature", "variant": "declaration", "kind": 1024, @@ -91390,7 +92845,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 629, + "line": 618, "character": 4 } ], @@ -91408,13 +92863,13 @@ "groups": [ { "title": "Properties", - "children": [1859, 1860, 1862, 1861] + "children": [1861, 1862, 1864, 1863] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 624, + "line": 613, "character": 4 } ] @@ -91424,7 +92879,7 @@ } }, { - "id": 1696, + "id": 1698, "name": "SSOResponse", "variant": "declaration", "kind": 2097152, @@ -91432,25 +92887,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 232, + "line": 221, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1697, + "id": 1699, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1698, + "id": 1700, "name": "url", "variant": "declaration", "kind": 1024, @@ -91474,7 +92929,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 240, + "line": 229, "character": 4 } ], @@ -91487,13 +92942,13 @@ "groups": [ { "title": "Properties", - "children": [1698] + "children": [1700] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 232, + "line": 221, "character": 40 } ] @@ -91505,7 +92960,7 @@ } }, { - "id": 2457, + "id": 2459, "name": "StartPasskeyAuthenticationParams", "variant": "declaration", "kind": 2097152, @@ -91513,21 +92968,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2376, + "line": 2365, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2458, + "id": 2460, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2459, + "id": 2461, "name": "options", "variant": "declaration", "kind": 1024, @@ -91537,21 +92992,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2377, + "line": 2366, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2460, + "id": 2462, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2461, + "id": 2463, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -91561,7 +93016,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2378, + "line": 2367, "character": 8 } ], @@ -91574,13 +93029,13 @@ "groups": [ { "title": "Properties", - "children": [2461] + "children": [2463] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2377, + "line": 2366, "character": 14 } ] @@ -91591,13 +93046,13 @@ "groups": [ { "title": "Properties", - "children": [2459] + "children": [2461] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2376, + "line": 2365, "character": 47 } ] @@ -91605,7 +93060,7 @@ } }, { - "id": 1640, + "id": 1642, "name": "StrictOmit", "variant": "declaration", "kind": 2097152, @@ -91621,20 +93076,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 167, + "line": 156, "character": 12 } ], "typeParameters": [ { - "id": 1641, + "id": 1643, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 1642, + "id": 1644, "name": "K", "variant": "typeParam", "kind": 131072, @@ -91644,7 +93099,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1641, + "target": 1643, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -91661,14 +93116,14 @@ "typeArguments": [ { "type": "reference", - "target": 1641, + "target": 1643, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 1642, + "target": 1644, "name": "K", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -91689,7 +93144,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 96, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L96" } ], "typeParameters": [ @@ -91737,9 +93192,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 245, + "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L252" } ], "type": { @@ -91753,9 +93208,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 245, + "line": 252, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L252" } ], "signatures": [ @@ -91807,7 +93262,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L129" } ], "type": { @@ -91840,7 +93295,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 133, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L133" } ], "type": { @@ -91869,7 +93324,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 183, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L183" } ], "type": { @@ -91922,7 +93377,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "type": { @@ -91945,7 +93400,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "signatures": [ @@ -91991,7 +93446,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "indexSignatures": [ @@ -92006,7 +93461,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "parameters": [ @@ -92063,9 +93518,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 201, + "line": 206, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L206" } ], "type": { @@ -92106,7 +93561,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 179, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L179" } ], "type": { @@ -92138,17 +93593,43 @@ "summary": [ { "kind": "text", - "text": "Provide your own locking mechanism based on the environment. By default no locking is done at this time." + "text": "Provide your own locking mechanism based on the environment. By default\nthe auth client coordinates refreshes itself and the server resolves\ncross-tab races. Passing a custom " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " opts into a legacy path that\nwraps every auth operation in your supplied lock." } ], - "modifierTags": ["@experimental"] + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Custom locks still work in v2.x for backwards compatibility.\nThe legacy lock path will be removed in v3 — drop this option from your\n" + }, + { + "kind": "code", + "text": "`createClient`" + }, + { + "kind": "text", + "text": " options before upgrading." + } + ] + } + ] }, "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 189, + "line": 194, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L194" } ], "type": { @@ -92180,15 +93661,23 @@ "summary": [ { "kind": "text", - "text": "Maximum time in milliseconds to wait when acquiring the auth lock before\nstealing it from the previous holder. See " + "text": "Maximum time in milliseconds to wait for acquiring the custom lock\nsupplied via " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": ". Only consulted when a custom " }, { "kind": "code", - "text": "`GoTrueClientOptions.lockAcquireTimeout`" + "text": "`lock`" }, { "kind": "text", - "text": "\nfor full semantics (zero fails immediately, negative waits indefinitely)." + "text": " is passed." } ], "blockTags": [ @@ -92200,15 +93689,32 @@ "text": "```ts\n5000\n```" } ] + }, + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Only used by the legacy lock path. Will be removed in v3\nalong with the " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " option." + } + ] } ] }, "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 209, + "line": 216, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L216" } ], "type": { @@ -92249,7 +93755,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 141, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L141" } ], "type": { @@ -92287,9 +93793,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 217, + "line": 224, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L224" } ], "type": { @@ -92330,7 +93836,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 167, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L167" } ], "type": { @@ -92371,7 +93877,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 137, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L137" } ], "type": { @@ -92398,9 +93904,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 194, + "line": 199, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L199" } ], "type": { @@ -92442,7 +93948,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 175, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L175" } ], "type": { @@ -92477,7 +93983,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 129, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L129" } ] } @@ -92512,7 +94018,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L100" } ], "type": { @@ -92537,7 +94043,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 101, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L101" } ], "type": { @@ -92581,7 +94087,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 113, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L113" } ], "type": { @@ -92622,7 +94128,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L126" } ], "type": { @@ -92642,7 +94148,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 100, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L100" } ] } @@ -92659,9 +94165,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 224, + "line": 231, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L231" } ], "type": { @@ -92700,9 +94206,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 228, + "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L235" } ], "type": { @@ -92734,9 +94240,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 232, + "line": 239, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L239" } ], "type": { @@ -92769,9 +94275,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 224, + "line": 231, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L231" } ] } @@ -92796,14 +94302,14 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 222, + "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L229" } ], "type": { "type": "reference", - "target": 3251, + "target": 3273, "name": "RealtimeClientOptions", "package": "@supabase/realtime-js" } @@ -92819,9 +94325,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 223, + "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L230" } ], "type": { @@ -92970,9 +94476,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 294, + "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L301" } ], "type": { @@ -93003,14 +94509,14 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 96, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L96" } ] } } }, { - "id": 2101, + "id": 2103, "name": "SupportedStorage", "variant": "declaration", "kind": 2097152, @@ -93018,7 +94524,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1529, + "line": 1518, "character": 12 } ], @@ -93076,14 +94582,14 @@ { "type": "reflection", "declaration": { - "id": 2102, + "id": 2104, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2103, + "id": 2105, "name": "isServer", "variant": "declaration", "kind": 1024, @@ -93109,7 +94615,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1537, + "line": 1526, "character": 4 } ], @@ -93122,13 +94628,13 @@ "groups": [ { "title": "Properties", - "children": [2103] + "children": [2105] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1529, + "line": 1518, "character": 103 } ] @@ -93138,7 +94644,7 @@ } }, { - "id": 2307, + "id": 2309, "name": "UpdateCustomProviderParams", "variant": "declaration", "kind": 2097152, @@ -93170,21 +94676,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1994, + "line": 1983, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2308, + "id": 2310, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2312, + "id": 2314, "name": "acceptable_client_ids", "variant": "declaration", "kind": 1024, @@ -93202,7 +94708,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2002, + "line": 1991, "character": 4 } ], @@ -93215,7 +94721,7 @@ } }, { - "id": 2315, + "id": 2317, "name": "attribute_mapping", "variant": "declaration", "kind": 1024, @@ -93233,7 +94739,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2008, + "line": 1997, "character": 4 } ], @@ -93258,7 +94764,7 @@ } }, { - "id": 2316, + "id": 2318, "name": "authorization_params", "variant": "declaration", "kind": 1024, @@ -93276,7 +94782,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2010, + "line": 1999, "character": 4 } ], @@ -93301,7 +94807,7 @@ } }, { - "id": 2322, + "id": 2324, "name": "authorization_url", "variant": "declaration", "kind": 1024, @@ -93319,7 +94825,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2022, + "line": 2011, "character": 4 } ], @@ -93329,7 +94835,7 @@ } }, { - "id": 2310, + "id": 2312, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -93347,7 +94853,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1998, + "line": 1987, "character": 4 } ], @@ -93357,7 +94863,7 @@ } }, { - "id": 2311, + "id": 2313, "name": "client_secret", "variant": "declaration", "kind": 1024, @@ -93375,7 +94881,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2000, + "line": 1989, "character": 4 } ], @@ -93385,7 +94891,7 @@ } }, { - "id": 2320, + "id": 2322, "name": "discovery_url", "variant": "declaration", "kind": 1024, @@ -93403,7 +94909,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2018, + "line": 2007, "character": 4 } ], @@ -93413,7 +94919,7 @@ } }, { - "id": 2318, + "id": 2320, "name": "email_optional", "variant": "declaration", "kind": 1024, @@ -93431,7 +94937,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2014, + "line": 2003, "character": 4 } ], @@ -93441,7 +94947,7 @@ } }, { - "id": 2317, + "id": 2319, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -93459,7 +94965,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2012, + "line": 2001, "character": 4 } ], @@ -93469,7 +94975,7 @@ } }, { - "id": 2319, + "id": 2321, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -93487,7 +94993,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2016, + "line": 2005, "character": 4 } ], @@ -93497,7 +95003,7 @@ } }, { - "id": 2325, + "id": 2327, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -93515,7 +95021,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2028, + "line": 2017, "character": 4 } ], @@ -93525,7 +95031,7 @@ } }, { - "id": 2309, + "id": 2311, "name": "name", "variant": "declaration", "kind": 1024, @@ -93543,7 +95049,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1996, + "line": 1985, "character": 4 } ], @@ -93553,7 +95059,7 @@ } }, { - "id": 2314, + "id": 2316, "name": "pkce_enabled", "variant": "declaration", "kind": 1024, @@ -93571,7 +95077,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2006, + "line": 1995, "character": 4 } ], @@ -93581,7 +95087,7 @@ } }, { - "id": 2313, + "id": 2315, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -93599,7 +95105,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2004, + "line": 1993, "character": 4 } ], @@ -93612,7 +95118,7 @@ } }, { - "id": 2321, + "id": 2323, "name": "skip_nonce_check", "variant": "declaration", "kind": 1024, @@ -93630,7 +95136,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2020, + "line": 2009, "character": 4 } ], @@ -93640,7 +95146,7 @@ } }, { - "id": 2323, + "id": 2325, "name": "token_url", "variant": "declaration", "kind": 1024, @@ -93658,7 +95164,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2024, + "line": 2013, "character": 4 } ], @@ -93668,7 +95174,7 @@ } }, { - "id": 2324, + "id": 2326, "name": "userinfo_url", "variant": "declaration", "kind": 1024, @@ -93686,7 +95192,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2026, + "line": 2015, "character": 4 } ], @@ -93700,15 +95206,15 @@ { "title": "Properties", "children": [ - 2312, 2315, 2316, 2322, 2310, 2311, 2320, 2318, 2317, 2319, 2325, 2309, 2314, - 2313, 2321, 2323, 2324 + 2314, 2317, 2318, 2324, 2312, 2313, 2322, 2320, 2319, 2321, 2327, 2311, 2316, + 2315, 2323, 2325, 2326 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1994, + "line": 1983, "character": 41 } ] @@ -93716,7 +95222,7 @@ } }, { - "id": 2205, + "id": 2207, "name": "UpdateOAuthClientParams", "variant": "declaration", "kind": 2097152, @@ -93732,21 +95238,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1762, + "line": 1751, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2206, + "id": 2208, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2207, + "id": 2209, "name": "client_name", "variant": "declaration", "kind": 1024, @@ -93764,7 +95270,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1764, + "line": 1753, "character": 4 } ], @@ -93774,7 +95280,7 @@ } }, { - "id": 2208, + "id": 2210, "name": "client_uri", "variant": "declaration", "kind": 1024, @@ -93792,7 +95298,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1766, + "line": 1755, "character": 4 } ], @@ -93802,7 +95308,7 @@ } }, { - "id": 2211, + "id": 2213, "name": "grant_types", "variant": "declaration", "kind": 1024, @@ -93820,7 +95326,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1772, + "line": 1761, "character": 4 } ], @@ -93828,14 +95334,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2174, + "target": 2176, "name": "OAuthClientGrantType", "package": "@supabase/auth-js" } } }, { - "id": 2209, + "id": 2211, "name": "logo_uri", "variant": "declaration", "kind": 1024, @@ -93853,7 +95359,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1768, + "line": 1757, "character": 4 } ], @@ -93863,7 +95369,7 @@ } }, { - "id": 2210, + "id": 2212, "name": "redirect_uris", "variant": "declaration", "kind": 1024, @@ -93881,7 +95387,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1770, + "line": 1759, "character": 4 } ], @@ -93894,7 +95400,7 @@ } }, { - "id": 2212, + "id": 2214, "name": "token_endpoint_auth_method", "variant": "declaration", "kind": 1024, @@ -93912,13 +95418,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1774, + "line": 1763, "character": 4 } ], "type": { "type": "reference", - "target": 2179, + "target": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "package": "@supabase/auth-js" } @@ -93927,13 +95433,13 @@ "groups": [ { "title": "Properties", - "children": [2207, 2208, 2211, 2209, 2210, 2212] + "children": [2209, 2210, 2213, 2211, 2212, 2214] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1762, + "line": 1751, "character": 38 } ] @@ -93941,7 +95447,7 @@ } }, { - "id": 1699, + "id": 1701, "name": "UserResponse", "variant": "declaration", "kind": 2097152, @@ -93949,25 +95455,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 242, + "line": 231, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1700, + "id": 1702, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1701, + "id": 1703, "name": "user", "variant": "declaration", "kind": 1024, @@ -93975,7 +95481,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 243, + "line": 232, "character": 4 } ], @@ -93990,13 +95496,13 @@ "groups": [ { "title": "Properties", - "children": [1701] + "children": [1703] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 242, + "line": 231, "character": 56 } ] @@ -94008,7 +95514,7 @@ } }, { - "id": 1884, + "id": 1886, "name": "VerifyOtpParams", "variant": "declaration", "kind": 2097152, @@ -94016,7 +95522,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 661, + "line": 650, "character": 12 } ], @@ -94025,19 +95531,19 @@ "types": [ { "type": "reference", - "target": 1885, + "target": 1887, "name": "VerifyMobileOtpParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1893, + "target": 1895, "name": "VerifyEmailOtpParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1901, + "target": 1903, "name": "VerifyTokenHashParams", "package": "@supabase/auth-js" } @@ -94045,7 +95551,7 @@ } }, { - "id": 2462, + "id": 2464, "name": "VerifyPasskeyAuthenticationParams", "variant": "declaration", "kind": 2097152, @@ -94053,21 +95559,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2381, + "line": 2370, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2463, + "id": 2465, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2464, + "id": 2466, "name": "challengeId", "variant": "declaration", "kind": 1024, @@ -94083,7 +95589,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2383, + "line": 2372, "character": 4 } ], @@ -94093,7 +95599,7 @@ } }, { - "id": 2465, + "id": 2467, "name": "credential", "variant": "declaration", "kind": 1024, @@ -94109,7 +95615,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2385, + "line": 2374, "character": 4 } ], @@ -94127,13 +95633,13 @@ "groups": [ { "title": "Properties", - "children": [2464, 2465] + "children": [2466, 2467] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2381, + "line": 2370, "character": 48 } ] @@ -94141,7 +95647,7 @@ } }, { - "id": 2453, + "id": 2455, "name": "VerifyPasskeyRegistrationParams", "variant": "declaration", "kind": 2097152, @@ -94149,21 +95655,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2370, + "line": 2359, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2454, + "id": 2456, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2455, + "id": 2457, "name": "challengeId", "variant": "declaration", "kind": 1024, @@ -94179,7 +95685,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2372, + "line": 2361, "character": 4 } ], @@ -94189,7 +95695,7 @@ } }, { - "id": 2456, + "id": 2458, "name": "credential", "variant": "declaration", "kind": 1024, @@ -94205,7 +95711,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2374, + "line": 2363, "character": 4 } ], @@ -94223,13 +95729,13 @@ "groups": [ { "title": "Properties", - "children": [2455, 2456] + "children": [2457, 2458] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2370, + "line": 2359, "character": 46 } ] @@ -94237,7 +95743,7 @@ } }, { - "id": 1634, + "id": 1636, "name": "WeakPassword", "variant": "declaration", "kind": 2097152, @@ -94245,21 +95751,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 151, + "line": 140, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1635, + "id": 1637, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1637, + "id": 1639, "name": "message", "variant": "declaration", "kind": 1024, @@ -94267,7 +95773,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 153, + "line": 142, "character": 4 } ], @@ -94277,7 +95783,7 @@ } }, { - "id": 1636, + "id": 1638, "name": "reasons", "variant": "declaration", "kind": 1024, @@ -94285,7 +95791,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 152, + "line": 141, "character": 4 } ], @@ -94293,7 +95799,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1633, + "target": 1635, "name": "WeakPasswordReasons", "package": "@supabase/auth-js" } @@ -94303,13 +95809,13 @@ "groups": [ { "title": "Properties", - "children": [1637, 1636] + "children": [1639, 1638] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 151, + "line": 140, "character": 27 } ] @@ -94317,7 +95823,7 @@ } }, { - "id": 1633, + "id": 1635, "name": "WeakPasswordReasons", "variant": "declaration", "kind": 2097152, @@ -94325,7 +95831,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 150, + "line": 139, "character": 12 } ], @@ -94351,7 +95857,7 @@ } }, { - "id": 1883, + "id": 1885, "name": "Web3Credentials", "variant": "declaration", "kind": 2097152, @@ -94359,7 +95865,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 660, + "line": 649, "character": 12 } ], @@ -94368,13 +95874,13 @@ "types": [ { "type": "reference", - "target": 1848, + "target": 1850, "name": "SolanaWeb3Credentials", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1866, + "target": 1868, "name": "EthereumWeb3Credentials", "package": "@supabase/auth-js" } @@ -94382,7 +95888,7 @@ } }, { - "id": 1559, + "id": 1561, "name": "AuthAdminApi", "variant": "declaration", "kind": 32, @@ -94408,7 +95914,7 @@ } }, { - "id": 1560, + "id": 1562, "name": "AuthClient", "variant": "declaration", "kind": 32, @@ -94426,7 +95932,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 1222, + "target": 1221, "name": "GoTrueClient", "package": "@supabase/auth-js", "qualifiedName": "default" @@ -94434,7 +95940,7 @@ } }, { - "id": 1574, + "id": 1576, "name": "lockInternals", "variant": "declaration", "kind": 32, @@ -94443,26 +95949,53 @@ }, "comment": { "summary": [], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Debug flag for " + }, + { + "kind": "code", + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " / " + }, + { + "kind": "code", + "text": "`processLock`" + }, + { + "kind": "text", + "text": ". The auth\nclient ignores both, so this has no client-side effect." + } + ] + } + ], "modifierTags": ["@experimental"] }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 4, + "line": 14, "character": 21 } ], "type": { "type": "reflection", "declaration": { - "id": 1575, + "id": 1577, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1576, + "id": 1578, "name": "debug", "variant": "declaration", "kind": 1024, @@ -94474,7 +96007,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 8, + "line": 18, "character": 4 } ], @@ -94487,13 +96020,13 @@ "groups": [ { "title": "Properties", - "children": [1576] + "children": [1578] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 4, + "line": 14, "character": 32 } ] @@ -94501,7 +96034,7 @@ } }, { - "id": 3390, + "id": 3412, "name": "REALTIME_CHANNEL_STATES", "variant": "declaration", "kind": 32, @@ -94518,14 +96051,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3391, + "id": 3413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3392, + "id": 3414, "name": "closed", "variant": "declaration", "kind": 1024, @@ -94545,7 +96078,7 @@ } }, { - "id": 3393, + "id": 3415, "name": "errored", "variant": "declaration", "kind": 1024, @@ -94565,7 +96098,7 @@ } }, { - "id": 3394, + "id": 3416, "name": "joined", "variant": "declaration", "kind": 1024, @@ -94585,7 +96118,7 @@ } }, { - "id": 3395, + "id": 3417, "name": "joining", "variant": "declaration", "kind": 1024, @@ -94605,7 +96138,7 @@ } }, { - "id": 3396, + "id": 3418, "name": "leaving", "variant": "declaration", "kind": 1024, @@ -94628,7 +96161,7 @@ "groups": [ { "title": "Properties", - "children": [3392, 3393, 3394, 3395, 3396] + "children": [3414, 3415, 3416, 3417, 3418] } ], "sources": [ @@ -94642,7 +96175,7 @@ } }, { - "id": 2172, + "id": 2174, "name": "SIGN_OUT_SCOPES", "variant": "declaration", "kind": 32, @@ -94652,7 +96185,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1676, + "line": 1665, "character": 21 } ], @@ -94709,7 +96242,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 47, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L47" } ], "signatures": [ @@ -94724,7 +96257,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 47, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L47" } ], "typeParameters": [ @@ -94772,7 +96305,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 51, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L51" } ], "type": { @@ -94792,7 +96325,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 51, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L51" } ] } @@ -95114,7 +96647,7 @@ ] }, { - "id": 2520, + "id": 2522, "name": "isAuthApiError", "variant": "declaration", "kind": 64, @@ -95128,7 +96661,7 @@ ], "signatures": [ { - "id": 2521, + "id": 2523, "name": "isAuthApiError", "variant": "signature", "kind": 4096, @@ -95142,7 +96675,7 @@ ], "parameters": [ { - "id": 2522, + "id": 2524, "name": "error", "variant": "param", "kind": 32768, @@ -95159,7 +96692,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2556, + "target": 2561, "name": "AuthApiError", "package": "@supabase/auth-js" } @@ -95168,7 +96701,7 @@ ] }, { - "id": 2517, + "id": 2519, "name": "isAuthError", "variant": "declaration", "kind": 64, @@ -95182,7 +96715,7 @@ ], "signatures": [ { - "id": 2518, + "id": 2520, "name": "isAuthError", "variant": "signature", "kind": 4096, @@ -95196,7 +96729,7 @@ ], "parameters": [ { - "id": 2519, + "id": 2521, "name": "error", "variant": "param", "kind": 32768, @@ -95213,7 +96746,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -95222,7 +96755,7 @@ ] }, { - "id": 2526, + "id": 2528, "name": "isAuthImplicitGrantRedirectError", "variant": "declaration", "kind": 64, @@ -95236,7 +96769,7 @@ ], "signatures": [ { - "id": 2527, + "id": 2529, "name": "isAuthImplicitGrantRedirectError", "variant": "signature", "kind": 4096, @@ -95250,7 +96783,7 @@ ], "parameters": [ { - "id": 2528, + "id": 2530, "name": "error", "variant": "param", "kind": 32768, @@ -95267,7 +96800,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2661, + "target": 2666, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" } @@ -95276,7 +96809,7 @@ ] }, { - "id": 2529, + "id": 2531, "name": "isAuthPKCECodeVerifierMissingError", "variant": "declaration", "kind": 64, @@ -95290,7 +96823,7 @@ ], "signatures": [ { - "id": 2530, + "id": 2532, "name": "isAuthPKCECodeVerifierMissingError", "variant": "signature", "kind": 4096, @@ -95304,7 +96837,7 @@ ], "parameters": [ { - "id": 2531, + "id": 2533, "name": "error", "variant": "param", "kind": 32768, @@ -95321,7 +96854,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2719, + "target": 2724, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" } @@ -95330,7 +96863,61 @@ ] }, { - "id": 2532, + "id": 2537, + "name": "isAuthRefreshDiscardedError", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 238, + "character": 24 + } + ], + "signatures": [ + { + "id": 2538, + "name": "isAuthRefreshDiscardedError", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 238, + "character": 24 + } + ], + "parameters": [ + { + "id": 2539, + "name": "error", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "unknown" + } + } + ], + "type": { + "type": "predicate", + "name": "error", + "asserts": false, + "targetType": { + "type": "reference", + "target": 2758, + "name": "AuthRefreshDiscardedError", + "package": "@supabase/auth-js" + } + } + } + ] + }, + { + "id": 2534, "name": "isAuthRetryableFetchError", "variant": "declaration", "kind": 64, @@ -95344,7 +96931,7 @@ ], "signatures": [ { - "id": 2533, + "id": 2535, "name": "isAuthRetryableFetchError", "variant": "signature", "kind": 4096, @@ -95358,7 +96945,7 @@ ], "parameters": [ { - "id": 2534, + "id": 2536, "name": "error", "variant": "param", "kind": 32768, @@ -95375,7 +96962,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2735, + "target": 2740, "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" } @@ -95384,7 +96971,7 @@ ] }, { - "id": 2523, + "id": 2525, "name": "isAuthSessionMissingError", "variant": "declaration", "kind": 64, @@ -95398,7 +96985,7 @@ ], "signatures": [ { - "id": 2524, + "id": 2526, "name": "isAuthSessionMissingError", "variant": "signature", "kind": 4096, @@ -95412,7 +96999,7 @@ ], "parameters": [ { - "id": 2525, + "id": 2527, "name": "error", "variant": "param", "kind": 32768, @@ -95429,7 +97016,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2612, + "target": 2617, "name": "AuthSessionMissingError", "package": "@supabase/auth-js" } @@ -95438,7 +97025,7 @@ ] }, { - "id": 2535, + "id": 2540, "name": "isAuthWeakPasswordError", "variant": "declaration", "kind": 64, @@ -95446,13 +97033,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 244, + "line": 268, "character": 24 } ], "signatures": [ { - "id": 2536, + "id": 2541, "name": "isAuthWeakPasswordError", "variant": "signature", "kind": 4096, @@ -95460,13 +97047,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 244, + "line": 268, "character": 24 } ], "parameters": [ { - "id": 2537, + "id": 2542, "name": "error", "variant": "param", "kind": 32768, @@ -95483,7 +97070,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2753, + "target": 2775, "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" } @@ -95492,7 +97079,7 @@ ] }, { - "id": 1561, + "id": 1563, "name": "navigatorLock", "variant": "declaration", "kind": 64, @@ -95500,13 +97087,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, + "line": 74, "character": 24 } ], "signatures": [ { - "id": 1562, + "id": 1564, "name": "navigatorLock", "variant": "signature", "kind": 4096, @@ -95521,7 +97108,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient", - "target": 1222 + "target": 1221 }, { "kind": "text", @@ -95562,210 +97149,19 @@ ], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ - { - "kind": "code", - "text": "```ts\nawait navigatorLock('sync-user', 1000, async () => {\n await refreshSession()\n})\n```" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, - "character": 24 - } - ], - "typeParameters": [ - { - "id": 1563, - "name": "R", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], - "parameters": [ - { - "id": 1564, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the lock to be acquired." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1565, - "name": "acquireTimeout", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ { "kind": "text", - "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " }, { "kind": "code", - "text": "`isAcquireTimeout`" + "text": "`{ lock: navigatorLock }`" }, { "kind": "text", - "text": " set to true." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1566, - "name": "fn", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The operation to run once the lock is acquired." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1567, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, - "character": 83 - } - ], - "signatures": [ - { - "id": 1568, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, - "character": 83 - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1563, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1563, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1577, - "name": "processLock", - "variant": "declaration", - "kind": 64, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, - "character": 24 - } - ], - "signatures": [ - { - "id": 1578, - "name": "processLock", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " - }, - { - "kind": "inline-tag", - "tag": "@link", - "text": "#navigatorLock" - }, - { - "kind": "text", - "text": " in browser environments." - } - ], - "blockTags": [ - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + "text": "\nto it has no effect. You can safely drop the import from your client setup." } ] } @@ -95774,13 +97170,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, + "line": 74, "character": 24 } ], "typeParameters": [ { - "id": 1579, + "id": 1565, "name": "R", "variant": "typeParam", "kind": 131072, @@ -95789,7 +97185,7 @@ ], "parameters": [ { - "id": 1580, + "id": 1566, "name": "name", "variant": "param", "kind": 32768, @@ -95808,7 +97204,7 @@ } }, { - "id": 1581, + "id": 1567, "name": "acquireTimeout", "variant": "param", "kind": 32768, @@ -95834,8 +97230,224 @@ "name": "number" } }, + { + "id": 1568, + "name": "fn", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The operation to run once the lock is acquired." + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1569, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 74, + "character": 83 + } + ], + "signatures": [ + { + "id": 1570, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 74, + "character": 83 + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1565, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1565, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 1579, + "name": "processLock", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 100, + "character": 24 + } + ], + "signatures": [ + { + "id": 1580, + "name": "processLock", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#navigatorLock" + }, + { + "kind": "text", + "text": " in browser environments." + } + ], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " + }, + { + "kind": "code", + "text": "`{ lock: processLock }`" + }, + { + "kind": "text", + "text": "\nto it has no effect. You can safely drop the import from your client setup." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 100, + "character": 24 + } + ], + "typeParameters": [ + { + "id": 1581, + "name": "R", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "parameters": [ { "id": 1582, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the lock to be acquired." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1583, + "name": "acquireTimeout", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + }, + { + "kind": "code", + "text": "`isAcquireTimeout`" + }, + { + "kind": "text", + "text": " set to true." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1584, "name": "fn", "variant": "param", "kind": 32768, @@ -95851,7 +97463,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1583, + "id": 1585, "name": "__type", "variant": "declaration", "kind": 65536, @@ -95859,13 +97471,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, + "line": 100, "character": 81 } ], "signatures": [ { - "id": 1584, + "id": 1586, "name": "__type", "variant": "signature", "kind": 4096, @@ -95873,7 +97485,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, + "line": 100, "character": 81 } ], @@ -95886,7 +97498,7 @@ "typeArguments": [ { "type": "reference", - "target": 1579, + "target": 1581, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -95910,7 +97522,7 @@ "typeArguments": [ { "type": "reference", - "target": 1579, + "target": 1581, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -95923,7 +97535,7 @@ ] }, { - "id": 1702, + "id": 1704, "name": "Session", "variant": "reference", "kind": 4194304, @@ -95931,14 +97543,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 245, + "line": 234, "character": 17 } ], "target": 42 }, { - "id": 1740, + "id": 1742, "name": "User", "variant": "reference", "kind": 4194304, @@ -95946,7 +97558,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 360, + "line": 349, "character": 17 } ], @@ -95956,50 +97568,51 @@ "groups": [ { "title": "Enumerations", - "children": [925, 3371, 3376, 3381, 3385] + "children": [925, 3393, 3398, 3403, 3407] }, { "title": "Classes", "children": [ - 2556, 2538, 2661, 2644, 2774, 2628, 2719, 2690, 2735, 2612, 2574, 2753, 2592, 912, 890, - 879, 901, 1124, 1222, 1569, 57, 830, 141, 729, 559, 2800, 3130, 2791, 850, 941, 3397 + 2561, 2543, 2666, 2649, 2796, 2633, 2724, 2695, 2758, 2740, 2617, 2579, 2775, 2597, 912, + 890, 879, 901, 1124, 1221, 1571, 57, 830, 141, 729, 559, 2822, 3152, 2813, 850, 941, + 3419 ] }, { "title": "Interfaces", "children": [ - 1748, 1705, 2390, 2490, 42, 15, 1959, 2341, 2094, 2226, 2510, 2023, 2164, 2144, 1762, - 1112, 1732, 1741, 1708, 1737, 1893, 1885, 1901, 3409, 3459 + 1750, 1707, 2392, 2492, 42, 15, 1961, 2343, 2096, 2228, 2512, 2025, 2166, 2146, 1764, + 1112, 1734, 1743, 1710, 1739, 1895, 1887, 1903, 3431, 3481 ] }, { "title": "Type Aliases", "children": [ - 1703, 1587, 1586, 2016, 1808, 2084, 2081, 2091, 2088, 2007, 2011, 2006, 2008, 2009, - 2010, 2126, 2002, 2125, 2127, 2018, 2012, 2003, 2001, 1994, 2380, 2381, 2387, 2388, - 1669, 2486, 2483, 2475, 2476, 2482, 2480, 2473, 2474, 2481, 1660, 1664, 1674, 1678, - 2107, 2286, 2196, 2262, 2330, 2329, 2249, 1122, 1906, 1865, 1866, 1630, 1721, 1720, 868, - 1953, 1943, 1962, 1967, 1963, 1974, 1948, 1937, 1597, 2104, 2128, 2326, 1588, 1993, - 1992, 1990, 1989, 1991, 1975, 2123, 2122, 2124, 1988, 1976, 1987, 1980, 1979, 1981, - 1985, 1904, 2361, 2367, 2180, 2174, 2214, 2178, 2213, 2176, 2179, 2177, 2382, 2377, - 1683, 2250, 2115, 2108, 2427, 2432, 2470, 2436, 2422, 2413, 2418, 2466, 55, 51, 53, - 1638, 1585, 1117, 1121, 1115, 3114, 3128, 3251, 3292, 3299, 3306, 3330, 3311, 3321, - 3340, 3350, 3360, 3369, 2448, 1643, 1652, 2134, 1908, 1772, 1822, 1810, 2442, 1786, - 1791, 1922, 2119, 2173, 1778, 1832, 1848, 1696, 2457, 1640, 1072, 2101, 2307, 2205, - 1699, 1884, 2462, 2453, 1634, 1633, 1883 + 1705, 1589, 1588, 2018, 1810, 2086, 2083, 2093, 2090, 2009, 2013, 2008, 2010, 2011, + 2012, 2128, 2004, 2127, 2129, 2020, 2014, 2005, 2003, 1996, 2382, 2383, 2389, 2390, + 1671, 2488, 2485, 2477, 2478, 2484, 2482, 2475, 2476, 2483, 1662, 1666, 1676, 1680, + 2109, 2288, 2198, 2264, 2332, 2331, 2251, 1122, 1908, 1867, 1868, 1632, 1723, 1722, 868, + 1955, 1945, 1964, 1969, 1965, 1976, 1950, 1939, 1599, 2106, 2130, 2328, 1590, 1995, + 1994, 1992, 1991, 1993, 1977, 2125, 2124, 2126, 1990, 1978, 1989, 1982, 1981, 1983, + 1987, 1906, 2363, 2369, 2182, 2176, 2216, 2180, 2215, 2178, 2181, 2179, 2384, 2379, + 1685, 2252, 2117, 2110, 2429, 2434, 2472, 2438, 2424, 2415, 2420, 2468, 55, 51, 53, + 1640, 1587, 1117, 1121, 1115, 3136, 3150, 3273, 3314, 3321, 3328, 3352, 3333, 3343, + 3362, 3372, 3382, 3391, 2450, 1645, 1654, 2136, 1910, 1774, 1824, 1812, 2444, 1788, + 1793, 1924, 2121, 2175, 1780, 1834, 1850, 1698, 2459, 1642, 1072, 2103, 2309, 2207, + 1701, 1886, 2464, 2455, 1636, 1635, 1885 ] }, { "title": "Variables", - "children": [1559, 1560, 1574, 3390, 2172] + "children": [1561, 1562, 1576, 3412, 2174] }, { "title": "Functions", - "children": [2, 2520, 2517, 2526, 2529, 2532, 2523, 2535, 1561, 1577] + "children": [2, 2522, 2519, 2528, 2531, 2537, 2534, 2525, 2540, 1563, 1579] }, { "title": "References", - "children": [1702, 1740] + "children": [1704, 1742] } ], "sources": [ @@ -96007,7 +97620,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L1" } ] } @@ -100896,69 +102509,73 @@ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "__type.__index" }, - "1153": { + "1152": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.fetch" }, - "1154": { + "1153": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1155": { + "1154": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1156": { + "1155": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "1157": { + "1156": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "1158": { + "1157": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "1159": { + "1158": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "1160": { + "1159": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "1161": { + "1160": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.experimental" }, + "1161": { + "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", + "qualifiedName": "default.signOut" + }, "1162": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.signOut" }, "1163": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.signOut" + "qualifiedName": "jwt" }, "1164": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "jwt" + "qualifiedName": "scope" }, "1165": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "scope" + "qualifiedName": "__type" }, "1166": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1167": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "1168": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.error" + "qualifiedName": "default.inviteUserByEmail" }, "1169": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -100966,27 +102583,27 @@ }, "1170": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.inviteUserByEmail" + "qualifiedName": "email" }, "1171": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "email" + "qualifiedName": "options" }, "1172": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "options" + "qualifiedName": "__type" }, "1173": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1174": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.redirectTo" }, "1175": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "default.generateLink" }, "1176": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -100994,11 +102611,11 @@ }, "1177": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.generateLink" + "qualifiedName": "params" }, "1178": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "params" + "qualifiedName": "default.createUser" }, "1179": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101006,11 +102623,11 @@ }, "1180": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.createUser" + "qualifiedName": "attributes" }, "1181": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "attributes" + "qualifiedName": "default.listUsers" }, "1182": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101018,55 +102635,55 @@ }, "1183": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.listUsers" + "qualifiedName": "params" }, "1184": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "params" + "qualifiedName": "__type" }, "1185": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1186": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1187": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.users" }, "1188": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.users" + "qualifiedName": "__type.aud" }, "1189": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.aud" + "qualifiedName": "__type.error" }, "1190": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "1191": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1192": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1193": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.users" }, "1194": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.users" + "qualifiedName": "__type.error" }, "1195": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.error" + "qualifiedName": "default.getUserById" }, "1196": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101074,11 +102691,11 @@ }, "1197": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.getUserById" + "qualifiedName": "uid" }, "1198": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "uid" + "qualifiedName": "default.updateUserById" }, "1199": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101086,103 +102703,103 @@ }, "1200": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.updateUserById" + "qualifiedName": "uid" }, "1201": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "uid" + "qualifiedName": "attributes" }, "1202": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "attributes" + "qualifiedName": "default.deleteUser" }, "1203": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.deleteUser" }, "1204": { - "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.deleteUser" - }, - "1205": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "id" }, - "1206": { + "1205": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "shouldSoftDelete" }, - "1222": { + "1221": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default" }, - "1224": { + "1223": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.__constructor" }, - "1225": { + "1224": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default" }, - "1226": { + "1225": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "options" }, - "1228": { + "1227": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.admin" }, - "1229": { + "1228": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.mfa" }, - "1230": { + "1229": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.oauth" }, - "1231": { + "1230": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.passkey" }, - "1232": { + "1231": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.storageKey" }, - "1233": { + "1232": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.flowType" }, + "1233": { + "sourceFileName": "../auth-js/src/GoTrueClient.ts", + "qualifiedName": "default.jwks" + }, "1234": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.jwks" }, "1235": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.jwks" + "qualifiedName": "__type" }, "1236": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.keys" }, "1237": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "default.jwks" }, "1238": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.jwks" + "qualifiedName": "value" }, "1239": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "value" + "qualifiedName": "__type" }, "1240": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.keys" }, "1241": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "default.jwks_cached_at" }, "1242": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -101194,55 +102811,55 @@ }, "1244": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.jwks_cached_at" + "qualifiedName": "value" }, "1245": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "value" + "qualifiedName": "default.autoRefreshToken" }, "1246": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.autoRefreshToken" + "qualifiedName": "default.persistSession" }, "1247": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.persistSession" + "qualifiedName": "default.storage" }, "1248": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.storage" + "qualifiedName": "default.userStorage" }, "1249": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.userStorage" + "qualifiedName": "default.memoryStorage" }, "1250": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.memoryStorage" + "qualifiedName": "__type" }, "1251": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.__index" }, - "1252": { + "1253": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "default.stateChangeEmitters" }, "1254": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.stateChangeEmitters" + "qualifiedName": "default.autoRefreshTicker" }, "1255": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.autoRefreshTicker" + "qualifiedName": "default.autoRefreshTickTimeout" }, "1256": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.autoRefreshTickTimeout" + "qualifiedName": "default.visibilityChangedCallback" }, "1257": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.visibilityChangedCallback" + "qualifiedName": "__type" }, "1258": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -101250,11 +102867,11 @@ }, "1259": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "default.refreshingDeferred" }, "1260": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.refreshingDeferred" + "qualifiedName": "default._sessionRemovalEpoch" }, "1261": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -102112,45 +103729,45 @@ "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.stopAutoRefresh" }, - "1523": { + "1506": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.getClaims" + "qualifiedName": "default.dispose" }, - "1524": { + "1507": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.getClaims" + "qualifiedName": "default.dispose" }, "1525": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "jwt" + "qualifiedName": "default.getClaims" }, "1526": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "options" + "qualifiedName": "default.getClaims" }, "1527": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "jwt" }, "1528": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "options" }, "1529": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.allowExpired" + "qualifiedName": "__type" }, "1530": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.jwks" + "qualifiedName": "__type.keys" }, "1531": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.allowExpired" }, "1532": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "__type.jwks" }, "1533": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -102158,7 +103775,7 @@ }, "1534": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.keys" }, "1535": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -102166,903 +103783,903 @@ }, "1536": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.claims" + "qualifiedName": "__type.data" }, "1537": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.header" + "qualifiedName": "__type" }, "1538": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.signature" + "qualifiedName": "__type.claims" }, "1539": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type.header" }, "1540": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signature" }, "1541": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "1542": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "1543": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1544": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "1545": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "1546": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.signInWithPasskey" + "qualifiedName": "__type.data" }, "1547": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.signInWithPasskey" + "qualifiedName": "__type.error" }, "1548": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "credentials" + "qualifiedName": "default.signInWithPasskey" }, "1549": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.registerPasskey" + "qualifiedName": "default.signInWithPasskey" }, "1550": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.registerPasskey" + "qualifiedName": "credentials" }, "1551": { + "sourceFileName": "../auth-js/src/GoTrueClient.ts", + "qualifiedName": "default.registerPasskey" + }, + "1552": { + "sourceFileName": "../auth-js/src/GoTrueClient.ts", + "qualifiedName": "default.registerPasskey" + }, + "1553": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "1559": { + "1561": { "sourceFileName": "../auth-js/src/AuthAdminApi.ts", "qualifiedName": "AuthAdminApi" }, - "1560": { + "1562": { "sourceFileName": "../auth-js/src/AuthClient.ts", "qualifiedName": "AuthClient" }, - "1561": { + "1563": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "navigatorLock" }, - "1562": { + "1564": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "navigatorLock" }, - "1563": { + "1565": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "R" }, - "1564": { + "1566": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "name" }, - "1565": { + "1567": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "acquireTimeout" }, - "1566": { + "1568": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "fn" }, - "1567": { + "1569": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1568": { + "1570": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1569": { + "1571": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "NavigatorLockAcquireTimeoutError" }, - "1570": { + "1572": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "LockAcquireTimeoutError.__constructor" }, - "1571": { + "1573": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "NavigatorLockAcquireTimeoutError" }, - "1572": { + "1574": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "message" }, - "1573": { + "1575": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout" }, - "1574": { + "1576": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "internals" }, - "1575": { + "1577": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1576": { + "1578": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type.debug" }, - "1577": { + "1579": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "processLock" }, - "1578": { + "1580": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "processLock" }, - "1579": { + "1581": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "R" }, - "1580": { + "1582": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "name" }, - "1581": { + "1583": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "acquireTimeout" }, - "1582": { + "1584": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "fn" }, - "1583": { + "1585": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1584": { + "1586": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1585": { + "1587": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Provider" }, - "1586": { + "1588": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthChangeEventMFA" }, - "1587": { + "1589": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthChangeEvent" }, - "1588": { + "1590": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "LockFunc" }, - "1589": { + "1591": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1590": { + "1592": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1591": { + "1593": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "name" }, - "1592": { + "1594": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "acquireTimeout" }, - "1593": { + "1595": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "fn" }, - "1594": { + "1596": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1595": { + "1597": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1596": { + "1598": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "R" }, - "1597": { + "1599": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueClientOptions" }, - "1598": { + "1600": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1599": { + "1601": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1600": { + "1602": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.headers" }, - "1601": { + "1603": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1602": { + "1604": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.__index" }, - "1604": { + "1606": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.storageKey" }, - "1605": { + "1607": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.detectSessionInUrl" }, - "1606": { + "1608": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1607": { + "1609": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1608": { + "1610": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "url" }, - "1609": { + "1611": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "params" }, - "1610": { + "1612": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1611": { + "1613": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.__index" }, - "1613": { + "1615": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.autoRefreshToken" }, - "1614": { + "1616": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.persistSession" }, - "1615": { + "1617": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.storage" }, - "1616": { + "1618": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.userStorage" }, - "1617": { + "1619": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.fetch" }, - "1618": { + "1620": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.flowType" }, - "1619": { + "1621": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.debug" }, - "1620": { + "1622": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1621": { + "1623": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1622": { + "1624": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "message" }, - "1623": { + "1625": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "args" }, - "1624": { + "1626": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.lock" }, - "1625": { + "1627": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.hasCustomAuthorizationHeader" }, - "1626": { + "1628": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.throwOnError" }, - "1627": { + "1629": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.lockAcquireTimeout" }, - "1628": { + "1630": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.skipAutoInitialize" }, - "1629": { + "1631": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.experimental" }, - "1630": { + "1632": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "ExperimentalFeatureFlags" }, - "1631": { + "1633": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1632": { + "1634": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.passkey" }, - "1633": { + "1635": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "WeakPasswordReasons" }, - "1634": { + "1636": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "WeakPassword" }, - "1635": { + "1637": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1636": { + "1638": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.reasons" }, - "1637": { + "1639": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.message" }, - "1638": { + "1640": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Prettify" }, - "1639": { + "1641": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1640": { + "1642": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "StrictOmit" }, - "1641": { + "1643": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1642": { + "1644": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "K" }, - "1643": { + "1645": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "RequestResult" }, - "1644": { + "1646": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1645": { + "1647": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1646": { + "1648": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1647": { + "1649": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1648": { + "1650": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1649": { + "1651": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1650": { + "1652": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1651": { + "1653": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "ErrorType" }, - "1652": { + "1654": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "RequestResultSafeDestructure" }, - "1653": { + "1655": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1654": { + "1656": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1655": { + "1657": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1656": { + "1658": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1657": { + "1659": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1658": { + "1660": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1659": { + "1661": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1660": { + "1662": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthResponse" }, - "1661": { + "1663": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1662": { + "1664": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1663": { + "1665": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1664": { + "1666": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthResponsePassword" }, - "1665": { + "1667": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1666": { + "1668": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1667": { + "1669": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1668": { + "1670": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.weak_password" }, - "1669": { + "1671": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthOtpResponse" }, - "1670": { + "1672": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1671": { + "1673": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1672": { + "1674": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1673": { + "1675": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.messageId" }, - "1674": { + "1676": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthTokenResponse" }, - "1675": { + "1677": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1676": { + "1678": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1677": { + "1679": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1678": { + "1680": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthTokenResponsePassword" }, - "1679": { + "1681": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1680": { + "1682": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1681": { + "1683": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1682": { + "1684": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.weakPassword" }, - "1683": { + "1685": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthResponse" }, - "1684": { + "1686": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1685": { + "1687": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1686": { + "1688": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1687": { + "1689": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider" }, - "1688": { + "1690": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1689": { + "1691": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1690": { + "1692": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1691": { + "1693": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1692": { + "1694": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1693": { + "1695": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider" }, - "1694": { + "1696": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1695": { + "1697": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1696": { + "1698": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SSOResponse" }, - "1697": { + "1699": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1698": { + "1700": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1699": { + "1701": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserResponse" }, - "1700": { + "1702": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1701": { + "1703": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1702": { + "1704": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Session" }, - "1703": { + "1705": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMRMethod" }, - "1704": { + "1706": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1705": { + "1707": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMREntry" }, - "1706": { + "1708": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMREntry.method" }, - "1707": { + "1709": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMREntry.timestamp" }, - "1708": { + "1710": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity" }, - "1709": { + "1711": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.id" }, - "1710": { + "1712": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.user_id" }, - "1711": { + "1713": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.identity_data" }, - "1712": { + "1714": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1713": { + "1715": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.__index" }, - "1715": { + "1717": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.identity_id" }, - "1716": { + "1718": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.provider" }, - "1717": { + "1719": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.created_at" }, - "1718": { + "1720": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.last_sign_in_at" }, - "1719": { + "1721": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.updated_at" }, - "1720": { + "1722": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "FactorType" }, - "1721": { + "1723": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Factor" }, - "1722": { + "1724": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1723": { + "1725": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.id" }, - "1724": { + "1726": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.friendly_name" }, - "1725": { + "1727": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.factor_type" }, - "1726": { + "1728": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.status" }, - "1727": { + "1729": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.created_at" }, - "1728": { + "1730": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.updated_at" }, - "1729": { + "1731": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.last_challenged_at" }, - "1730": { + "1732": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Type" }, - "1731": { + "1733": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Status" }, - "1732": { + "1734": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata" }, - "1733": { + "1735": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata.provider" }, - "1734": { + "1736": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata.providers" }, - "1735": { + "1737": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata.__index" }, - "1737": { + "1739": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserMetadata" }, - "1738": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserMetadata.__index" - }, "1740": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "User" - }, - "1741": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes" + "qualifiedName": "UserMetadata.__index" }, "1742": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.current_password" + "qualifiedName": "User" }, "1743": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.email" + "qualifiedName": "UserAttributes" }, "1744": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.phone" + "qualifiedName": "UserAttributes.current_password" }, "1745": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.password" + "qualifiedName": "UserAttributes.email" }, "1746": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.nonce" + "qualifiedName": "UserAttributes.phone" }, "1747": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.data" + "qualifiedName": "UserAttributes.password" }, "1748": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes" + "qualifiedName": "UserAttributes.nonce" }, "1749": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.user_metadata" + "qualifiedName": "UserAttributes.data" }, "1750": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.app_metadata" + "qualifiedName": "AdminUserAttributes" }, "1751": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.email_confirm" + "qualifiedName": "AdminUserAttributes.user_metadata" }, "1752": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.phone_confirm" + "qualifiedName": "AdminUserAttributes.app_metadata" }, "1753": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.ban_duration" + "qualifiedName": "AdminUserAttributes.email_confirm" }, "1754": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.role" + "qualifiedName": "AdminUserAttributes.phone_confirm" }, "1755": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.password_hash" + "qualifiedName": "AdminUserAttributes.ban_duration" }, "1756": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.id" + "qualifiedName": "AdminUserAttributes.role" }, "1757": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "nonce" + "qualifiedName": "AdminUserAttributes.password_hash" }, "1758": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "email" + "qualifiedName": "AdminUserAttributes.id" }, "1759": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "password" + "qualifiedName": "nonce" }, "1760": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "phone" + "qualifiedName": "email" }, "1761": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "current_password" + "qualifiedName": "password" }, "1762": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription" + "qualifiedName": "phone" }, "1763": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription.id" + "qualifiedName": "current_password" }, "1764": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription.callback" + "qualifiedName": "Subscription" }, "1765": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "Subscription.id" }, "1766": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "Subscription.callback" }, "1767": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "event" + "qualifiedName": "__type" }, "1768": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "session" + "qualifiedName": "__type" }, "1769": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription.unsubscribe" + "qualifiedName": "event" }, "1770": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "session" }, "1771": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "Subscription.unsubscribe" }, "1772": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInAnonymouslyCredentials" + "qualifiedName": "__type" }, "1773": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103070,7 +104687,7 @@ }, "1774": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignInAnonymouslyCredentials" }, "1775": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103078,23 +104695,23 @@ }, "1776": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.options" }, "1777": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1778": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignUpWithPasswordCredentials" + "qualifiedName": "__type.data" }, "1779": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1780": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignUpWithPasswordCredentials" }, "1781": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103102,31 +104719,31 @@ }, "1782": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.emailRedirectTo" + "qualifiedName": "__type.options" }, "1783": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1784": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.emailRedirectTo" }, "1785": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.channel" + "qualifiedName": "__type.data" }, "1786": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithPasswordCredentials" + "qualifiedName": "__type.captchaToken" }, "1787": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.channel" }, "1788": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignInWithPasswordCredentials" }, "1789": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103134,87 +104751,87 @@ }, "1790": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1791": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithPasswordlessCredentials" + "qualifiedName": "__type" }, "1792": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1793": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "SignInWithPasswordlessCredentials" }, "1794": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1795": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.email" }, "1796": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.emailRedirectTo" + "qualifiedName": "__type.options" }, "1797": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.shouldCreateUser" + "qualifiedName": "__type" }, "1798": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.emailRedirectTo" }, "1799": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.shouldCreateUser" }, "1800": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1801": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.phone" + "qualifiedName": "__type.captchaToken" }, "1802": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1803": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.phone" }, "1804": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.shouldCreateUser" + "qualifiedName": "__type.options" }, "1805": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1806": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.shouldCreateUser" }, "1807": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.channel" + "qualifiedName": "__type.data" }, "1808": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthFlowType" + "qualifiedName": "__type.captchaToken" }, "1809": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.channel" }, "1810": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithOAuthCredentials" + "qualifiedName": "AuthFlowType" }, "1811": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103222,51 +104839,51 @@ }, "1812": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.provider" + "qualifiedName": "SignInWithOAuthCredentials" }, "1813": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1814": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.provider" }, "1815": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "__type.options" }, "1816": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type" }, "1817": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.queryParams" + "qualifiedName": "__type.redirectTo" }, "1818": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.scopes" }, "1819": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "__type.queryParams" }, - "1821": { + "1820": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "__type" }, - "1822": { + "1821": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithIdTokenCredentials" + "qualifiedName": "__type.__index" }, "1823": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.skipBrowserRedirect" }, "1824": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.provider" + "qualifiedName": "SignInWithIdTokenCredentials" }, "1825": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103274,39 +104891,39 @@ }, "1826": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token" + "qualifiedName": "__type.provider" }, "1827": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.access_token" + "qualifiedName": "__type" }, "1828": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.nonce" + "qualifiedName": "__type.token" }, "1829": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.access_token" }, "1830": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.nonce" }, "1831": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1832": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SolanaWallet" + "qualifiedName": "__type" }, "1833": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1834": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signIn" + "qualifiedName": "SolanaWallet" }, "1835": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103314,23 +104931,23 @@ }, "1836": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signIn" }, "1837": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "inputs" + "qualifiedName": "__type" }, "1838": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.publicKey" + "qualifiedName": "__type" }, "1839": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "inputs" }, "1840": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.toBase58" + "qualifiedName": "__type.publicKey" }, "1841": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103338,11 +104955,11 @@ }, "1842": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.toBase58" }, "1843": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signMessage" + "qualifiedName": "__type" }, "1844": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103350,251 +104967,251 @@ }, "1845": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signMessage" }, "1846": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "message" + "qualifiedName": "__type" }, "1847": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "encoding" + "qualifiedName": "__type" }, "1848": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SolanaWeb3Credentials" + "qualifiedName": "message" }, "1849": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "encoding" }, "1850": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "SolanaWeb3Credentials" }, "1851": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.wallet" + "qualifiedName": "__type" }, "1852": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.statement" + "qualifiedName": "__type.chain" }, "1853": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.wallet" }, "1854": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.statement" }, "1855": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.url" + "qualifiedName": "__type.options" }, "1856": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1857": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signInWithSolana" + "qualifiedName": "__type.url" }, "1858": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1859": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "__type.signInWithSolana" }, "1860": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.message" + "qualifiedName": "__type" }, "1861": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signature" + "qualifiedName": "__type.chain" }, "1862": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.message" }, "1863": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signature" }, "1864": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1865": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "EthereumWallet" + "qualifiedName": "__type" }, "1866": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "EthereumWeb3Credentials" + "qualifiedName": "__type.captchaToken" }, "1867": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "EthereumWallet" }, "1868": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "EthereumWeb3Credentials" }, "1869": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.wallet" + "qualifiedName": "__type" }, "1870": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.statement" + "qualifiedName": "__type.chain" }, "1871": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.wallet" }, "1872": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.statement" }, "1873": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.url" + "qualifiedName": "__type.options" }, "1874": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1875": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signInWithEthereum" + "qualifiedName": "__type.url" }, "1876": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1877": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "__type.signInWithEthereum" }, "1878": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.message" + "qualifiedName": "__type" }, "1879": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signature" + "qualifiedName": "__type.chain" }, "1880": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.message" }, "1881": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signature" }, "1882": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1883": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Web3Credentials" + "qualifiedName": "__type" }, "1884": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyOtpParams" + "qualifiedName": "__type.captchaToken" }, "1885": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams" + "qualifiedName": "Web3Credentials" }, "1886": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.phone" + "qualifiedName": "VerifyOtpParams" }, "1887": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.token" + "qualifiedName": "VerifyMobileOtpParams" }, "1888": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.type" + "qualifiedName": "VerifyMobileOtpParams.phone" }, "1889": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.options" + "qualifiedName": "VerifyMobileOtpParams.token" }, "1890": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "VerifyMobileOtpParams.type" }, "1891": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "VerifyMobileOtpParams.options" }, "1892": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1893": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams" + "qualifiedName": "__type.redirectTo" }, "1894": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.email" + "qualifiedName": "__type.captchaToken" }, "1895": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.token" + "qualifiedName": "VerifyEmailOtpParams" }, "1896": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.type" + "qualifiedName": "VerifyEmailOtpParams.email" }, "1897": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.options" + "qualifiedName": "VerifyEmailOtpParams.token" }, "1898": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "VerifyEmailOtpParams.type" }, "1899": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "VerifyEmailOtpParams.options" }, "1900": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1901": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyTokenHashParams" + "qualifiedName": "__type.redirectTo" }, "1902": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyTokenHashParams.token_hash" + "qualifiedName": "__type.captchaToken" }, "1903": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyTokenHashParams.type" + "qualifiedName": "VerifyTokenHashParams" }, "1904": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MobileOtpType" + "qualifiedName": "VerifyTokenHashParams.token_hash" }, "1905": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "VerifyTokenHashParams.type" }, "1906": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "EmailOtpType" + "qualifiedName": "MobileOtpType" }, "1907": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103602,7 +105219,7 @@ }, "1908": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "ResendParams" + "qualifiedName": "EmailOtpType" }, "1909": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103610,307 +105227,307 @@ }, "1910": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "ResendParams" }, "1911": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1912": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1913": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.email" }, "1914": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.emailRedirectTo" + "qualifiedName": "__type.options" }, "1915": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1916": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.emailRedirectTo" }, "1917": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "__type.captchaToken" }, "1918": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.phone" + "qualifiedName": "__type" }, "1919": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1920": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.phone" }, "1921": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1922": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithSSO" + "qualifiedName": "__type" }, "1923": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1924": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.providerId" + "qualifiedName": "SignInWithSSO" }, "1925": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1926": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.providerId" }, "1927": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "__type.options" }, "1928": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1929": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "__type.redirectTo" }, "1930": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1931": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.domain" + "qualifiedName": "__type.skipBrowserRedirect" }, "1932": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1933": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.domain" }, "1934": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "__type.options" }, "1935": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1936": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "__type.redirectTo" }, "1937": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateSignupLinkParams" + "qualifiedName": "__type.captchaToken" }, "1938": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.skipBrowserRedirect" }, "1939": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateSignupLinkParams" }, "1940": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1941": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.password" + "qualifiedName": "__type.type" }, "1942": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.email" }, "1943": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateInviteOrMagiclinkParams" + "qualifiedName": "__type.password" }, "1944": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.options" }, "1945": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateInviteOrMagiclinkParams" }, "1946": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1947": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1948": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateRecoveryLinkParams" + "qualifiedName": "__type.email" }, "1949": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.options" }, "1950": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateRecoveryLinkParams" }, "1951": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1952": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1953": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateEmailChangeLinkParams" + "qualifiedName": "__type.email" }, "1954": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.options" }, "1955": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateEmailChangeLinkParams" }, "1956": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1957": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.newEmail" + "qualifiedName": "__type.type" }, "1958": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.email" }, "1959": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkOptions" + "qualifiedName": "__type.newEmail" }, "1960": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkOptions.data" + "qualifiedName": "__type.options" }, "1961": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkOptions.redirectTo" + "qualifiedName": "GenerateLinkOptions" }, "1962": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkParams" + "qualifiedName": "GenerateLinkOptions.data" }, "1963": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkResponse" + "qualifiedName": "GenerateLinkOptions.redirectTo" }, "1964": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GenerateLinkParams" }, "1965": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.properties" + "qualifiedName": "GenerateLinkResponse" }, "1966": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type" }, "1967": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkProperties" + "qualifiedName": "__type.properties" }, "1968": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.user" }, "1969": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.action_link" + "qualifiedName": "GenerateLinkProperties" }, "1970": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_otp" + "qualifiedName": "__type" }, "1971": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.hashed_token" + "qualifiedName": "__type.action_link" }, "1972": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_to" + "qualifiedName": "__type.email_otp" }, "1973": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.verification_type" + "qualifiedName": "__type.hashed_token" }, "1974": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkType" + "qualifiedName": "__type.redirect_to" }, "1975": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAEnrollParams" + "qualifiedName": "__type.verification_type" }, "1976": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAUnenrollParams" + "qualifiedName": "GenerateLinkType" }, "1977": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "MFAEnrollParams" }, "1978": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.factorId" + "qualifiedName": "MFAUnenrollParams" }, "1979": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyTOTPParams" + "qualifiedName": "__type" }, "1980": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyPhoneParams" + "qualifiedName": "__type.factorId" }, "1981": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyWebauthnParamFields" + "qualifiedName": "MFAVerifyTOTPParams" }, "1982": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "MFAVerifyPhoneParams" }, "1983": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.webauthn" + "qualifiedName": "MFAVerifyWebauthnParamFields" }, "1984": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "1985": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyWebauthnParams" + "qualifiedName": "__type.webauthn" }, "1986": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103918,131 +105535,131 @@ }, "1987": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyParams" + "qualifiedName": "MFAVerifyWebauthnParams" }, "1988": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFATOTPChannel" + "qualifiedName": "T" }, "1989": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeTOTPParams" + "qualifiedName": "MFAVerifyParams" }, "1990": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengePhoneParams" + "qualifiedName": "MFATOTPChannel" }, "1991": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeWebauthnParams" + "qualifiedName": "MFAChallengeTOTPParams" }, "1992": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeParams" + "qualifiedName": "MFAChallengePhoneParams" }, "1993": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeAndVerifyParams" + "qualifiedName": "MFAChallengeWebauthnParams" }, "1994": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAVerifyResponseData" + "qualifiedName": "MFAChallengeParams" }, "1995": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "MFAChallengeAndVerifyParams" }, "1996": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.access_token" + "qualifiedName": "AuthMFAVerifyResponseData" }, "1997": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_type" + "qualifiedName": "__type" }, "1998": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.expires_in" + "qualifiedName": "__type.access_token" }, "1999": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.refresh_token" + "qualifiedName": "__type.token_type" }, "2000": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type.expires_in" }, "2001": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAVerifyResponse" + "qualifiedName": "__type.refresh_token" }, "2002": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAEnrollResponse" + "qualifiedName": "__type.user" }, "2003": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAUnenrollResponse" + "qualifiedName": "AuthMFAVerifyResponse" }, "2004": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthMFAEnrollResponse" }, "2005": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "AuthMFAUnenrollResponse" }, "2006": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeTOTPResponse" + "qualifiedName": "__type" }, "2007": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengePhoneResponse" + "qualifiedName": "__type.id" }, "2008": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeWebauthnResponse" + "qualifiedName": "AuthMFAChallengeTOTPResponse" }, "2009": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON" + "qualifiedName": "AuthMFAChallengePhoneResponse" }, "2010": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeWebauthnServerResponse" + "qualifiedName": "AuthMFAChallengeWebauthnResponse" }, "2011": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeResponse" + "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON" }, "2012": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAListFactorsResponse" + "qualifiedName": "AuthMFAChallengeWebauthnServerResponse" }, "2013": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthMFAChallengeResponse" }, "2014": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.all" + "qualifiedName": "AuthMFAListFactorsResponse" }, "2015": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "2016": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthenticatorAssuranceLevels" + "qualifiedName": "__type.all" }, "2017": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "T" }, "2018": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse" + "qualifiedName": "AuthenticatorAssuranceLevels" }, "2019": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104050,31 +105667,31 @@ }, "2020": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.currentLevel" + "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse" }, "2021": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.nextLevel" + "qualifiedName": "__type" }, "2022": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.currentAuthenticationMethods" + "qualifiedName": "__type.currentLevel" }, "2023": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi" + "qualifiedName": "__type.nextLevel" }, "2024": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.enroll" + "qualifiedName": "__type.currentAuthenticationMethods" }, "2025": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.enroll" + "qualifiedName": "GoTrueMFAApi" }, "2026": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.enroll" }, "2027": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104102,123 +105719,123 @@ }, "2033": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "GoTrueMFAApi.enroll" }, "2034": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "params" }, "2035": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2036": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2037": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "params" }, "2038": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2039": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "data" }, "2040": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "error" }, "2041": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2042": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "data" }, "2043": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "error" }, "2044": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2045": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "params" }, "2046": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2047": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "data" }, "2048": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "error" }, "2049": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2050": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "data" }, "2051": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "error" }, "2052": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2053": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "params" }, "2054": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2055": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "data" }, "2056": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "error" }, "2057": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2058": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "data" }, "2059": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "error" }, "2060": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.verify" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2061": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.verify" + "qualifiedName": "params" }, "2062": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.verify" }, "2063": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104246,1047 +105863,1047 @@ }, "2069": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.unenroll" + "qualifiedName": "GoTrueMFAApi.verify" }, "2070": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.unenroll" + "qualifiedName": "params" }, "2071": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.unenroll" }, "2072": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challengeAndVerify" + "qualifiedName": "GoTrueMFAApi.unenroll" }, "2073": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challengeAndVerify" + "qualifiedName": "params" }, "2074": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.challengeAndVerify" }, "2075": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.listFactors" + "qualifiedName": "GoTrueMFAApi.challengeAndVerify" }, "2076": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.listFactors" + "qualifiedName": "params" }, "2077": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" + "qualifiedName": "GoTrueMFAApi.listFactors" }, "2078": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" + "qualifiedName": "GoTrueMFAApi.listFactors" }, "2079": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "jwt" + "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" }, "2080": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.webauthn" + "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" }, "2081": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminDeleteFactorResponse" + "qualifiedName": "jwt" }, "2082": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.webauthn" }, "2083": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "AuthMFAAdminDeleteFactorResponse" }, "2084": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminDeleteFactorParams" + "qualifiedName": "__type" }, "2085": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.id" }, "2086": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "AuthMFAAdminDeleteFactorParams" }, "2087": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "__type" }, "2088": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminListFactorsResponse" + "qualifiedName": "__type.id" }, "2089": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.userId" }, "2090": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.factors" + "qualifiedName": "AuthMFAAdminListFactorsResponse" }, "2091": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminListFactorsParams" + "qualifiedName": "__type" }, "2092": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.factors" }, "2093": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "AuthMFAAdminListFactorsParams" }, "2094": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi" + "qualifiedName": "__type" }, "2095": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.listFactors" + "qualifiedName": "__type.userId" }, "2096": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.listFactors" + "qualifiedName": "GoTrueAdminMFAApi" }, "2097": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminMFAApi.listFactors" }, "2098": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" + "qualifiedName": "GoTrueAdminMFAApi.listFactors" }, "2099": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" + "qualifiedName": "params" }, "2100": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" }, "2101": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SupportedStorage" + "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" }, "2102": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "params" }, "2103": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.isServer" + "qualifiedName": "SupportedStorage" }, "2104": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "InitializeResult" + "qualifiedName": "__type" }, "2105": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.isServer" }, "2106": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "InitializeResult" }, "2107": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CallRefreshTokenResult" + "qualifiedName": "__type" }, "2108": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Pagination" + "qualifiedName": "__type.error" }, "2109": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "CallRefreshTokenResult" }, "2110": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.nextPage" + "qualifiedName": "Pagination" }, "2111": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.lastPage" + "qualifiedName": "__type" }, "2112": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.total" + "qualifiedName": "__type.nextPage" }, "2113": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "__type.lastPage" + }, + "2114": { + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "__type.total" }, "2115": { + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "__type.__index" + }, + "2117": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "PageParams" }, - "2116": { + "2118": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2117": { + "2119": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.page" }, - "2118": { + "2120": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.perPage" }, - "2119": { + "2121": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SignOut" }, - "2120": { + "2122": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2121": { + "2123": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scope" }, - "2122": { + "2124": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "MFAEnrollTOTPParams" }, - "2123": { + "2125": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "MFAEnrollPhoneParams" }, - "2124": { + "2126": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "MFAEnrollWebauthnParams" }, - "2125": { + "2127": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthMFAEnrollTOTPResponse" }, - "2126": { + "2128": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthMFAEnrollPhoneResponse" }, - "2127": { + "2129": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthMFAEnrollWebauthnResponse" }, - "2128": { + "2130": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtHeader" }, - "2129": { + "2131": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2130": { + "2132": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.alg" }, - "2131": { + "2133": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2132": { + "2134": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.kid" }, - "2133": { + "2135": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.typ" }, - "2134": { + "2136": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "RequiredClaims" }, - "2135": { + "2137": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2136": { + "2138": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iss" }, - "2137": { + "2139": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.sub" }, - "2138": { + "2140": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aud" }, - "2139": { + "2141": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.exp" }, - "2140": { + "2142": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iat" }, - "2141": { + "2143": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.role" }, - "2142": { + "2144": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aal" }, - "2143": { + "2145": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session_id" }, - "2144": { + "2146": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload" }, - "2145": { + "2147": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.email" }, - "2146": { + "2148": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.phone" }, - "2147": { + "2149": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.is_anonymous" }, - "2148": { + "2150": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.jti" }, - "2149": { + "2151": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.nbf" }, - "2150": { + "2152": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.app_metadata" }, - "2151": { + "2153": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.user_metadata" }, - "2152": { + "2154": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.amr" }, - "2153": { + "2155": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.ref" }, - "2154": { + "2156": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iss" }, - "2155": { + "2157": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.sub" }, - "2156": { + "2158": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aud" }, - "2157": { + "2159": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.exp" }, - "2158": { + "2160": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iat" }, - "2159": { + "2161": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.role" }, - "2160": { + "2162": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aal" }, - "2161": { + "2163": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session_id" }, - "2162": { + "2164": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.__index" }, - "2164": { + "2166": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK" }, - "2165": { + "2167": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.kty" }, - "2166": { + "2168": { "sourceFileName": "", "qualifiedName": "__type" }, - "2167": { + "2169": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.key_ops" }, - "2168": { + "2170": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.alg" }, - "2169": { + "2171": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.kid" }, - "2170": { + "2172": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.__index" }, - "2172": { + "2174": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SIGN_OUT_SCOPES" }, - "2173": { + "2175": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SignOutScope" }, - "2174": { + "2176": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientGrantType" }, - "2175": { + "2177": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2176": { + "2178": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientResponseType" }, - "2177": { + "2179": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientType" }, - "2178": { + "2180": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientRegistrationType" }, - "2179": { + "2181": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientTokenEndpointAuthMethod" }, - "2180": { + "2182": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClient" }, - "2181": { + "2183": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2182": { + "2184": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_id" }, - "2183": { + "2185": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_name" }, - "2184": { + "2186": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_secret" }, - "2185": { + "2187": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_type" }, - "2186": { + "2188": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_endpoint_auth_method" }, - "2187": { + "2189": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.registration_type" }, - "2188": { + "2190": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_uri" }, - "2189": { + "2191": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.logo_uri" }, - "2190": { + "2192": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.redirect_uris" }, - "2191": { + "2193": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.grant_types" }, - "2192": { + "2194": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.response_types" }, - "2193": { + "2195": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scope" }, - "2194": { + "2196": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.created_at" }, - "2195": { + "2197": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.updated_at" }, - "2196": { + "2198": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "CreateOAuthClientParams" }, - "2197": { + "2199": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2198": { + "2200": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_name" }, - "2199": { + "2201": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_uri" }, - "2200": { + "2202": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.redirect_uris" }, - "2201": { + "2203": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.grant_types" }, - "2202": { + "2204": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.response_types" }, - "2203": { + "2205": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scope" }, - "2204": { + "2206": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_endpoint_auth_method" }, - "2205": { + "2207": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UpdateOAuthClientParams" }, - "2206": { + "2208": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2207": { + "2209": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_name" }, - "2208": { + "2210": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_uri" }, - "2209": { + "2211": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.logo_uri" }, - "2210": { + "2212": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.redirect_uris" }, - "2211": { + "2213": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.grant_types" }, - "2212": { + "2214": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_endpoint_auth_method" }, - "2213": { + "2215": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientResponse" }, - "2214": { + "2216": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientListResponse" }, - "2215": { + "2217": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2216": { + "2218": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "2217": { + "2219": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2218": { + "2220": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.clients" }, - "2219": { + "2221": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aud" }, - "2220": { + "2222": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "2221": { + "2223": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2222": { + "2224": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "2223": { + "2225": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2224": { + "2226": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.clients" }, - "2225": { + "2227": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "2226": { + "2228": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi" }, - "2227": { + "2229": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.listClients" }, - "2228": { + "2230": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.listClients" }, - "2229": { + "2231": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "params" }, - "2230": { + "2232": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.createClient" }, - "2231": { + "2233": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.createClient" }, - "2232": { + "2234": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "params" }, - "2233": { + "2235": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.getClient" }, - "2234": { + "2236": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.getClient" }, - "2235": { + "2237": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "clientId" }, - "2236": { + "2238": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.updateClient" }, - "2237": { + "2239": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.updateClient" }, - "2238": { + "2240": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "clientId" }, - "2239": { + "2241": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "params" }, - "2240": { + "2242": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.deleteClient" }, - "2241": { + "2243": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.deleteClient" }, - "2242": { + "2244": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "clientId" }, - "2243": { + "2245": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2244": { + "2246": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "2245": { + "2247": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "2246": { + "2248": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret" }, - "2247": { + "2249": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret" }, - "2248": { + "2250": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "clientId" }, - "2249": { + "2251": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "CustomProviderType" }, - "2250": { + "2252": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OIDCDiscoveryDocument" }, - "2251": { + "2253": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2252": { + "2254": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.issuer" }, - "2253": { + "2255": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.authorization_endpoint" }, - "2254": { + "2256": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_endpoint" }, - "2255": { + "2257": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.jwks_uri" }, - "2256": { + "2258": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.userinfo_endpoint" }, - "2257": { + "2259": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.revocation_endpoint" }, - "2258": { + "2260": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.supported_scopes" }, - "2259": { + "2261": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.supported_response_types" }, - "2260": { + "2262": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.supported_subject_types" }, - "2261": { + "2263": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.supported_id_token_signing_algs" }, - "2262": { + "2264": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "CustomOAuthProvider" }, - "2263": { + "2265": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2264": { + "2266": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.id" }, - "2265": { + "2267": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider_type" }, - "2266": { + "2268": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.identifier" }, - "2267": { + "2269": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.name" }, - "2268": { + "2270": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_id" }, - "2269": { + "2271": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.acceptable_client_ids" }, - "2270": { + "2272": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scopes" }, - "2271": { + "2273": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.pkce_enabled" }, - "2272": { + "2274": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.attribute_mapping" }, - "2273": { + "2275": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.authorization_params" }, - "2274": { + "2276": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.enabled" }, - "2275": { + "2277": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.email_optional" }, - "2276": { + "2278": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.issuer" }, - "2277": { + "2279": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.discovery_url" }, - "2278": { + "2280": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.skip_nonce_check" }, - "2279": { + "2281": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.authorization_url" }, - "2280": { + "2282": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_url" }, - "2281": { + "2283": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.userinfo_url" }, - "2282": { + "2284": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.jwks_uri" }, - "2283": { + "2285": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.discovery_document" }, - "2284": { + "2286": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.created_at" }, - "2285": { + "2287": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.updated_at" }, - "2286": { + "2288": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "CreateCustomProviderParams" }, - "2287": { + "2289": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2288": { + "2290": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider_type" }, - "2289": { + "2291": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.identifier" }, - "2290": { + "2292": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.name" }, - "2291": { + "2293": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_id" }, - "2292": { + "2294": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_secret" }, - "2293": { + "2295": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.acceptable_client_ids" }, - "2294": { + "2296": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scopes" }, - "2295": { + "2297": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.pkce_enabled" }, - "2296": { + "2298": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.attribute_mapping" }, - "2297": { + "2299": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.authorization_params" }, - "2298": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.enabled" - }, - "2299": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_optional" - }, "2300": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.issuer" + "qualifiedName": "__type.enabled" }, "2301": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.discovery_url" + "qualifiedName": "__type.email_optional" }, "2302": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skip_nonce_check" + "qualifiedName": "__type.issuer" }, "2303": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_url" + "qualifiedName": "__type.discovery_url" }, "2304": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_url" + "qualifiedName": "__type.skip_nonce_check" }, "2305": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userinfo_url" + "qualifiedName": "__type.authorization_url" }, "2306": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.jwks_uri" + "qualifiedName": "__type.token_url" }, "2307": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UpdateCustomProviderParams" + "qualifiedName": "__type.userinfo_url" }, "2308": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.jwks_uri" }, "2309": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.name" + "qualifiedName": "UpdateCustomProviderParams" }, "2310": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_id" + "qualifiedName": "__type" }, "2311": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_secret" + "qualifiedName": "__type.name" }, "2312": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.acceptable_client_ids" + "qualifiedName": "__type.client_id" }, "2313": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type.client_secret" }, "2314": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.pkce_enabled" + "qualifiedName": "__type.acceptable_client_ids" }, "2315": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.attribute_mapping" + "qualifiedName": "__type.scopes" }, "2316": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_params" + "qualifiedName": "__type.pkce_enabled" }, "2317": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.enabled" + "qualifiedName": "__type.attribute_mapping" }, "2318": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_optional" + "qualifiedName": "__type.authorization_params" }, "2319": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.issuer" + "qualifiedName": "__type.enabled" }, "2320": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.discovery_url" + "qualifiedName": "__type.email_optional" }, "2321": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skip_nonce_check" + "qualifiedName": "__type.issuer" }, "2322": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_url" + "qualifiedName": "__type.discovery_url" }, "2323": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_url" + "qualifiedName": "__type.skip_nonce_check" }, "2324": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userinfo_url" + "qualifiedName": "__type.authorization_url" }, "2325": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.jwks_uri" + "qualifiedName": "__type.token_url" }, "2326": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "ListCustomProvidersParams" + "qualifiedName": "__type.userinfo_url" }, "2327": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.jwks_uri" }, "2328": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "ListCustomProvidersParams" }, "2329": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CustomProviderResponse" + "qualifiedName": "__type" }, "2330": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CustomProviderListResponse" + "qualifiedName": "__type.type" }, "2331": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "CustomProviderResponse" }, "2332": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "CustomProviderListResponse" }, "2333": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105294,19 +106911,19 @@ }, "2334": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.providers" + "qualifiedName": "__type.data" }, "2335": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2336": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.providers" }, "2337": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "2338": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105314,427 +106931,427 @@ }, "2339": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.providers" + "qualifiedName": "__type.data" }, "2340": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2341": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi" + "qualifiedName": "__type.providers" }, "2342": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" + "qualifiedName": "__type.error" }, "2343": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" + "qualifiedName": "GoTrueAdminCustomProvidersApi" }, "2344": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" }, "2345": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" + "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" }, "2346": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" + "qualifiedName": "params" }, "2347": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" }, "2348": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" + "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" }, "2349": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" + "qualifiedName": "params" }, "2350": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "identifier" + "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" }, "2351": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" + "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" }, "2352": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" + "qualifiedName": "identifier" }, "2353": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "identifier" + "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" }, "2354": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" }, "2355": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" + "qualifiedName": "identifier" }, "2356": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" + "qualifiedName": "params" }, "2357": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "identifier" + "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" }, "2358": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" }, "2359": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "identifier" }, "2360": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2361": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthAuthorizationClient" + "qualifiedName": "__type.data" }, "2362": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.error" }, "2363": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "OAuthAuthorizationClient" }, "2364": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.name" + "qualifiedName": "__type" }, "2365": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.uri" + "qualifiedName": "__type.id" }, "2366": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.logo_uri" + "qualifiedName": "__type.name" }, "2367": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthAuthorizationDetails" + "qualifiedName": "__type.uri" }, "2368": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.logo_uri" }, "2369": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_id" + "qualifiedName": "OAuthAuthorizationDetails" }, "2370": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_uri" + "qualifiedName": "__type" }, "2371": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client" + "qualifiedName": "__type.authorization_id" }, "2372": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type.redirect_uri" }, "2373": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.client" }, "2374": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "__type.user" }, "2375": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "2376": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scope" + "qualifiedName": "__type.id" }, "2377": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthRedirect" + "qualifiedName": "__type.email" }, "2378": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.scope" }, "2379": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_url" + "qualifiedName": "OAuthRedirect" }, "2380": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthAuthorizationDetailsResponse" + "qualifiedName": "__type" }, "2381": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthConsentResponse" + "qualifiedName": "__type.redirect_url" }, "2382": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthGrant" + "qualifiedName": "AuthOAuthAuthorizationDetailsResponse" }, "2383": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthOAuthConsentResponse" }, "2384": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client" + "qualifiedName": "OAuthGrant" }, "2385": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type" }, "2386": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.granted_at" + "qualifiedName": "__type.client" }, "2387": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthGrantsResponse" + "qualifiedName": "__type.scopes" }, "2388": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthRevokeGrantResponse" + "qualifiedName": "__type.granted_at" }, "2389": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthOAuthGrantsResponse" }, "2390": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi" + "qualifiedName": "AuthOAuthRevokeGrantResponse" }, "2391": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" + "qualifiedName": "__type" }, "2392": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" + "qualifiedName": "AuthOAuthServerApi" }, "2393": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "authorizationId" + "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" }, "2394": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.approveAuthorization" + "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" }, "2395": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.approveAuthorization" + "qualifiedName": "authorizationId" }, "2396": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "authorizationId" + "qualifiedName": "AuthOAuthServerApi.approveAuthorization" }, "2397": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "options" + "qualifiedName": "AuthOAuthServerApi.approveAuthorization" }, "2398": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "authorizationId" }, "2399": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "options" }, "2400": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.denyAuthorization" + "qualifiedName": "__type" }, "2401": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.denyAuthorization" + "qualifiedName": "__type.skipBrowserRedirect" }, "2402": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "authorizationId" + "qualifiedName": "AuthOAuthServerApi.denyAuthorization" }, "2403": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "options" + "qualifiedName": "AuthOAuthServerApi.denyAuthorization" }, "2404": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "authorizationId" }, "2405": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "options" }, "2406": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.listGrants" + "qualifiedName": "__type" }, "2407": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.listGrants" + "qualifiedName": "__type.skipBrowserRedirect" }, "2408": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.revokeGrant" + "qualifiedName": "AuthOAuthServerApi.listGrants" }, "2409": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.revokeGrant" + "qualifiedName": "AuthOAuthServerApi.listGrants" }, "2410": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "options" + "qualifiedName": "AuthOAuthServerApi.revokeGrant" }, "2411": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthOAuthServerApi.revokeGrant" }, "2412": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.clientId" + "qualifiedName": "options" }, "2413": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyRegistrationOptionsResponse" + "qualifiedName": "__type" }, "2414": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.clientId" }, "2415": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyRegistrationOptionsResponse" }, "2416": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "2417": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.expires_at" + "qualifiedName": "__type.challenge_id" }, "2418": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyRegistrationVerifyParams" + "qualifiedName": "__type.options" }, "2419": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.expires_at" }, "2420": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyRegistrationVerifyParams" }, "2421": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2422": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyMetadata" + "qualifiedName": "__type.challenge_id" }, "2423": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2424": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "PasskeyMetadata" }, "2425": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.friendly_name" + "qualifiedName": "__type" }, "2426": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.created_at" + "qualifiedName": "__type.id" }, "2427": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyAuthenticationOptionsResponse" + "qualifiedName": "__type.friendly_name" }, "2428": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.created_at" }, "2429": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyAuthenticationOptionsResponse" }, "2430": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "2431": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.expires_at" + "qualifiedName": "__type.challenge_id" }, "2432": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyAuthenticationVerifyParams" + "qualifiedName": "__type.options" }, "2433": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.expires_at" }, "2434": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyAuthenticationVerifyParams" }, "2435": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2436": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyListItem" + "qualifiedName": "__type.challenge_id" }, "2437": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2438": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "PasskeyListItem" }, "2439": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.friendly_name" + "qualifiedName": "__type" }, "2440": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.created_at" + "qualifiedName": "__type.id" }, "2441": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.last_used_at" + "qualifiedName": "__type.friendly_name" }, "2442": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithPasskeyCredentials" + "qualifiedName": "__type.created_at" }, "2443": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.last_used_at" }, "2444": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignInWithPasskeyCredentials" }, "2445": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105742,23 +107359,23 @@ }, "2446": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "2447": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signal" + "qualifiedName": "__type" }, "2448": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "RegisterPasskeyCredentials" + "qualifiedName": "__type.captchaToken" }, "2449": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signal" }, "2450": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "RegisterPasskeyCredentials" }, "2451": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105766,35 +107383,35 @@ }, "2452": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signal" + "qualifiedName": "__type.options" }, "2453": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyPasskeyRegistrationParams" + "qualifiedName": "__type" }, "2454": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signal" }, "2455": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challengeId" + "qualifiedName": "VerifyPasskeyRegistrationParams" }, "2456": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2457": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "StartPasskeyAuthenticationParams" + "qualifiedName": "__type.challengeId" }, "2458": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2459": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "StartPasskeyAuthenticationParams" }, "2460": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105802,1811 +107419,1819 @@ }, "2461": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "2462": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyPasskeyAuthenticationParams" + "qualifiedName": "__type" }, "2463": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "2464": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challengeId" + "qualifiedName": "VerifyPasskeyAuthenticationParams" }, "2465": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2466": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyUpdateParams" + "qualifiedName": "__type.challengeId" }, "2467": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2468": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.passkeyId" + "qualifiedName": "PasskeyUpdateParams" }, "2469": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.friendlyName" + "qualifiedName": "__type" }, "2470": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyDeleteParams" + "qualifiedName": "__type.passkeyId" }, "2471": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.friendlyName" }, "2472": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.passkeyId" + "qualifiedName": "PasskeyDeleteParams" }, "2473": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyRegistrationOptionsResponse" + "qualifiedName": "__type" }, "2474": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyRegistrationVerifyResponse" + "qualifiedName": "__type.passkeyId" }, "2475": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAuthenticationOptionsResponse" + "qualifiedName": "AuthPasskeyRegistrationOptionsResponse" }, "2476": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAuthenticationVerifyResponse" + "qualifiedName": "AuthPasskeyRegistrationVerifyResponse" }, "2477": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthPasskeyAuthenticationOptionsResponse" }, "2478": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.session" + "qualifiedName": "AuthPasskeyAuthenticationVerifyResponse" }, "2479": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type" }, "2480": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyListResponse" + "qualifiedName": "__type.session" }, "2481": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyUpdateResponse" + "qualifiedName": "__type.user" }, "2482": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyDeleteResponse" + "qualifiedName": "AuthPasskeyListResponse" }, "2483": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAdminListParams" + "qualifiedName": "AuthPasskeyUpdateResponse" }, "2484": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthPasskeyDeleteResponse" }, "2485": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "AuthPasskeyAdminListParams" }, "2486": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAdminDeleteParams" + "qualifiedName": "__type" }, "2487": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.userId" }, "2488": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "AuthPasskeyAdminDeleteParams" }, "2489": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.passkeyId" + "qualifiedName": "__type" }, "2490": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi" + "qualifiedName": "__type.userId" }, "2491": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startRegistration" + "qualifiedName": "__type.passkeyId" }, "2492": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startRegistration" + "qualifiedName": "AuthPasskeyApi" }, "2493": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyRegistration" + "qualifiedName": "AuthPasskeyApi.startRegistration" }, "2494": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyRegistration" + "qualifiedName": "AuthPasskeyApi.startRegistration" }, "2495": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.verifyRegistration" }, "2496": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startAuthentication" + "qualifiedName": "AuthPasskeyApi.verifyRegistration" }, "2497": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startAuthentication" + "qualifiedName": "params" }, "2498": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.startAuthentication" }, "2499": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyAuthentication" + "qualifiedName": "AuthPasskeyApi.startAuthentication" }, "2500": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyAuthentication" + "qualifiedName": "params" }, "2501": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.verifyAuthentication" }, "2502": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.list" + "qualifiedName": "AuthPasskeyApi.verifyAuthentication" }, "2503": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.list" + "qualifiedName": "params" }, "2504": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.update" + "qualifiedName": "AuthPasskeyApi.list" }, "2505": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.update" + "qualifiedName": "AuthPasskeyApi.list" }, "2506": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.update" }, "2507": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.delete" + "qualifiedName": "AuthPasskeyApi.update" }, "2508": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.delete" + "qualifiedName": "params" }, "2509": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.delete" }, "2510": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi" + "qualifiedName": "AuthPasskeyApi.delete" }, "2511": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" + "qualifiedName": "params" }, "2512": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" + "qualifiedName": "GoTrueAdminPasskeyApi" }, "2513": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" }, "2514": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" + "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" }, "2515": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" + "qualifiedName": "params" }, "2516": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" }, "2517": { - "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthError" + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" }, "2518": { - "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthError" + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "params" }, "2519": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthError" }, "2520": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthApiError" + "qualifiedName": "isAuthError" }, "2521": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthApiError" + "qualifiedName": "error" }, "2522": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthApiError" }, "2523": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthSessionMissingError" + "qualifiedName": "isAuthApiError" }, "2524": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthSessionMissingError" + "qualifiedName": "error" }, "2525": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthSessionMissingError" }, "2526": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthImplicitGrantRedirectError" + "qualifiedName": "isAuthSessionMissingError" }, "2527": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthImplicitGrantRedirectError" + "qualifiedName": "error" }, "2528": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthImplicitGrantRedirectError" }, "2529": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthPKCECodeVerifierMissingError" + "qualifiedName": "isAuthImplicitGrantRedirectError" }, "2530": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthPKCECodeVerifierMissingError" + "qualifiedName": "error" }, "2531": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthPKCECodeVerifierMissingError" }, "2532": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthRetryableFetchError" + "qualifiedName": "isAuthPKCECodeVerifierMissingError" }, "2533": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthRetryableFetchError" + "qualifiedName": "error" }, "2534": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthRetryableFetchError" }, "2535": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "isAuthRetryableFetchError" }, "2536": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "error" }, "2537": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthRefreshDiscardedError" }, "2538": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "isAuthRefreshDiscardedError" }, "2539": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.__constructor" + "qualifiedName": "error" }, "2540": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "isAuthWeakPasswordError" }, "2541": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "message" + "qualifiedName": "isAuthWeakPasswordError" }, "2542": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "status" + "qualifiedName": "error" }, "2543": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "code" + "qualifiedName": "AuthError" }, "2544": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.code" + "qualifiedName": "AuthError.__constructor" }, "2545": { - "sourceFileName": "", - "qualifiedName": "__type" + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError" }, "2546": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.status" + "qualifiedName": "message" }, "2547": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.__isAuthError" + "qualifiedName": "status" }, "2548": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.toJSON" + "qualifiedName": "code" }, "2549": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.toJSON" + "qualifiedName": "AuthError.code" }, "2550": { - "sourceFileName": "../auth-js/src/lib/errors.ts", + "sourceFileName": "", "qualifiedName": "__type" }, "2551": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "__type.name" + "qualifiedName": "AuthError.status" }, "2552": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "__type.message" + "qualifiedName": "AuthError.__isAuthError" }, "2553": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "__type.status" + "qualifiedName": "AuthError.toJSON" }, "2554": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "__type.code" + "qualifiedName": "AuthError.toJSON" }, "2555": { - "sourceFileName": "", + "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, "2556": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthApiError" + "qualifiedName": "__type.name" }, "2557": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthApiError.__constructor" + "qualifiedName": "__type.message" }, "2558": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthApiError" + "qualifiedName": "__type.status" }, "2559": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "message" + "qualifiedName": "__type.code" }, "2560": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "2561": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthApiError" + }, + "2562": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthApiError.__constructor" + }, + "2563": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthApiError" + }, + "2564": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "message" + }, + "2565": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2561": { + "2566": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "code" }, - "2562": { + "2567": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthApiError.status" }, - "2563": { + "2568": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2564": { + "2569": { "sourceFileName": "", "qualifiedName": "__type" }, - "2565": { + "2570": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2566": { + "2571": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2567": { + "2572": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2568": { + "2573": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2569": { + "2574": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2570": { + "2575": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2571": { + "2576": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2572": { + "2577": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2573": { + "2578": { "sourceFileName": "", "qualifiedName": "__type" }, - "2574": { + "2579": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "2575": { + "2580": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError.__constructor" }, - "2576": { + "2581": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "2577": { + "2582": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2578": { + "2583": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "originalError" }, - "2579": { + "2584": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError.originalError" }, - "2580": { + "2585": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2581": { + "2586": { "sourceFileName": "", "qualifiedName": "__type" }, - "2582": { + "2587": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "2583": { + "2588": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2584": { + "2589": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2585": { + "2590": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2586": { + "2591": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2587": { + "2592": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2588": { + "2593": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2589": { + "2594": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2590": { + "2595": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2591": { + "2596": { "sourceFileName": "", "qualifiedName": "__type" }, - "2592": { + "2597": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "2593": { + "2598": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.__constructor" }, - "2594": { + "2599": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "2595": { + "2600": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2596": { + "2601": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "name" }, - "2597": { + "2602": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2598": { + "2603": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "code" }, - "2599": { + "2604": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2600": { + "2605": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2601": { + "2606": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2602": { + "2607": { "sourceFileName": "", "qualifiedName": "__type" }, - "2603": { + "2608": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2604": { + "2609": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2605": { + "2610": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2606": { + "2611": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2607": { + "2612": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2608": { + "2613": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2609": { + "2614": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2610": { + "2615": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2611": { + "2616": { "sourceFileName": "", "qualifiedName": "__type" }, - "2612": { + "2617": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "2613": { + "2618": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError.__constructor" }, - "2614": { + "2619": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "2615": { + "2620": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2616": { + "2621": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2617": { + "2622": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2618": { + "2623": { "sourceFileName": "", "qualifiedName": "__type" }, - "2619": { + "2624": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2620": { + "2625": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2621": { + "2626": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2622": { + "2627": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2623": { + "2628": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2624": { + "2629": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2625": { + "2630": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2626": { + "2631": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2627": { + "2632": { "sourceFileName": "", "qualifiedName": "__type" }, - "2628": { + "2633": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "2629": { + "2634": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError.__constructor" }, - "2630": { + "2635": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "2631": { + "2636": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2632": { + "2637": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2633": { + "2638": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2634": { + "2639": { "sourceFileName": "", "qualifiedName": "__type" }, - "2635": { + "2640": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2636": { + "2641": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2637": { + "2642": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2638": { + "2643": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2639": { + "2644": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2640": { + "2645": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2641": { + "2646": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2642": { + "2647": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2643": { + "2648": { "sourceFileName": "", "qualifiedName": "__type" }, - "2644": { + "2649": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "2645": { + "2650": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError.__constructor" }, - "2646": { + "2651": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "2647": { + "2652": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2648": { + "2653": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2649": { + "2654": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2650": { + "2655": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2651": { + "2656": { "sourceFileName": "", "qualifiedName": "__type" }, - "2652": { + "2657": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2653": { + "2658": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2654": { + "2659": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2655": { + "2660": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2656": { + "2661": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2657": { + "2662": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2658": { + "2663": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2659": { + "2664": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2660": { + "2665": { "sourceFileName": "", "qualifiedName": "__type" }, - "2661": { + "2666": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "2662": { + "2667": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.__constructor" }, - "2663": { + "2668": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "2664": { + "2669": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2665": { + "2670": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "details" }, - "2666": { + "2671": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2667": { + "2672": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2668": { + "2673": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2669": { + "2674": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.details" }, - "2670": { + "2675": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2671": { + "2676": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2672": { + "2677": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2673": { + "2678": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "2674": { + "2679": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "2675": { + "2680": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2676": { + "2681": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2677": { + "2682": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2678": { + "2683": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2679": { + "2684": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2680": { + "2685": { "sourceFileName": "", "qualifiedName": "__type" }, - "2681": { + "2686": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.details" }, - "2682": { + "2687": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2683": { + "2688": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2684": { + "2689": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2685": { + "2690": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2686": { + "2691": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2687": { + "2692": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2688": { + "2693": { "sourceFileName": "", "qualifiedName": "__type" }, - "2689": { + "2694": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2690": { + "2695": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "2691": { + "2696": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor" }, - "2692": { + "2697": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "2693": { + "2698": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2694": { + "2699": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "details" }, - "2695": { + "2700": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2696": { + "2701": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2697": { + "2702": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2698": { + "2703": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.details" }, - "2699": { + "2704": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2700": { + "2705": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2701": { + "2706": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2702": { + "2707": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "2703": { + "2708": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "2704": { + "2709": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2705": { + "2710": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2706": { + "2711": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2707": { + "2712": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2708": { + "2713": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2709": { + "2714": { "sourceFileName": "", "qualifiedName": "__type" }, - "2710": { + "2715": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.details" }, - "2711": { + "2716": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2712": { + "2717": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2713": { + "2718": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2714": { + "2719": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2715": { + "2720": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2716": { + "2721": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2717": { + "2722": { "sourceFileName": "", "qualifiedName": "__type" }, - "2718": { + "2723": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2719": { + "2724": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "2720": { + "2725": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor" }, - "2721": { + "2726": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "2722": { + "2727": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2723": { + "2728": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2724": { + "2729": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2725": { + "2730": { "sourceFileName": "", "qualifiedName": "__type" }, - "2726": { + "2731": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2727": { + "2732": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2728": { + "2733": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2729": { + "2734": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2730": { + "2735": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2731": { + "2736": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2732": { + "2737": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2733": { + "2738": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2734": { + "2739": { "sourceFileName": "", "qualifiedName": "__type" }, - "2735": { + "2740": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "2736": { + "2741": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError.__constructor" }, - "2737": { + "2742": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "2738": { + "2743": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2739": { + "2744": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2740": { + "2745": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2741": { + "2746": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2742": { + "2747": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2743": { + "2748": { "sourceFileName": "", "qualifiedName": "__type" }, - "2744": { + "2749": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2745": { + "2750": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2746": { + "2751": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2747": { + "2752": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2748": { + "2753": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2749": { + "2754": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2750": { + "2755": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2751": { + "2756": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2752": { + "2757": { "sourceFileName": "", "qualifiedName": "__type" }, - "2753": { + "2758": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "2759": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError.__constructor" + }, + "2760": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "2761": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "message" + }, + "2762": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "CustomAuthError.name" + }, + "2763": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "CustomAuthError.status" + }, + "2764": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.code" + }, + "2765": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "2766": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.__isAuthError" + }, + "2767": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "2768": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "2769": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type" + }, + "2770": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.name" + }, + "2771": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.message" + }, + "2772": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.status" + }, + "2773": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.code" + }, + "2774": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "2775": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "2754": { + "2776": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.__constructor" }, - "2755": { + "2777": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "2756": { + "2778": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2757": { + "2779": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2758": { + "2780": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "reasons" }, - "2759": { + "2781": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.reasons" }, - "2760": { + "2782": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "2761": { + "2783": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "2762": { + "2784": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2763": { + "2785": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2764": { + "2786": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2765": { + "2787": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2766": { + "2788": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2767": { + "2789": { "sourceFileName": "", "qualifiedName": "__type" }, - "2768": { + "2790": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.reasons" }, - "2769": { + "2791": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2770": { + "2792": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2771": { + "2793": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2772": { + "2794": { "sourceFileName": "", "qualifiedName": "__type" }, - "2773": { + "2795": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2774": { + "2796": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "2775": { + "2797": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError.__constructor" }, - "2776": { + "2798": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "2777": { + "2799": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2778": { + "2800": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2779": { + "2801": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2780": { + "2802": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2781": { + "2803": { "sourceFileName": "", "qualifiedName": "__type" }, - "2782": { + "2804": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2783": { + "2805": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2784": { + "2806": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2785": { + "2807": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2786": { + "2808": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2787": { + "2809": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2788": { + "2810": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2789": { + "2811": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2790": { + "2812": { "sourceFileName": "", "qualifiedName": "__type" }, - "2791": { + "2813": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default" }, - "2792": { + "2814": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.__constructor" }, - "2793": { + "2815": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default" }, - "2794": { + "2816": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "channel" }, - "2795": { + "2817": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "opts" }, - "2796": { + "2818": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.channel" }, - "2797": { + "2819": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.state" }, - "2798": { + "2820": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.state" }, - "2800": { + "2822": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default" }, - "2801": { + "2823": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.__constructor" }, - "2802": { + "2824": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default" }, - "2803": { + "2825": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "topic" }, - "2804": { + "2826": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "params" }, - "2805": { + "2827": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "socket" }, - "2806": { + "2828": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.topic" }, - "2807": { + "2829": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.params" }, - "2808": { + "2830": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.socket" }, - "2809": { + "2831": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.bindings" }, - "2810": { + "2832": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.subTopic" }, - "2811": { + "2833": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.broadcastEndpointURL" }, - "2812": { + "2834": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.private" }, - "2813": { + "2835": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.presence" }, - "2814": { + "2836": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.state" }, - "2815": { + "2837": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.state" }, - "2816": { + "2838": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.state" }, - "2817": { + "2839": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "state" }, - "2818": { + "2840": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinedOnce" }, - "2819": { + "2841": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinedOnce" }, - "2820": { + "2842": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.timeout" }, - "2821": { + "2843": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.timeout" }, - "2822": { + "2844": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinPush" }, - "2823": { + "2845": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinPush" }, - "2824": { + "2846": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.rejoinTimer" }, - "2825": { + "2847": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.rejoinTimer" }, - "2826": { + "2848": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.subscribe" }, - "2827": { + "2849": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.subscribe" }, - "2828": { + "2850": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2829": { + "2851": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2830": { + "2852": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2831": { + "2853": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "status" }, - "2832": { + "2854": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "err" }, - "2833": { + "2855": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "timeout" }, - "2835": { + "2857": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.presenceState" }, - "2836": { + "2858": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.presenceState" }, - "2837": { + "2859": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2838": { + "2860": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2839": { + "2861": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2841": { + "2863": { "sourceFileName": "", "qualifiedName": "__type" }, - "2842": { + "2864": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.track" }, - "2843": { + "2865": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.track" }, - "2844": { + "2866": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "2845": { + "2867": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2846": { + "2868": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2848": { + "2870": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "2849": { + "2871": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2850": { + "2872": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2852": { + "2874": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.untrack" }, - "2853": { + "2875": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.untrack" }, - "2854": { + "2876": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "2855": { + "2877": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2856": { + "2878": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2858": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "default.on" - }, - "2859": { + "2880": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2860": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "type" - }, - "2861": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "filter" - }, - "2862": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2863": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.event" - }, - "2864": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "callback" - }, - "2865": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2866": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2867": { + "2881": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2868": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "T" - }, - "2869": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2870": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" - }, - "2872": { + "2882": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2873": { + "2883": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2874": { + "2884": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2875": { + "2885": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "2876": { + "2886": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2877": { + "2887": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2878": { + "2888": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2879": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "payload" - }, - "2880": { + "2889": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2881": { + "2890": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2882": { + "2891": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2883": { + "2892": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2885": { + "2894": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2886": { + "2895": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2887": { + "2896": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2888": { + "2897": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "2889": { + "2898": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2890": { + "2899": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2891": { + "2900": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2892": { + "2901": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "2893": { + "2902": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2894": { + "2903": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2895": { + "2904": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2896": { + "2905": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2898": { + "2907": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2899": { + "2908": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2900": { + "2909": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2901": { + "2910": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "2902": { + "2911": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2903": { + "2912": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2904": { + "2913": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2905": { + "2914": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "2906": { + "2915": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2907": { + "2916": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2908": { + "2917": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2909": { + "2918": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2911": { + "2920": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2912": { + "2921": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2913": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "callback" - }, - "2914": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2915": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2916": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "payload" - }, - "2917": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "default.on" - }, - "2918": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "T" - }, - "2919": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2920": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" - }, "2922": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "type" + "qualifiedName": "__type" }, "2923": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "filter" + "qualifiedName": "__type.event" }, "2924": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107750,35 +109375,31 @@ }, "2962": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "type" + "qualifiedName": "T" }, "2963": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "filter" - }, - "2964": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2965": { + "2964": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.event" + "qualifiedName": "__type.__index" }, "2966": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "callback" + "qualifiedName": "type" }, "2967": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" + "qualifiedName": "filter" }, "2968": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" + "qualifiedName": "callback" }, "2969": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "payload" + "qualifiedName": "__type" }, "2970": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107786,15 +109407,15 @@ }, "2971": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.type" + "qualifiedName": "payload" }, "2972": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.event" + "qualifiedName": "default.on" }, "2973": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.meta" + "qualifiedName": "T" }, "2974": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107802,23 +109423,23 @@ }, "2975": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.replayed" + "qualifiedName": "__type.__index" }, - "2976": { + "2977": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.id" + "qualifiedName": "type" }, - "2977": { + "2978": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "filter" }, "2979": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "default.on" + "qualifiedName": "callback" }, "2980": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "2981": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107826,7 +109447,11 @@ }, "2982": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "payload" + }, + "2983": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "default.on" }, "2984": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107889,1758 +109514,1838 @@ "qualifiedName": "__type.id" }, "2999": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.__index" + }, + "3001": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "default.on" + }, + "3002": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "T" + }, + "3003": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3004": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.__index" + }, + "3006": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "type" + }, + "3007": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "filter" + }, + "3008": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3009": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.event" + }, + "3010": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "callback" + }, + "3011": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3012": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3013": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "payload" + }, + "3014": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3015": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.type" + }, + "3016": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.event" + }, + "3017": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.meta" + }, + "3018": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3019": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.replayed" + }, + "3020": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.id" + }, + "3021": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3000": { + "3022": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3001": { + "3023": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3002": { + "3024": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3003": { + "3025": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3004": { + "3026": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3005": { + "3027": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3006": { + "3028": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3007": { + "3029": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3008": { + "3030": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3009": { + "3031": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3010": { + "3032": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3011": { + "3033": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3012": { + "3034": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3013": { + "3035": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3014": { + "3036": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3015": { + "3037": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3016": { + "3038": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3017": { + "3039": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3019": { + "3041": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3020": { + "3042": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3021": { + "3043": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3022": { + "3044": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3023": { + "3045": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3024": { + "3046": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3025": { + "3047": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3026": { + "3048": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3027": { + "3049": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3028": { + "3050": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3029": { + "3051": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3030": { + "3052": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3031": { + "3053": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3032": { + "3054": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3033": { + "3055": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3034": { + "3056": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3036": { + "3058": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3037": { + "3059": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3038": { + "3060": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3039": { + "3061": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3040": { + "3062": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3041": { + "3063": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3042": { + "3064": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3043": { + "3065": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3044": { + "3066": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3045": { + "3067": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3046": { + "3068": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3047": { + "3069": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3048": { + "3070": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3049": { + "3071": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3050": { + "3072": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3051": { + "3073": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3053": { + "3075": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3054": { + "3076": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3055": { + "3077": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3056": { + "3078": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3057": { + "3079": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3058": { + "3080": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3059": { + "3081": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3060": { + "3082": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3061": { + "3083": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3062": { + "3084": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3063": { + "3085": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3064": { + "3086": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3065": { + "3087": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3066": { + "3088": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3067": { + "3089": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3068": { + "3090": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3070": { + "3092": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3071": { + "3093": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3072": { + "3094": { "sourceFileName": "", "qualifiedName": "__type" }, - "3073": { + "3095": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3074": { + "3096": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3075": { + "3097": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3076": { + "3098": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3077": { + "3099": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.httpSend" }, - "3078": { + "3100": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.httpSend" }, - "3079": { + "3101": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "event" }, - "3080": { + "3102": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3081": { + "3103": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "3082": { + "3104": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3083": { + "3105": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.timeout" }, - "3084": { + "3106": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3085": { + "3107": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.success" }, - "3086": { + "3108": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3087": { + "3109": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.success" }, - "3088": { + "3110": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.status" }, - "3089": { + "3111": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.error" }, - "3090": { + "3112": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.send" }, - "3091": { + "3113": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.send" }, - "3092": { + "3114": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "args" }, - "3093": { + "3115": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3094": { + "3116": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3095": { + "3117": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3096": { + "3118": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3097": { + "3119": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3099": { + "3121": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "3100": { + "3122": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3101": { + "3123": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3103": { + "3125": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.updateJoinPayload" }, - "3104": { + "3126": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.updateJoinPayload" }, - "3105": { + "3127": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3106": { + "3128": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.unsubscribe" }, - "3107": { + "3129": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.unsubscribe" }, - "3108": { + "3130": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "timeout" }, - "3109": { + "3131": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.teardown" }, - "3110": { + "3132": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.teardown" }, - "3111": { + "3133": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.copyBindings" }, - "3112": { + "3134": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.copyBindings" }, - "3113": { + "3135": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "other" }, - "3114": { + "3136": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimeChannelOptions" }, - "3115": { + "3137": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3116": { + "3138": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.config" }, - "3117": { + "3139": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3118": { + "3140": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.broadcast" }, - "3119": { + "3141": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3120": { + "3142": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.self" }, - "3121": { + "3143": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.ack" }, - "3122": { + "3144": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.replay" }, - "3123": { + "3145": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.presence" }, - "3124": { + "3146": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3125": { + "3147": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.key" }, - "3126": { + "3148": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.enabled" }, - "3127": { + "3149": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.private" }, - "3128": { + "3150": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimeChannelSendResponse" }, - "3129": { + "3151": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3130": { + "3152": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default" }, - "3131": { + "3153": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.__constructor" }, - "3132": { + "3154": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default" }, - "3133": { + "3155": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "endPoint" }, - "3134": { + "3156": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "options" }, - "3135": { + "3157": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.channels" }, - "3136": { + "3158": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.accessTokenValue" }, - "3137": { + "3159": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.accessToken" }, - "3138": { + "3160": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3139": { + "3161": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3140": { + "3162": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.apiKey" }, - "3141": { + "3163": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.httpEndpoint" }, - "3142": { + "3164": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.headers" }, - "3143": { + "3165": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3144": { + "3166": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3146": { + "3168": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.params" }, - "3147": { + "3169": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3148": { + "3170": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3150": { + "3172": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.ref" }, - "3151": { + "3173": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.logLevel" }, - "3152": { + "3174": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.fetch" }, - "3153": { + "3175": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "3154": { + "3176": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "3155": { + "3177": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "3156": { + "3178": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "3157": { + "3179": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "3158": { + "3180": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "3159": { + "3181": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "3160": { + "3182": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.worker" }, - "3161": { + "3183": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.workerUrl" }, - "3162": { + "3184": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.workerRef" }, - "3163": { + "3185": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.serializer" }, - "3164": { + "3186": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endPoint" }, - "3165": { + "3187": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endPoint" }, - "3166": { + "3188": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.timeout" }, - "3167": { + "3189": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.timeout" }, - "3168": { + "3190": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.transport" }, - "3169": { + "3191": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.transport" }, - "3170": { + "3192": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatCallback" }, - "3171": { + "3193": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatCallback" }, - "3172": { + "3194": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatIntervalMs" }, - "3173": { + "3195": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatIntervalMs" }, - "3174": { + "3196": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatTimer" }, - "3175": { + "3197": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatTimer" }, - "3176": { + "3198": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.pendingHeartbeatRef" }, - "3177": { + "3199": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.pendingHeartbeatRef" }, - "3178": { + "3200": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectTimer" }, - "3179": { + "3201": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectTimer" }, - "3180": { + "3202": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.vsn" }, - "3181": { + "3203": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.vsn" }, - "3182": { + "3204": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.encode" }, - "3183": { + "3205": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.encode" }, - "3184": { + "3206": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.decode" }, - "3185": { + "3207": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.decode" }, - "3186": { + "3208": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectAfterMs" }, - "3187": { + "3209": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectAfterMs" }, - "3188": { + "3210": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3189": { + "3211": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3190": { + "3212": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "tries" }, - "3191": { + "3213": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendBuffer" }, - "3192": { + "3214": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendBuffer" }, - "3193": { + "3215": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3194": { + "3216": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3195": { + "3217": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.stateChangeCallbacks" }, - "3196": { + "3218": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.stateChangeCallbacks" }, - "3197": { + "3219": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3198": { + "3220": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.open" }, - "3199": { + "3221": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.close" }, - "3200": { + "3222": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.error" }, - "3201": { + "3223": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.message" }, - "3208": { + "3230": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connect" }, - "3209": { + "3231": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connect" }, - "3210": { + "3232": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endpointURL" }, - "3211": { + "3233": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endpointURL" }, - "3212": { + "3234": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.disconnect" }, - "3213": { + "3235": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.disconnect" }, - "3214": { + "3236": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "code" }, - "3215": { + "3237": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "reason" }, - "3216": { + "3238": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.getChannels" }, - "3217": { + "3239": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.getChannels" }, - "3218": { + "3240": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeChannel" }, - "3219": { + "3241": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeChannel" }, - "3220": { + "3242": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "channel" }, - "3221": { + "3243": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeAllChannels" }, - "3222": { + "3244": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeAllChannels" }, - "3223": { + "3245": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.log" }, - "3224": { + "3246": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.log" }, - "3225": { + "3247": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "kind" }, - "3226": { + "3248": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "msg" }, - "3227": { + "3249": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "data" }, - "3228": { + "3250": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connectionState" }, - "3229": { + "3251": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connectionState" }, - "3230": { + "3252": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnected" }, - "3231": { + "3253": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnected" }, - "3232": { + "3254": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnecting" }, - "3233": { + "3255": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnecting" }, - "3234": { + "3256": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isDisconnecting" }, - "3235": { + "3257": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isDisconnecting" }, - "3236": { + "3258": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.channel" }, - "3237": { + "3259": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.channel" }, - "3238": { + "3260": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "topic" }, - "3239": { + "3261": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "params" }, - "3240": { + "3262": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.push" }, - "3241": { + "3263": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.push" }, - "3242": { + "3264": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "data" }, - "3243": { + "3265": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.setAuth" }, - "3244": { + "3266": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.setAuth" }, - "3245": { + "3267": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "token" }, - "3246": { + "3268": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendHeartbeat" }, - "3247": { + "3269": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendHeartbeat" }, - "3248": { + "3270": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.onHeartbeat" }, - "3249": { + "3271": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.onHeartbeat" }, - "3250": { + "3272": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "callback" }, - "3251": { + "3273": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "RealtimeClientOptions" }, - "3252": { + "3274": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3253": { + "3275": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.transport" }, - "3254": { + "3276": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.timeout" }, - "3255": { + "3277": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.heartbeatIntervalMs" }, - "3256": { + "3278": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.heartbeatCallback" }, - "3257": { + "3279": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3258": { + "3280": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3259": { + "3281": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "status" }, - "3260": { + "3282": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "latency" }, - "3261": { + "3283": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.vsn" }, - "3262": { + "3284": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.logger" }, - "3263": { + "3285": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3264": { + "3286": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3265": { + "3287": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "kind" }, - "3266": { + "3288": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "msg" }, - "3267": { + "3289": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "data" }, - "3268": { + "3290": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.encode" }, - "3269": { + "3291": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.decode" }, - "3270": { + "3292": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.reconnectAfterMs" }, - "3271": { + "3293": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3272": { + "3294": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3273": { + "3295": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "tries" }, - "3274": { + "3296": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.headers" }, - "3275": { + "3297": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3276": { + "3298": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3278": { + "3300": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.params" }, - "3279": { + "3301": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3280": { + "3302": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3282": { + "3304": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.log_level" }, - "3283": { + "3305": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.logLevel" }, - "3284": { + "3306": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.fetch" }, - "3285": { + "3307": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.worker" }, - "3286": { + "3308": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.workerUrl" }, - "3287": { + "3309": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.accessToken" }, - "3288": { + "3310": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3289": { + "3311": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3290": { + "3312": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.disconnectOnEmptyChannelsAfterMs" }, - "3291": { + "3313": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.sessionStorage" }, - "3292": { + "3314": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "RealtimeMessage" }, - "3293": { + "3315": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3294": { + "3316": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.topic" }, - "3295": { + "3317": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.event" }, - "3296": { + "3318": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.payload" }, - "3297": { + "3319": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.ref" }, - "3298": { + "3320": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.join_ref" }, - "3299": { + "3321": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresChangesFilter" }, - "3300": { + "3322": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3301": { + "3323": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3302": { + "3324": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.schema" }, - "3303": { + "3325": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.table" }, - "3304": { + "3326": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.filter" }, - "3305": { + "3327": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3306": { + "3328": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresChangesPayload" }, - "3307": { + "3329": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3308": { + "3330": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3309": { + "3331": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3311": { + "3333": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresInsertPayload" }, - "3312": { + "3334": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3313": { + "3335": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.eventType" }, - "3314": { + "3336": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.new" }, - "3315": { + "3337": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.old" }, - "3316": { + "3338": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3317": { + "3339": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3318": { + "3340": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3319": { + "3341": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3321": { + "3343": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresUpdatePayload" }, - "3322": { + "3344": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3323": { + "3345": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.eventType" }, - "3324": { + "3346": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.new" }, - "3325": { + "3347": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.old" }, - "3326": { + "3348": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3327": { + "3349": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3328": { + "3350": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3330": { + "3352": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresDeletePayload" }, - "3331": { + "3353": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3332": { + "3354": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.eventType" }, - "3333": { + "3355": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.new" }, - "3334": { + "3356": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3335": { + "3357": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.old" }, - "3336": { + "3358": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3337": { + "3359": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3338": { + "3360": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3340": { + "3362": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "RealtimePresenceJoinPayload" }, - "3341": { + "3363": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3342": { + "3364": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.event" }, - "3343": { + "3365": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.key" }, - "3344": { + "3366": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.currentPresences" }, - "3345": { + "3367": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.newPresences" }, - "3346": { + "3368": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "T" }, - "3347": { + "3369": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3348": { + "3370": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3350": { + "3372": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "RealtimePresenceLeavePayload" }, - "3351": { + "3373": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3352": { + "3374": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.event" }, - "3353": { + "3375": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.key" }, - "3354": { + "3376": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.currentPresences" }, - "3355": { + "3377": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.leftPresences" }, - "3356": { + "3378": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "T" }, - "3357": { + "3379": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3358": { + "3380": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3360": { + "3382": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "RealtimePresenceState" }, - "3361": { + "3383": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3362": { + "3384": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3364": { + "3386": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "T" }, - "3365": { + "3387": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3366": { + "3388": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3368": { + "3390": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3369": { + "3391": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "RealtimeRemoveChannelResponse" }, - "3370": { + "3392": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3371": { + "3393": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES" }, - "3372": { + "3394": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST" }, - "3373": { + "3395": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE" }, - "3374": { + "3396": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES" }, - "3375": { + "3397": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM" }, - "3376": { + "3398": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT" }, - "3377": { + "3399": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL" }, - "3378": { + "3400": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT" }, - "3379": { + "3401": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE" }, - "3380": { + "3402": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE" }, - "3381": { + "3403": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS" }, - "3382": { + "3404": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC" }, - "3383": { + "3405": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN" }, - "3384": { + "3406": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE" }, - "3385": { + "3407": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES" }, - "3386": { + "3408": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED" }, - "3387": { + "3409": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT" }, - "3388": { + "3410": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED" }, - "3389": { + "3411": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR" }, - "3390": { + "3412": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_CHANNEL_STATES" }, - "3391": { + "3413": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3392": { + "3414": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.closed" }, - "3393": { + "3415": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.errored" }, - "3394": { + "3416": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.joined" }, - "3395": { + "3417": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.joining" }, - "3396": { + "3418": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.leaving" }, - "3397": { + "3419": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory" }, - "3399": { + "3421": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.getWebSocketConstructor" }, - "3400": { + "3422": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.getWebSocketConstructor" }, - "3401": { + "3423": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "__type" }, - "3402": { + "3424": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "__type" }, - "3403": { + "3425": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "url" }, - "3404": { + "3426": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "protocols" }, - "3405": { + "3427": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.isWebSocketSupported" }, - "3406": { + "3428": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.isWebSocketSupported" }, - "3409": { + "3431": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike" }, - "3410": { + "3432": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.CONNECTING" }, - "3411": { + "3433": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.OPEN" }, - "3412": { + "3434": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.CLOSING" }, - "3413": { + "3435": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.CLOSED" }, - "3414": { + "3436": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.readyState" }, - "3415": { + "3437": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.url" }, - "3416": { + "3438": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.protocol" }, - "3417": { + "3439": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.close" }, - "3418": { + "3440": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.close" }, - "3419": { + "3441": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "code" }, - "3420": { + "3442": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "reason" }, - "3421": { + "3443": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.send" }, - "3422": { + "3444": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.send" }, - "3423": { + "3445": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "data" }, - "3424": { + "3446": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onopen" }, - "3425": { + "3447": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3426": { + "3448": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3427": { + "3449": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3428": { + "3450": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3429": { + "3451": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onmessage" }, - "3430": { + "3452": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3431": { + "3453": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3432": { + "3454": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3433": { + "3455": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3434": { + "3456": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onclose" }, - "3435": { + "3457": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3436": { + "3458": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3437": { + "3459": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3438": { + "3460": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3439": { + "3461": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onerror" }, - "3440": { + "3462": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3441": { + "3463": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3442": { + "3464": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3443": { + "3465": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3444": { + "3466": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.addEventListener" }, - "3445": { + "3467": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.addEventListener" }, - "3446": { + "3468": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "type" }, - "3447": { + "3469": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "listener" }, - "3448": { + "3470": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.removeEventListener" }, - "3449": { + "3471": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.removeEventListener" }, - "3450": { + "3472": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "type" }, - "3451": { + "3473": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "listener" }, - "3452": { + "3474": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.binaryType" }, - "3453": { + "3475": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.bufferedAmount" }, - "3454": { + "3476": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.extensions" }, - "3455": { + "3477": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.dispatchEvent" }, - "3456": { + "3478": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3457": { + "3479": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3458": { + "3480": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "event" }, - "3459": { + "3481": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor" }, - "3460": { + "3482": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor" }, - "3461": { + "3483": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor" }, - "3462": { + "3484": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "address" }, - "3463": { + "3485": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "subprotocols" }, - "3464": { + "3486": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor.__index" } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json index 6a8b50cfa26da..3716a5110c90a 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json @@ -51,7 +51,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/cors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/cors.ts#L54" } ], "type": { @@ -116,7 +116,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/cors.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/cors.ts#L80" } ], "type": { @@ -153,7 +153,7 @@ "fileName": "packages/core/supabase-js/src/cors.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/cors.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/cors.ts#L1" } ] }, @@ -459,14 +459,14 @@ ] }, { - "id": 3371, + "id": 3393, "name": "REALTIME_LISTEN_TYPES", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3372, + "id": 3394, "name": "BROADCAST", "variant": "declaration", "kind": 16, @@ -484,7 +484,7 @@ } }, { - "id": 3374, + "id": 3396, "name": "POSTGRES_CHANGES", "variant": "declaration", "kind": 16, @@ -502,7 +502,7 @@ } }, { - "id": 3373, + "id": 3395, "name": "PRESENCE", "variant": "declaration", "kind": 16, @@ -520,7 +520,7 @@ } }, { - "id": 3375, + "id": 3397, "name": "SYSTEM", "variant": "declaration", "kind": 16, @@ -541,7 +541,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3372, 3374, 3373, 3375] + "children": [3394, 3396, 3395, 3397] } ], "sources": [ @@ -553,14 +553,14 @@ ] }, { - "id": 3376, + "id": 3398, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3377, + "id": 3399, "name": "ALL", "variant": "declaration", "kind": 16, @@ -578,7 +578,7 @@ } }, { - "id": 3380, + "id": 3402, "name": "DELETE", "variant": "declaration", "kind": 16, @@ -596,7 +596,7 @@ } }, { - "id": 3378, + "id": 3400, "name": "INSERT", "variant": "declaration", "kind": 16, @@ -614,7 +614,7 @@ } }, { - "id": 3379, + "id": 3401, "name": "UPDATE", "variant": "declaration", "kind": 16, @@ -635,7 +635,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3377, 3380, 3378, 3379] + "children": [3399, 3402, 3400, 3401] } ], "sources": [ @@ -647,14 +647,14 @@ ] }, { - "id": 3381, + "id": 3403, "name": "REALTIME_PRESENCE_LISTEN_EVENTS", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3383, + "id": 3405, "name": "JOIN", "variant": "declaration", "kind": 16, @@ -672,7 +672,7 @@ } }, { - "id": 3384, + "id": 3406, "name": "LEAVE", "variant": "declaration", "kind": 16, @@ -690,7 +690,7 @@ } }, { - "id": 3382, + "id": 3404, "name": "SYNC", "variant": "declaration", "kind": 16, @@ -711,7 +711,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3383, 3384, 3382] + "children": [3405, 3406, 3404] } ], "sources": [ @@ -723,14 +723,14 @@ ] }, { - "id": 3385, + "id": 3407, "name": "REALTIME_SUBSCRIBE_STATES", "variant": "declaration", "kind": 8, "flags": {}, "children": [ { - "id": 3389, + "id": 3411, "name": "CHANNEL_ERROR", "variant": "declaration", "kind": 16, @@ -748,7 +748,7 @@ } }, { - "id": 3388, + "id": 3410, "name": "CLOSED", "variant": "declaration", "kind": 16, @@ -766,7 +766,7 @@ } }, { - "id": 3386, + "id": 3408, "name": "SUBSCRIBED", "variant": "declaration", "kind": 16, @@ -784,7 +784,7 @@ } }, { - "id": 3387, + "id": 3409, "name": "TIMED_OUT", "variant": "declaration", "kind": 16, @@ -805,7 +805,7 @@ "groups": [ { "title": "Enumeration Members", - "children": [3389, 3388, 3386, 3387] + "children": [3411, 3410, 3408, 3409] } ], "sources": [ @@ -817,7 +817,7 @@ ] }, { - "id": 2556, + "id": 2561, "name": "AuthApiError", "variant": "declaration", "kind": 128, @@ -843,7 +843,7 @@ }, "children": [ { - "id": 2557, + "id": 2562, "name": "constructor", "variant": "declaration", "kind": 512, @@ -857,7 +857,7 @@ ], "signatures": [ { - "id": 2558, + "id": 2563, "name": "AuthApiError", "variant": "signature", "kind": 16384, @@ -871,7 +871,7 @@ ], "parameters": [ { - "id": 2559, + "id": 2564, "name": "message", "variant": "param", "kind": 32768, @@ -882,7 +882,7 @@ } }, { - "id": 2560, + "id": 2565, "name": "status", "variant": "param", "kind": 32768, @@ -893,7 +893,7 @@ } }, { - "id": 2561, + "id": 2566, "name": "code", "variant": "param", "kind": 32768, @@ -915,25 +915,25 @@ ], "type": { "type": "reference", - "target": 2556, + "target": 2561, "name": "AuthApiError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2540, + "target": 2545, "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2539, + "target": 2544, "name": "AuthError.constructor" } }, { - "id": 2565, + "id": 2570, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -954,12 +954,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2547, + "target": 2552, "name": "AuthError.__isAuthError" } }, { - "id": 2563, + "id": 2568, "name": "code", "variant": "declaration", "kind": 1024, @@ -1016,7 +1016,7 @@ { "type": "reflection", "declaration": { - "id": 2564, + "id": 2569, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1029,12 +1029,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2544, + "target": 2549, "name": "AuthError.code" } }, { - "id": 2562, + "id": 2567, "name": "status", "variant": "declaration", "kind": 1024, @@ -1060,12 +1060,12 @@ }, "overwrites": { "type": "reference", - "target": 2546, + "target": 2551, "name": "AuthError.status" } }, { - "id": 2566, + "id": 2571, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1081,7 +1081,7 @@ ], "signatures": [ { - "id": 2567, + "id": 2572, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1098,14 +1098,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2568, + "id": 2573, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2572, + "id": 2577, "name": "code", "variant": "declaration", "kind": 1024, @@ -1143,7 +1143,7 @@ { "type": "reflection", "declaration": { - "id": 2573, + "id": 2578, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1156,7 +1156,7 @@ } }, { - "id": 2570, + "id": 2575, "name": "message", "variant": "declaration", "kind": 1024, @@ -1174,7 +1174,7 @@ } }, { - "id": 2569, + "id": 2574, "name": "name", "variant": "declaration", "kind": 1024, @@ -1192,7 +1192,7 @@ } }, { - "id": 2571, + "id": 2576, "name": "status", "variant": "declaration", "kind": 1024, @@ -1222,7 +1222,7 @@ "groups": [ { "title": "Properties", - "children": [2572, 2570, 2569, 2571] + "children": [2577, 2575, 2574, 2576] } ], "sources": [ @@ -1236,14 +1236,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2549, + "target": 2554, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2548, + "target": 2553, "name": "AuthError.toJSON" } } @@ -1251,15 +1251,15 @@ "groups": [ { "title": "Constructors", - "children": [2557] + "children": [2562] }, { "title": "Properties", - "children": [2565, 2563, 2562] + "children": [2570, 2568, 2567] }, { "title": "Methods", - "children": [2566] + "children": [2571] } ], "sources": [ @@ -1272,14 +1272,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2538, + "id": 2543, "name": "AuthError", "variant": "declaration", "kind": 128, @@ -1305,7 +1305,7 @@ }, "children": [ { - "id": 2539, + "id": 2544, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1319,7 +1319,7 @@ ], "signatures": [ { - "id": 2540, + "id": 2545, "name": "AuthError", "variant": "signature", "kind": 16384, @@ -1333,7 +1333,7 @@ ], "parameters": [ { - "id": 2541, + "id": 2546, "name": "message", "variant": "param", "kind": 32768, @@ -1344,7 +1344,7 @@ } }, { - "id": 2542, + "id": 2547, "name": "status", "variant": "param", "kind": 32768, @@ -1357,7 +1357,7 @@ } }, { - "id": 2543, + "id": 2548, "name": "code", "variant": "param", "kind": 32768, @@ -1372,7 +1372,7 @@ ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -1390,7 +1390,7 @@ } }, { - "id": 2547, + "id": 2552, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -1410,7 +1410,7 @@ } }, { - "id": 2544, + "id": 2549, "name": "code", "variant": "declaration", "kind": 1024, @@ -1465,7 +1465,7 @@ { "type": "reflection", "declaration": { - "id": 2545, + "id": 2550, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1478,7 +1478,7 @@ } }, { - "id": 2546, + "id": 2551, "name": "status", "variant": "declaration", "kind": 1024, @@ -1513,7 +1513,7 @@ } }, { - "id": 2548, + "id": 2553, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -1527,7 +1527,7 @@ ], "signatures": [ { - "id": 2549, + "id": 2554, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -1542,14 +1542,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2550, + "id": 2555, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2554, + "id": 2559, "name": "code", "variant": "declaration", "kind": 1024, @@ -1587,7 +1587,7 @@ { "type": "reflection", "declaration": { - "id": 2555, + "id": 2560, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1600,7 +1600,7 @@ } }, { - "id": 2552, + "id": 2557, "name": "message", "variant": "declaration", "kind": 1024, @@ -1618,7 +1618,7 @@ } }, { - "id": 2551, + "id": 2556, "name": "name", "variant": "declaration", "kind": 1024, @@ -1636,7 +1636,7 @@ } }, { - "id": 2553, + "id": 2558, "name": "status", "variant": "declaration", "kind": 1024, @@ -1666,7 +1666,7 @@ "groups": [ { "title": "Properties", - "children": [2554, 2552, 2551, 2553] + "children": [2559, 2557, 2556, 2558] } ], "sources": [ @@ -1685,15 +1685,15 @@ "groups": [ { "title": "Constructors", - "children": [2539] + "children": [2544] }, { "title": "Properties", - "children": [2547, 2544, 2546] + "children": [2552, 2549, 2551] }, { "title": "Methods", - "children": [2548] + "children": [2553] } ], "sources": [ @@ -1717,23 +1717,23 @@ "extendedBy": [ { "type": "reference", - "target": 2556, + "target": 2561, "name": "AuthApiError" }, { "type": "reference", - "target": 2574, + "target": 2579, "name": "AuthUnknownError" }, { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError" } ] }, { - "id": 2661, + "id": 2666, "name": "AuthImplicitGrantRedirectError", "variant": "declaration", "kind": 128, @@ -1759,7 +1759,7 @@ }, "children": [ { - "id": 2662, + "id": 2667, "name": "constructor", "variant": "declaration", "kind": 512, @@ -1773,7 +1773,7 @@ ], "signatures": [ { - "id": 2663, + "id": 2668, "name": "AuthImplicitGrantRedirectError", "variant": "signature", "kind": 16384, @@ -1787,7 +1787,7 @@ ], "parameters": [ { - "id": 2664, + "id": 2669, "name": "message", "variant": "param", "kind": 32768, @@ -1798,7 +1798,7 @@ } }, { - "id": 2665, + "id": 2670, "name": "details", "variant": "param", "kind": 32768, @@ -1815,14 +1815,14 @@ { "type": "reflection", "declaration": { - "id": 2666, + "id": 2671, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2668, + "id": 2673, "name": "code", "variant": "declaration", "kind": 1024, @@ -1840,7 +1840,7 @@ } }, { - "id": 2667, + "id": 2672, "name": "error", "variant": "declaration", "kind": 1024, @@ -1861,7 +1861,7 @@ "groups": [ { "title": "Properties", - "children": [2668, 2667] + "children": [2673, 2672] } ], "sources": [ @@ -1879,25 +1879,25 @@ ], "type": { "type": "reference", - "target": 2661, + "target": 2666, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2689, + "id": 2694, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -1918,12 +1918,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2687, + "id": 2692, "name": "code", "variant": "declaration", "kind": 1024, @@ -1980,7 +1980,7 @@ { "type": "reflection", "declaration": { - "id": 2688, + "id": 2693, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1993,12 +1993,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2669, + "id": 2674, "name": "details", "variant": "declaration", "kind": 1024, @@ -2020,14 +2020,14 @@ { "type": "reflection", "declaration": { - "id": 2670, + "id": 2675, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2672, + "id": 2677, "name": "code", "variant": "declaration", "kind": 1024, @@ -2045,7 +2045,7 @@ } }, { - "id": 2671, + "id": 2676, "name": "error", "variant": "declaration", "kind": 1024, @@ -2066,7 +2066,7 @@ "groups": [ { "title": "Properties", - "children": [2672, 2671] + "children": [2677, 2676] } ], "sources": [ @@ -2082,7 +2082,7 @@ } }, { - "id": 2685, + "id": 2690, "name": "name", "variant": "declaration", "kind": 1024, @@ -2102,12 +2102,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2686, + "id": 2691, "name": "status", "variant": "declaration", "kind": 1024, @@ -2135,12 +2135,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2673, + "id": 2678, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2154,7 +2154,7 @@ ], "signatures": [ { - "id": 2674, + "id": 2679, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2169,14 +2169,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2675, + "id": 2680, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2679, + "id": 2684, "name": "code", "variant": "declaration", "kind": 1024, @@ -2214,7 +2214,7 @@ { "type": "reflection", "declaration": { - "id": 2680, + "id": 2685, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2227,7 +2227,7 @@ } }, { - "id": 2681, + "id": 2686, "name": "details", "variant": "declaration", "kind": 1024, @@ -2249,14 +2249,14 @@ { "type": "reflection", "declaration": { - "id": 2682, + "id": 2687, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2684, + "id": 2689, "name": "code", "variant": "declaration", "kind": 1024, @@ -2274,7 +2274,7 @@ } }, { - "id": 2683, + "id": 2688, "name": "error", "variant": "declaration", "kind": 1024, @@ -2295,7 +2295,7 @@ "groups": [ { "title": "Properties", - "children": [2684, 2683] + "children": [2689, 2688] } ], "sources": [ @@ -2311,7 +2311,7 @@ } }, { - "id": 2677, + "id": 2682, "name": "message", "variant": "declaration", "kind": 1024, @@ -2329,7 +2329,7 @@ } }, { - "id": 2676, + "id": 2681, "name": "name", "variant": "declaration", "kind": 1024, @@ -2347,7 +2347,7 @@ } }, { - "id": 2678, + "id": 2683, "name": "status", "variant": "declaration", "kind": 1024, @@ -2377,7 +2377,7 @@ "groups": [ { "title": "Properties", - "children": [2679, 2681, 2677, 2676, 2678] + "children": [2684, 2686, 2682, 2681, 2683] } ], "sources": [ @@ -2391,14 +2391,14 @@ }, "overwrites": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -2406,15 +2406,15 @@ "groups": [ { "title": "Constructors", - "children": [2662] + "children": [2667] }, { "title": "Properties", - "children": [2689, 2687, 2669, 2685, 2686] + "children": [2694, 2692, 2674, 2690, 2691] }, { "title": "Methods", - "children": [2673] + "children": [2678] } ], "sources": [ @@ -2427,14 +2427,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2644, + "id": 2649, "name": "AuthInvalidCredentialsError", "variant": "declaration", "kind": 128, @@ -2460,7 +2460,7 @@ }, "children": [ { - "id": 2645, + "id": 2650, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2474,7 +2474,7 @@ ], "signatures": [ { - "id": 2646, + "id": 2651, "name": "AuthInvalidCredentialsError", "variant": "signature", "kind": 16384, @@ -2488,7 +2488,7 @@ ], "parameters": [ { - "id": 2647, + "id": 2652, "name": "message", "variant": "param", "kind": 32768, @@ -2501,25 +2501,25 @@ ], "type": { "type": "reference", - "target": 2644, + "target": 2649, "name": "AuthInvalidCredentialsError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2652, + "id": 2657, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -2540,12 +2540,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2650, + "id": 2655, "name": "code", "variant": "declaration", "kind": 1024, @@ -2602,7 +2602,7 @@ { "type": "reflection", "declaration": { - "id": 2651, + "id": 2656, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2615,12 +2615,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2648, + "id": 2653, "name": "name", "variant": "declaration", "kind": 1024, @@ -2640,12 +2640,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2649, + "id": 2654, "name": "status", "variant": "declaration", "kind": 1024, @@ -2673,12 +2673,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2653, + "id": 2658, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -2694,7 +2694,7 @@ ], "signatures": [ { - "id": 2654, + "id": 2659, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -2711,14 +2711,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2655, + "id": 2660, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2659, + "id": 2664, "name": "code", "variant": "declaration", "kind": 1024, @@ -2756,7 +2756,7 @@ { "type": "reflection", "declaration": { - "id": 2660, + "id": 2665, "name": "__type", "variant": "declaration", "kind": 65536, @@ -2769,7 +2769,7 @@ } }, { - "id": 2657, + "id": 2662, "name": "message", "variant": "declaration", "kind": 1024, @@ -2787,7 +2787,7 @@ } }, { - "id": 2656, + "id": 2661, "name": "name", "variant": "declaration", "kind": 1024, @@ -2805,7 +2805,7 @@ } }, { - "id": 2658, + "id": 2663, "name": "status", "variant": "declaration", "kind": 1024, @@ -2835,7 +2835,7 @@ "groups": [ { "title": "Properties", - "children": [2659, 2657, 2656, 2658] + "children": [2664, 2662, 2661, 2663] } ], "sources": [ @@ -2849,14 +2849,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -2864,15 +2864,15 @@ "groups": [ { "title": "Constructors", - "children": [2645] + "children": [2650] }, { "title": "Properties", - "children": [2652, 2650, 2648, 2649] + "children": [2657, 2655, 2653, 2654] }, { "title": "Methods", - "children": [2653] + "children": [2658] } ], "sources": [ @@ -2885,14 +2885,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2774, + "id": 2796, "name": "AuthInvalidJwtError", "variant": "declaration", "kind": 128, @@ -2918,7 +2918,7 @@ }, "children": [ { - "id": 2775, + "id": 2797, "name": "constructor", "variant": "declaration", "kind": 512, @@ -2926,13 +2926,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 256, + "line": 280, "character": 4 } ], "signatures": [ { - "id": 2776, + "id": 2798, "name": "AuthInvalidJwtError", "variant": "signature", "kind": 16384, @@ -2940,13 +2940,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 256, + "line": 280, "character": 4 } ], "parameters": [ { - "id": 2777, + "id": 2799, "name": "message", "variant": "param", "kind": 32768, @@ -2959,25 +2959,25 @@ ], "type": { "type": "reference", - "target": 2774, + "target": 2796, "name": "AuthInvalidJwtError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2782, + "id": 2804, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -2998,12 +2998,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2780, + "id": 2802, "name": "code", "variant": "declaration", "kind": 1024, @@ -3060,7 +3060,7 @@ { "type": "reflection", "declaration": { - "id": 2781, + "id": 2803, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3073,12 +3073,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2778, + "id": 2800, "name": "name", "variant": "declaration", "kind": 1024, @@ -3098,12 +3098,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2779, + "id": 2801, "name": "status", "variant": "declaration", "kind": 1024, @@ -3131,12 +3131,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2783, + "id": 2805, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3152,7 +3152,7 @@ ], "signatures": [ { - "id": 2784, + "id": 2806, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3169,14 +3169,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2785, + "id": 2807, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2789, + "id": 2811, "name": "code", "variant": "declaration", "kind": 1024, @@ -3214,7 +3214,7 @@ { "type": "reflection", "declaration": { - "id": 2790, + "id": 2812, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3227,7 +3227,7 @@ } }, { - "id": 2787, + "id": 2809, "name": "message", "variant": "declaration", "kind": 1024, @@ -3245,7 +3245,7 @@ } }, { - "id": 2786, + "id": 2808, "name": "name", "variant": "declaration", "kind": 1024, @@ -3263,7 +3263,7 @@ } }, { - "id": 2788, + "id": 2810, "name": "status", "variant": "declaration", "kind": 1024, @@ -3293,7 +3293,7 @@ "groups": [ { "title": "Properties", - "children": [2789, 2787, 2786, 2788] + "children": [2811, 2809, 2808, 2810] } ], "sources": [ @@ -3307,14 +3307,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -3322,35 +3322,35 @@ "groups": [ { "title": "Constructors", - "children": [2775] + "children": [2797] }, { "title": "Properties", - "children": [2782, 2780, 2778, 2779] + "children": [2804, 2802, 2800, 2801] }, { "title": "Methods", - "children": [2783] + "children": [2805] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 255, + "line": 279, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2628, + "id": 2633, "name": "AuthInvalidTokenResponseError", "variant": "declaration", "kind": 128, @@ -3376,7 +3376,7 @@ }, "children": [ { - "id": 2629, + "id": 2634, "name": "constructor", "variant": "declaration", "kind": 512, @@ -3390,7 +3390,7 @@ ], "signatures": [ { - "id": 2630, + "id": 2635, "name": "AuthInvalidTokenResponseError", "variant": "signature", "kind": 16384, @@ -3404,25 +3404,25 @@ ], "type": { "type": "reference", - "target": 2628, + "target": 2633, "name": "AuthInvalidTokenResponseError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2635, + "id": 2640, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -3443,12 +3443,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2633, + "id": 2638, "name": "code", "variant": "declaration", "kind": 1024, @@ -3505,7 +3505,7 @@ { "type": "reflection", "declaration": { - "id": 2634, + "id": 2639, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3518,12 +3518,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2631, + "id": 2636, "name": "name", "variant": "declaration", "kind": 1024, @@ -3543,12 +3543,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2632, + "id": 2637, "name": "status", "variant": "declaration", "kind": 1024, @@ -3576,12 +3576,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2636, + "id": 2641, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -3597,7 +3597,7 @@ ], "signatures": [ { - "id": 2637, + "id": 2642, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -3614,14 +3614,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2638, + "id": 2643, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2642, + "id": 2647, "name": "code", "variant": "declaration", "kind": 1024, @@ -3659,7 +3659,7 @@ { "type": "reflection", "declaration": { - "id": 2643, + "id": 2648, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3672,7 +3672,7 @@ } }, { - "id": 2640, + "id": 2645, "name": "message", "variant": "declaration", "kind": 1024, @@ -3690,7 +3690,7 @@ } }, { - "id": 2639, + "id": 2644, "name": "name", "variant": "declaration", "kind": 1024, @@ -3708,7 +3708,7 @@ } }, { - "id": 2641, + "id": 2646, "name": "status", "variant": "declaration", "kind": 1024, @@ -3738,7 +3738,7 @@ "groups": [ { "title": "Properties", - "children": [2642, 2640, 2639, 2641] + "children": [2647, 2645, 2644, 2646] } ], "sources": [ @@ -3752,14 +3752,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -3767,15 +3767,15 @@ "groups": [ { "title": "Constructors", - "children": [2629] + "children": [2634] }, { "title": "Properties", - "children": [2635, 2633, 2631, 2632] + "children": [2640, 2638, 2636, 2637] }, { "title": "Methods", - "children": [2636] + "children": [2641] } ], "sources": [ @@ -3788,14 +3788,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2719, + "id": 2724, "name": "AuthPKCECodeVerifierMissingError", "variant": "declaration", "kind": 128, @@ -3821,7 +3821,7 @@ }, "children": [ { - "id": 2720, + "id": 2725, "name": "constructor", "variant": "declaration", "kind": 512, @@ -3835,7 +3835,7 @@ ], "signatures": [ { - "id": 2721, + "id": 2726, "name": "AuthPKCECodeVerifierMissingError", "variant": "signature", "kind": 16384, @@ -3849,25 +3849,25 @@ ], "type": { "type": "reference", - "target": 2719, + "target": 2724, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2726, + "id": 2731, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -3888,12 +3888,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2724, + "id": 2729, "name": "code", "variant": "declaration", "kind": 1024, @@ -3950,7 +3950,7 @@ { "type": "reflection", "declaration": { - "id": 2725, + "id": 2730, "name": "__type", "variant": "declaration", "kind": 65536, @@ -3963,12 +3963,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2722, + "id": 2727, "name": "name", "variant": "declaration", "kind": 1024, @@ -3988,12 +3988,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2723, + "id": 2728, "name": "status", "variant": "declaration", "kind": 1024, @@ -4021,12 +4021,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2727, + "id": 2732, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4042,7 +4042,7 @@ ], "signatures": [ { - "id": 2728, + "id": 2733, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4059,14 +4059,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2729, + "id": 2734, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2733, + "id": 2738, "name": "code", "variant": "declaration", "kind": 1024, @@ -4104,7 +4104,7 @@ { "type": "reflection", "declaration": { - "id": 2734, + "id": 2739, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4117,7 +4117,7 @@ } }, { - "id": 2731, + "id": 2736, "name": "message", "variant": "declaration", "kind": 1024, @@ -4135,7 +4135,7 @@ } }, { - "id": 2730, + "id": 2735, "name": "name", "variant": "declaration", "kind": 1024, @@ -4153,7 +4153,7 @@ } }, { - "id": 2732, + "id": 2737, "name": "status", "variant": "declaration", "kind": 1024, @@ -4183,7 +4183,7 @@ "groups": [ { "title": "Properties", - "children": [2733, 2731, 2730, 2732] + "children": [2738, 2736, 2735, 2737] } ], "sources": [ @@ -4197,14 +4197,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -4212,15 +4212,15 @@ "groups": [ { "title": "Constructors", - "children": [2720] + "children": [2725] }, { "title": "Properties", - "children": [2726, 2724, 2722, 2723] + "children": [2731, 2729, 2727, 2728] }, { "title": "Methods", - "children": [2727] + "children": [2732] } ], "sources": [ @@ -4233,14 +4233,14 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2690, + "id": 2695, "name": "AuthPKCEGrantCodeExchangeError", "variant": "declaration", "kind": 128, @@ -4266,7 +4266,7 @@ }, "children": [ { - "id": 2691, + "id": 2696, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4280,7 +4280,7 @@ ], "signatures": [ { - "id": 2692, + "id": 2697, "name": "AuthPKCEGrantCodeExchangeError", "variant": "signature", "kind": 16384, @@ -4294,7 +4294,7 @@ ], "parameters": [ { - "id": 2693, + "id": 2698, "name": "message", "variant": "param", "kind": 32768, @@ -4305,7 +4305,7 @@ } }, { - "id": 2694, + "id": 2699, "name": "details", "variant": "param", "kind": 32768, @@ -4322,14 +4322,14 @@ { "type": "reflection", "declaration": { - "id": 2695, + "id": 2700, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2697, + "id": 2702, "name": "code", "variant": "declaration", "kind": 1024, @@ -4347,7 +4347,7 @@ } }, { - "id": 2696, + "id": 2701, "name": "error", "variant": "declaration", "kind": 1024, @@ -4368,7 +4368,7 @@ "groups": [ { "title": "Properties", - "children": [2697, 2696] + "children": [2702, 2701] } ], "sources": [ @@ -4386,25 +4386,25 @@ ], "type": { "type": "reference", - "target": 2690, + "target": 2695, "name": "AuthPKCEGrantCodeExchangeError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2718, + "id": 2723, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -4425,12 +4425,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2716, + "id": 2721, "name": "code", "variant": "declaration", "kind": 1024, @@ -4487,7 +4487,7 @@ { "type": "reflection", "declaration": { - "id": 2717, + "id": 2722, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4500,12 +4500,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2698, + "id": 2703, "name": "details", "variant": "declaration", "kind": 1024, @@ -4527,14 +4527,14 @@ { "type": "reflection", "declaration": { - "id": 2699, + "id": 2704, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2701, + "id": 2706, "name": "code", "variant": "declaration", "kind": 1024, @@ -4552,7 +4552,7 @@ } }, { - "id": 2700, + "id": 2705, "name": "error", "variant": "declaration", "kind": 1024, @@ -4573,7 +4573,7 @@ "groups": [ { "title": "Properties", - "children": [2701, 2700] + "children": [2706, 2705] } ], "sources": [ @@ -4589,7 +4589,7 @@ } }, { - "id": 2714, + "id": 2719, "name": "name", "variant": "declaration", "kind": 1024, @@ -4609,12 +4609,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2715, + "id": 2720, "name": "status", "variant": "declaration", "kind": 1024, @@ -4642,12 +4642,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2702, + "id": 2707, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -4661,7 +4661,7 @@ ], "signatures": [ { - "id": 2703, + "id": 2708, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -4676,14 +4676,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2704, + "id": 2709, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2708, + "id": 2713, "name": "code", "variant": "declaration", "kind": 1024, @@ -4721,7 +4721,7 @@ { "type": "reflection", "declaration": { - "id": 2709, + "id": 2714, "name": "__type", "variant": "declaration", "kind": 65536, @@ -4734,7 +4734,7 @@ } }, { - "id": 2710, + "id": 2715, "name": "details", "variant": "declaration", "kind": 1024, @@ -4756,14 +4756,14 @@ { "type": "reflection", "declaration": { - "id": 2711, + "id": 2716, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2713, + "id": 2718, "name": "code", "variant": "declaration", "kind": 1024, @@ -4781,7 +4781,7 @@ } }, { - "id": 2712, + "id": 2717, "name": "error", "variant": "declaration", "kind": 1024, @@ -4802,7 +4802,7 @@ "groups": [ { "title": "Properties", - "children": [2713, 2712] + "children": [2718, 2717] } ], "sources": [ @@ -4818,7 +4818,7 @@ } }, { - "id": 2706, + "id": 2711, "name": "message", "variant": "declaration", "kind": 1024, @@ -4836,7 +4836,7 @@ } }, { - "id": 2705, + "id": 2710, "name": "name", "variant": "declaration", "kind": 1024, @@ -4854,7 +4854,7 @@ } }, { - "id": 2707, + "id": 2712, "name": "status", "variant": "declaration", "kind": 1024, @@ -4884,7 +4884,7 @@ "groups": [ { "title": "Properties", - "children": [2708, 2710, 2706, 2705, 2707] + "children": [2713, 2715, 2711, 2710, 2712] } ], "sources": [ @@ -4898,14 +4898,14 @@ }, "overwrites": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "overwrites": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -4913,15 +4913,15 @@ "groups": [ { "title": "Constructors", - "children": [2691] + "children": [2696] }, { "title": "Properties", - "children": [2718, 2716, 2698, 2714, 2715] + "children": [2723, 2721, 2703, 2719, 2720] }, { "title": "Methods", - "children": [2702] + "children": [2707] } ], "sources": [ @@ -4934,15 +4934,15 @@ "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2735, - "name": "AuthRetryableFetchError", + "id": 2758, + "name": "AuthRefreshDiscardedError", "variant": "declaration", "kind": 128, "flags": {}, @@ -4950,7 +4950,23 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a transient fetch issue occurs." + "text": "Returned when the server rotated a refresh token successfully but the\nclient chose not to persist the rotated tokens because the local session\nchanged mid-flight. Usually means a concurrent " + }, + { + "kind": "code", + "text": "`signOut`" + }, + { + "kind": "text", + "text": " cleared storage\nbetween when the refresh started and when it came back.\n\nSet on the " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " field of the refresh result so callers can tell \"we\ngot rotated tokens but threw them away\" apart from \"the refresh failed.\"\nThe rotated session on the server will be picked up on the next refresh\nvia GoTrue's parent-of-active path." } ], "blockTags": [ @@ -4959,7 +4975,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" + "text": "```ts\nimport { isAuthRefreshDiscardedError } from '@supabase/auth-js'\n\nif (isAuthRefreshDiscardedError(error)) {\n // Concurrent signOut/sign-in raced our refresh. Treat as a no-op.\n}\n```" } ] } @@ -4967,7 +4983,7 @@ }, "children": [ { - "id": 2736, + "id": 2759, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4975,69 +4991,60 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 212, + "line": 236, "character": 4 } ], "signatures": [ { - "id": 2737, - "name": "AuthRetryableFetchError", + "id": 2760, + "name": "AuthRefreshDiscardedError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 212, + "line": 236, "character": 4 } ], "parameters": [ { - "id": 2738, + "id": 2761, "name": "message", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", "name": "string" } - }, - { - "id": 2739, - "name": "status", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } } ], "type": { "type": "reference", - "target": 2735, - "name": "AuthRetryableFetchError", + "target": 2758, + "name": "AuthRefreshDiscardedError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2744, + "id": 2766, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -5058,12 +5065,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2742, + "id": 2764, "name": "code", "variant": "declaration", "kind": 1024, @@ -5120,7 +5127,7 @@ { "type": "reflection", "declaration": { - "id": 2743, + "id": 2765, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5133,12 +5140,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2740, + "id": 2762, "name": "name", "variant": "declaration", "kind": 1024, @@ -5158,12 +5165,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2741, + "id": 2763, "name": "status", "variant": "declaration", "kind": 1024, @@ -5191,12 +5198,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2745, + "id": 2767, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -5212,7 +5219,7 @@ ], "signatures": [ { - "id": 2746, + "id": 2768, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -5229,14 +5236,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2747, + "id": 2769, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2751, + "id": 2773, "name": "code", "variant": "declaration", "kind": 1024, @@ -5274,7 +5281,7 @@ { "type": "reflection", "declaration": { - "id": 2752, + "id": 2774, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5287,7 +5294,7 @@ } }, { - "id": 2749, + "id": 2771, "name": "message", "variant": "declaration", "kind": 1024, @@ -5305,7 +5312,7 @@ } }, { - "id": 2748, + "id": 2770, "name": "name", "variant": "declaration", "kind": 1024, @@ -5323,7 +5330,7 @@ } }, { - "id": 2750, + "id": 2772, "name": "status", "variant": "declaration", "kind": 1024, @@ -5353,7 +5360,7 @@ "groups": [ { "title": "Properties", - "children": [2751, 2749, 2748, 2750] + "children": [2773, 2771, 2770, 2772] } ], "sources": [ @@ -5367,14 +5374,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -5382,36 +5389,36 @@ "groups": [ { "title": "Constructors", - "children": [2736] + "children": [2759] }, { "title": "Properties", - "children": [2744, 2742, 2740, 2741] + "children": [2766, 2764, 2762, 2763] }, { "title": "Methods", - "children": [2745] + "children": [2767] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 211, + "line": 235, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2612, - "name": "AuthSessionMissingError", + "id": 2740, + "name": "AuthRetryableFetchError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5419,7 +5426,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when an operation requires a session but none is present." + "text": "Error thrown when a transient fetch issue occurs." } ], "blockTags": [ @@ -5428,7 +5435,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" + "text": "```ts\nimport { AuthRetryableFetchError } from '@supabase/auth-js'\n\nthrow new AuthRetryableFetchError('Service temporarily unavailable', 503)\n```" } ] } @@ -5436,7 +5443,7 @@ }, "children": [ { - "id": 2613, + "id": 2741, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5444,45 +5451,69 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 92, + "line": 212, "character": 4 } ], "signatures": [ { - "id": 2614, - "name": "AuthSessionMissingError", + "id": 2742, + "name": "AuthRetryableFetchError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 92, + "line": 212, "character": 4 } ], + "parameters": [ + { + "id": 2743, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2744, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], "type": { "type": "reference", - "target": 2612, - "name": "AuthSessionMissingError", + "target": 2740, + "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, + "target": 2599, "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, + "target": 2598, "name": "CustomAuthError.constructor" } }, { - "id": 2619, + "id": 2749, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -5503,12 +5534,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, + "target": 2608, "name": "CustomAuthError.__isAuthError" } }, { - "id": 2617, + "id": 2747, "name": "code", "variant": "declaration", "kind": 1024, @@ -5565,7 +5596,7 @@ { "type": "reflection", "declaration": { - "id": 2618, + "id": 2748, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5578,12 +5609,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, + "target": 2606, "name": "CustomAuthError.code" } }, { - "id": 2615, + "id": 2745, "name": "name", "variant": "declaration", "kind": 1024, @@ -5603,12 +5634,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2599, + "target": 2604, "name": "CustomAuthError.name" } }, { - "id": 2616, + "id": 2746, "name": "status", "variant": "declaration", "kind": 1024, @@ -5636,12 +5667,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2600, + "target": 2605, "name": "CustomAuthError.status" } }, { - "id": 2620, + "id": 2750, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -5657,7 +5688,7 @@ ], "signatures": [ { - "id": 2621, + "id": 2751, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -5674,14 +5705,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2622, + "id": 2752, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2626, + "id": 2756, "name": "code", "variant": "declaration", "kind": 1024, @@ -5719,7 +5750,7 @@ { "type": "reflection", "declaration": { - "id": 2627, + "id": 2757, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5732,7 +5763,7 @@ } }, { - "id": 2624, + "id": 2754, "name": "message", "variant": "declaration", "kind": 1024, @@ -5750,7 +5781,7 @@ } }, { - "id": 2623, + "id": 2753, "name": "name", "variant": "declaration", "kind": 1024, @@ -5768,7 +5799,7 @@ } }, { - "id": 2625, + "id": 2755, "name": "status", "variant": "declaration", "kind": 1024, @@ -5798,7 +5829,7 @@ "groups": [ { "title": "Properties", - "children": [2626, 2624, 2623, 2625] + "children": [2756, 2754, 2753, 2755] } ], "sources": [ @@ -5812,14 +5843,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2605, + "target": 2610, "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2604, + "target": 2609, "name": "CustomAuthError.toJSON" } } @@ -5827,36 +5858,36 @@ "groups": [ { "title": "Constructors", - "children": [2613] + "children": [2741] }, { "title": "Properties", - "children": [2619, 2617, 2615, 2616] + "children": [2749, 2747, 2745, 2746] }, { "title": "Methods", - "children": [2620] + "children": [2750] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 91, + "line": 211, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, + "target": 2597, "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2574, - "name": "AuthUnknownError", + "id": 2617, + "name": "AuthSessionMissingError", "variant": "declaration", "kind": 128, "flags": {}, @@ -5864,7 +5895,7 @@ "summary": [ { "kind": "text", - "text": "Wraps non-standard errors so callers can inspect the root cause." + "text": "Error thrown when an operation requires a session but none is present." } ], "blockTags": [ @@ -5873,7 +5904,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" + "text": "```ts\nimport { AuthSessionMissingError } from '@supabase/auth-js'\n\nthrow new AuthSessionMissingError()\n```" } ] } @@ -5881,7 +5912,7 @@ }, "children": [ { - "id": 2575, + "id": 2618, "name": "constructor", "variant": "declaration", "kind": 512, @@ -5889,69 +5920,45 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 64, + "line": 92, "character": 4 } ], "signatures": [ { - "id": 2576, - "name": "AuthUnknownError", + "id": 2619, + "name": "AuthSessionMissingError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 64, + "line": 92, "character": 4 } ], - "parameters": [ - { - "id": 2577, - "name": "message", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2578, - "name": "originalError", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "unknown" - } - } - ], "type": { "type": "reference", - "target": 2574, - "name": "AuthUnknownError", + "target": 2617, + "name": "AuthSessionMissingError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2540, - "name": "AuthError.constructor" + "target": 2599, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2539, - "name": "AuthError.constructor" + "target": 2598, + "name": "CustomAuthError.constructor" } }, { - "id": 2583, + "id": 2624, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -5972,12 +5979,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2547, - "name": "AuthError.__isAuthError" + "target": 2608, + "name": "CustomAuthError.__isAuthError" } }, { - "id": 2580, + "id": 2622, "name": "code", "variant": "declaration", "kind": 1024, @@ -6034,7 +6041,7 @@ { "type": "reflection", "declaration": { - "id": 2581, + "id": 2623, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6047,30 +6054,37 @@ }, "inheritedFrom": { "type": "reference", - "target": 2544, - "name": "AuthError.code" + "target": 2606, + "name": "CustomAuthError.code" } }, { - "id": 2579, - "name": "originalError", + "id": 2620, + "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 63, + "line": 77, "character": 4 } ], "type": { "type": "intrinsic", - "name": "unknown" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 2604, + "name": "CustomAuthError.name" } }, { - "id": 2582, + "id": 2621, "name": "status", "variant": "declaration", "kind": 1024, @@ -6088,31 +6102,22 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 22, + "line": 78, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": 2546, - "name": "AuthError.status" + "target": 2605, + "name": "CustomAuthError.status" } }, { - "id": 2584, + "id": 2625, "name": "toJSON", "variant": "declaration", "kind": 2048, @@ -6128,7 +6133,7 @@ ], "signatures": [ { - "id": 2585, + "id": 2626, "name": "toJSON", "variant": "signature", "kind": 4096, @@ -6145,14 +6150,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2586, + "id": 2627, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2590, + "id": 2631, "name": "code", "variant": "declaration", "kind": 1024, @@ -6190,7 +6195,7 @@ { "type": "reflection", "declaration": { - "id": 2591, + "id": 2632, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6203,7 +6208,7 @@ } }, { - "id": 2588, + "id": 2629, "name": "message", "variant": "declaration", "kind": 1024, @@ -6221,7 +6226,7 @@ } }, { - "id": 2587, + "id": 2628, "name": "name", "variant": "declaration", "kind": 1024, @@ -6239,7 +6244,7 @@ } }, { - "id": 2589, + "id": 2630, "name": "status", "variant": "declaration", "kind": 1024, @@ -6269,7 +6274,7 @@ "groups": [ { "title": "Properties", - "children": [2590, 2588, 2587, 2589] + "children": [2631, 2629, 2628, 2630] } ], "sources": [ @@ -6283,51 +6288,51 @@ }, "inheritedFrom": { "type": "reference", - "target": 2549, - "name": "AuthError.toJSON" + "target": 2610, + "name": "CustomAuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2548, - "name": "AuthError.toJSON" + "target": 2609, + "name": "CustomAuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [2575] + "children": [2618] }, { "title": "Properties", - "children": [2583, 2580, 2579, 2582] + "children": [2624, 2622, 2620, 2621] }, { "title": "Methods", - "children": [2584] + "children": [2625] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 62, + "line": 91, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2538, - "name": "AuthError", + "target": 2597, + "name": "CustomAuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2753, - "name": "AuthWeakPasswordError", + "id": 2579, + "name": "AuthUnknownError", "variant": "declaration", "kind": 128, "flags": {}, @@ -6335,7 +6340,7 @@ "summary": [ { "kind": "text", - "text": "Error thrown when a supplied password is considered weak." + "text": "Wraps non-standard errors so callers can inspect the root cause." } ], "blockTags": [ @@ -6344,7 +6349,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" + "text": "```ts\nimport { AuthUnknownError } from '@supabase/auth-js'\n\ntry {\n await someAuthCall()\n} catch (err) {\n throw new AuthUnknownError('Auth failed', err)\n}\n```" } ] } @@ -6352,7 +6357,7 @@ }, "children": [ { - "id": 2754, + "id": 2580, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6360,27 +6365,27 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 235, + "line": 64, "character": 4 } ], "signatures": [ { - "id": 2755, - "name": "AuthWeakPasswordError", + "id": 2581, + "name": "AuthUnknownError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 235, + "line": 64, "character": 4 } ], "parameters": [ { - "id": 2756, + "id": 2582, "name": "message", "variant": "param", "kind": 32768, @@ -6391,65 +6396,38 @@ } }, { - "id": 2757, - "name": "status", + "id": 2583, + "name": "originalError", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2758, - "name": "reasons", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "name": "unknown" } } ], "type": { "type": "reference", - "target": 2753, - "name": "AuthWeakPasswordError", + "target": 2579, + "name": "AuthUnknownError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2594, - "name": "CustomAuthError.constructor" + "target": 2545, + "name": "AuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2593, - "name": "CustomAuthError.constructor" + "target": 2544, + "name": "AuthError.constructor" } }, { - "id": 2773, + "id": 2588, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -6470,12 +6448,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2603, - "name": "CustomAuthError.__isAuthError" + "target": 2552, + "name": "AuthError.__isAuthError" } }, { - "id": 2771, + "id": 2585, "name": "code", "variant": "declaration", "kind": 1024, @@ -6532,7 +6510,7 @@ { "type": "reflection", "declaration": { - "id": 2772, + "id": 2586, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6545,79 +6523,30 @@ }, "inheritedFrom": { "type": "reference", - "target": 2601, - "name": "CustomAuthError.code" - } - }, - { - "id": 2769, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 77, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 2599, - "name": "CustomAuthError.name" + "target": 2549, + "name": "AuthError.code" } }, { - "id": 2759, - "name": "reasons", + "id": 2584, + "name": "originalError", "variant": "declaration", "kind": 1024, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Reasons why the password is deemed weak." - } - ] - }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 234, + "line": 63, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } + "type": "intrinsic", + "name": "unknown" } }, { - "id": 2770, + "id": 2587, "name": "status", "variant": "declaration", "kind": 1024, @@ -6635,58 +6564,71 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 78, + "line": 22, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] }, "inheritedFrom": { "type": "reference", - "target": 2600, - "name": "CustomAuthError.status" + "target": 2551, + "name": "AuthError.status" } }, { - "id": 2760, + "id": 2589, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 236, + "line": 25, "character": 4 } ], "signatures": [ { - "id": 2761, + "id": 2590, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 236, + "line": 25, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2762, + "id": 2591, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2766, + "id": 2595, "name": "code", "variant": "declaration", "kind": 1024, @@ -6694,7 +6636,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 240, + "line": 29, "character": 8 } ], @@ -6724,7 +6666,7 @@ { "type": "reflection", "declaration": { - "id": 2767, + "id": 2596, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6737,7 +6679,7 @@ } }, { - "id": 2764, + "id": 2593, "name": "message", "variant": "declaration", "kind": 1024, @@ -6745,7 +6687,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 238, + "line": 27, "character": 8 } ], @@ -6755,7 +6697,7 @@ } }, { - "id": 2763, + "id": 2592, "name": "name", "variant": "declaration", "kind": 1024, @@ -6763,7 +6705,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 237, + "line": 26, "character": 8 } ], @@ -6773,41 +6715,7 @@ } }, { - "id": 2768, - "name": "reasons", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 241, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "length" - }, - { - "type": "literal", - "value": "characters" - }, - { - "type": "literal", - "value": "pwned" - } - ] - } - } - }, - { - "id": 2765, + "id": 2594, "name": "status", "variant": "declaration", "kind": 1024, @@ -6815,7 +6723,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 239, + "line": 28, "character": 8 } ], @@ -6837,65 +6745,65 @@ "groups": [ { "title": "Properties", - "children": [2766, 2764, 2763, 2768, 2765] + "children": [2595, 2593, 2592, 2594] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 236, + "line": 25, "character": 14 } ] } }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 2605, - "name": "CustomAuthError.toJSON" + "target": 2554, + "name": "AuthError.toJSON" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 2604, - "name": "CustomAuthError.toJSON" + "target": 2553, + "name": "AuthError.toJSON" } } ], "groups": [ { "title": "Constructors", - "children": [2754] + "children": [2580] }, { "title": "Properties", - "children": [2773, 2771, 2769, 2759, 2770] + "children": [2588, 2585, 2584, 2587] }, { "title": "Methods", - "children": [2760] + "children": [2589] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 230, + "line": 62, "character": 21 } ], "extendedTypes": [ { "type": "reference", - "target": 2592, - "name": "CustomAuthError", + "target": 2543, + "name": "AuthError", "package": "@supabase/auth-js" } ] }, { - "id": 2592, - "name": "CustomAuthError", + "id": 2775, + "name": "AuthWeakPasswordError", "variant": "declaration", "kind": 128, "flags": {}, @@ -6903,7 +6811,7 @@ "summary": [ { "kind": "text", - "text": "Flexible error class used to create named auth errors at runtime." + "text": "Error thrown when a supplied password is considered weak." } ], "blockTags": [ @@ -6912,7 +6820,7 @@ "content": [ { "kind": "code", - "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + "text": "```ts\nimport { AuthWeakPasswordError } from '@supabase/auth-js'\n\nthrow new AuthWeakPasswordError('Password too short', 400, ['min_length'])\n```" } ] } @@ -6920,7 +6828,7 @@ }, "children": [ { - "id": 2593, + "id": 2776, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6928,27 +6836,27 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 79, + "line": 259, "character": 4 } ], "signatures": [ { - "id": 2594, - "name": "CustomAuthError", + "id": 2777, + "name": "AuthWeakPasswordError", "variant": "signature", "kind": 16384, "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 79, + "line": 259, "character": 4 } ], "parameters": [ { - "id": 2595, + "id": 2778, "name": "message", "variant": "param", "kind": 32768, @@ -6959,18 +6867,7 @@ } }, { - "id": 2596, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2597, + "id": 2779, "name": "status", "variant": "param", "kind": 32768, @@ -6981,47 +6878,54 @@ } }, { - "id": 2598, - "name": "code", + "id": 2780, + "name": "reasons", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "undefined" - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } } } ], "type": { "type": "reference", - "target": 2592, - "name": "CustomAuthError", + "target": 2775, + "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" }, "overwrites": { "type": "reference", - "target": 2540, - "name": "AuthError.constructor" + "target": 2599, + "name": "CustomAuthError.constructor" } } ], "overwrites": { "type": "reference", - "target": 2539, - "name": "AuthError.constructor" + "target": 2598, + "name": "CustomAuthError.constructor" } }, { - "id": 2603, + "id": 2795, "name": "__isAuthError", "variant": "declaration", "kind": 1024, @@ -7042,12 +6946,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2547, - "name": "AuthError.__isAuthError" + "target": 2608, + "name": "CustomAuthError.__isAuthError" } }, { - "id": 2601, + "id": 2793, "name": "code", "variant": "declaration", "kind": 1024, @@ -7104,7 +7008,7 @@ { "type": "reflection", "declaration": { - "id": 2602, + "id": 2794, "name": "__type", "variant": "declaration", "kind": 65536, @@ -7117,16 +7021,18 @@ }, "inheritedFrom": { "type": "reference", - "target": 2544, - "name": "AuthError.code" + "target": 2606, + "name": "CustomAuthError.code" } }, { - "id": 2599, + "id": 2791, "name": "name", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", @@ -7138,18 +7044,62 @@ "type": "intrinsic", "name": "string" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": -1, - "name": "AuthError.name" + "target": 2604, + "name": "CustomAuthError.name" } }, { - "id": 2600, - "name": "status", + "id": 2781, + "name": "reasons", "variant": "declaration", "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Reasons why the password is deemed weak." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 258, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 2792, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, "comment": { "summary": [ { @@ -7169,54 +7119,50 @@ "type": "intrinsic", "name": "number" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "target": 2546, - "name": "AuthError.status" + "target": 2605, + "name": "CustomAuthError.status" } }, { - "id": 2604, + "id": 2782, "name": "toJSON", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 25, + "line": 260, "character": 4 } ], "signatures": [ { - "id": 2605, + "id": 2783, "name": "toJSON", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 25, + "line": 260, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2606, + "id": 2784, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2610, + "id": 2788, "name": "code", "variant": "declaration", "kind": 1024, @@ -7224,7 +7170,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 29, + "line": 264, "character": 8 } ], @@ -7254,7 +7200,7 @@ { "type": "reflection", "declaration": { - "id": 2611, + "id": 2789, "name": "__type", "variant": "declaration", "kind": 65536, @@ -7267,7 +7213,7 @@ } }, { - "id": 2608, + "id": 2786, "name": "message", "variant": "declaration", "kind": 1024, @@ -7275,7 +7221,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 27, + "line": 262, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2785, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 261, "character": 8 } ], @@ -7285,7 +7249,519 @@ } }, { + "id": 2790, + "name": "reasons", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 265, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "length" + }, + { + "type": "literal", + "value": "characters" + }, + { + "type": "literal", + "value": "pwned" + } + ] + } + } + }, + { + "id": 2787, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 263, + "character": 8 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [2788, 2786, 2785, 2790, 2787] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 260, + "character": 14 + } + ] + } + }, + "overwrites": { + "type": "reference", + "target": 2610, + "name": "CustomAuthError.toJSON" + } + } + ], + "overwrites": { + "type": "reference", + "target": 2609, + "name": "CustomAuthError.toJSON" + } + } + ], + "groups": [ + { + "title": "Constructors", + "children": [2776] + }, + { + "title": "Properties", + "children": [2795, 2793, 2791, 2781, 2792] + }, + { + "title": "Methods", + "children": [2782] + } + ], + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 254, + "character": 21 + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 2597, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + } + ] + }, + { + "id": 2597, + "name": "CustomAuthError", + "variant": "declaration", + "kind": 128, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Flexible error class used to create named auth errors at runtime." + } + ], + "blockTags": [ + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nimport { CustomAuthError } from '@supabase/auth-js'\n\nthrow new CustomAuthError('My custom auth error', 'MyAuthError', 400, 'custom_code')\n```" + } + ] + } + ] + }, + "children": [ + { + "id": 2598, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 79, + "character": 4 + } + ], + "signatures": [ + { + "id": 2599, + "name": "CustomAuthError", + "variant": "signature", + "kind": 16384, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 79, + "character": 4 + } + ], + "parameters": [ + { + "id": 2600, + "name": "message", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2601, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2602, + "name": "status", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2603, + "name": "code", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "type": { + "type": "reference", + "target": 2597, + "name": "CustomAuthError", + "package": "@supabase/auth-js" + }, + "overwrites": { + "type": "reference", + "target": 2545, + "name": "AuthError.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "target": 2544, + "name": "AuthError.constructor" + } + }, + { + "id": 2608, + "name": "__isAuthError", + "variant": "declaration", + "kind": 1024, + "flags": { + "isProtected": true, + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 23, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": 2552, + "name": "AuthError.__isAuthError" + } + }, + { + "id": 2606, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#status" + }, + { + "kind": "text", + "text": " will also be undefined." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 20, + "character": 4 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../auth-js/src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { "id": 2607, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 2549, + "name": "AuthError.code" + } + }, + { + "id": 2604, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 77, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "AuthError.name" + } + }, + { + "id": 2605, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "HTTP status code that caused the error." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 78, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "overwrites": { + "type": "reference", + "target": 2551, + "name": "AuthError.status" + } + }, + { + "id": 2609, + "name": "toJSON", + "variant": "declaration", + "kind": 2048, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 25, + "character": 4 + } + ], + "signatures": [ + { + "id": 2610, + "name": "toJSON", + "variant": "signature", + "kind": 4096, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 25, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2611, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 2615, + "name": "code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 29, + "character": 8 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../auth-js/src/lib/error-codes.ts", + "qualifiedName": "ErrorCode" + }, + "name": "ErrorCode", + "package": "@supabase/auth-js" + }, + { + "type": "intersection", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 2616, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + ] + } + ] + } + }, + { + "id": 2613, + "name": "message", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 27, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2612, "name": "name", "variant": "declaration", "kind": 1024, @@ -7303,7 +7779,7 @@ } }, { - "id": 2609, + "id": 2614, "name": "status", "variant": "declaration", "kind": 1024, @@ -7333,7 +7809,7 @@ "groups": [ { "title": "Properties", - "children": [2610, 2608, 2607, 2609] + "children": [2615, 2613, 2612, 2614] } ], "sources": [ @@ -7347,14 +7823,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 2549, + "target": 2554, "name": "AuthError.toJSON" } } ], "inheritedFrom": { "type": "reference", - "target": 2548, + "target": 2553, "name": "AuthError.toJSON" } } @@ -7362,15 +7838,15 @@ "groups": [ { "title": "Constructors", - "children": [2593] + "children": [2598] }, { "title": "Properties", - "children": [2603, 2601, 2599, 2600] + "children": [2608, 2606, 2604, 2605] }, { "title": "Methods", - "children": [2604] + "children": [2609] } ], "sources": [ @@ -7383,7 +7859,7 @@ "extendedTypes": [ { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -7391,47 +7867,52 @@ "extendedBy": [ { "type": "reference", - "target": 2612, + "target": 2617, "name": "AuthSessionMissingError" }, { "type": "reference", - "target": 2628, + "target": 2633, "name": "AuthInvalidTokenResponseError" }, { "type": "reference", - "target": 2644, + "target": 2649, "name": "AuthInvalidCredentialsError" }, { "type": "reference", - "target": 2661, + "target": 2666, "name": "AuthImplicitGrantRedirectError" }, { "type": "reference", - "target": 2690, + "target": 2695, "name": "AuthPKCEGrantCodeExchangeError" }, { "type": "reference", - "target": 2719, + "target": 2724, "name": "AuthPKCECodeVerifierMissingError" }, { "type": "reference", - "target": 2735, + "target": 2740, "name": "AuthRetryableFetchError" }, { "type": "reference", - "target": 2753, + "target": 2758, + "name": "AuthRefreshDiscardedError" + }, + { + "type": "reference", + "target": 2775, "name": "AuthWeakPasswordError" }, { "type": "reference", - "target": 2774, + "target": 2796, "name": "AuthInvalidJwtError" } ] @@ -8533,7 +9014,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 48, + "line": 47, "character": 4 } ], @@ -8577,7 +9058,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 48, + "line": 47, "character": 4 } ], @@ -8608,13 +9089,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 54, + "line": 53, "character": 8 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } @@ -8630,7 +9111,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 53, + "line": 52, "character": 8 } ], @@ -8858,7 +9339,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 50, + "line": 49, "character": 8 } ], @@ -8873,7 +9354,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 50, + "line": 49, "character": 18 } ], @@ -8887,7 +9368,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 51, + "line": 50, "character": 12 } ], @@ -8922,7 +9403,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 49, + "line": 48, "character": 8 } ], @@ -8941,7 +9422,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 48, + "line": 47, "character": 56 } ] @@ -8982,13 +9463,13 @@ ], "type": { "type": "reference", - "target": 2341, + "target": 2343, "name": "GoTrueAdminCustomProvidersApi", "package": "@supabase/auth-js" } }, { - "id": 1161, + "id": 1160, "name": "experimental", "variant": "declaration", "kind": 1024, @@ -8998,19 +9479,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 26, + "line": 25, "character": 14 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } }, { - "id": 1153, + "id": 1152, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -9020,14 +9501,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 25, + "line": 24, "character": 14 } ], "type": { "type": "reflection", "declaration": { - "id": 1154, + "id": 1153, "name": "__type", "variant": "declaration", "kind": 65536, @@ -9046,7 +9527,7 @@ ], "signatures": [ { - "id": 1155, + "id": 1154, "name": "__type", "variant": "signature", "kind": 4096, @@ -9068,7 +9549,7 @@ ], "parameters": [ { - "id": 1156, + "id": 1155, "name": "input", "variant": "param", "kind": 32768, @@ -9098,7 +9579,7 @@ } }, { - "id": 1157, + "id": 1156, "name": "init", "variant": "param", "kind": 32768, @@ -9138,7 +9619,7 @@ } }, { - "id": 1158, + "id": 1157, "name": "__type", "variant": "signature", "kind": 4096, @@ -9160,7 +9641,7 @@ ], "parameters": [ { - "id": 1159, + "id": 1158, "name": "input", "variant": "param", "kind": 32768, @@ -9194,7 +9675,7 @@ } }, { - "id": 1160, + "id": 1159, "name": "init", "variant": "param", "kind": 32768, @@ -9326,7 +9807,7 @@ ], "type": { "type": "reference", - "target": 2094, + "target": 2096, "name": "GoTrueAdminMFAApi", "package": "@supabase/auth-js" } @@ -9354,7 +9835,7 @@ ], "type": { "type": "reference", - "target": 2226, + "target": 2228, "name": "GoTrueAdminOAuthApi", "package": "@supabase/auth-js" } @@ -9390,7 +9871,7 @@ ], "type": { "type": "reference", - "target": 2510, + "target": 2512, "name": "GoTrueAdminPasskeyApi", "package": "@supabase/auth-js" } @@ -9416,7 +9897,7 @@ } }, { - "id": 1179, + "id": 1178, "name": "createUser", "variant": "declaration", "kind": 2048, @@ -9424,13 +9905,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 336, + "line": 335, "character": 4 } ], "signatures": [ { - "id": 1180, + "id": 1179, "name": "createUser", "variant": "signature", "kind": 4096, @@ -9582,20 +10063,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 336, + "line": 335, "character": 4 } ], "parameters": [ { - "id": 1181, + "id": 1180, "name": "attributes", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1748, + "target": 1750, "name": "AdminUserAttributes", "package": "@supabase/auth-js" } @@ -9610,7 +10091,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -9622,7 +10103,7 @@ ] }, { - "id": 1203, + "id": 1202, "name": "deleteUser", "variant": "declaration", "kind": 2048, @@ -9630,13 +10111,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 614, + "line": 613, "character": 4 } ], "signatures": [ { - "id": 1204, + "id": 1203, "name": "deleteUser", "variant": "signature", "kind": 4096, @@ -9728,13 +10209,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 614, + "line": 613, "character": 4 } ], "parameters": [ { - "id": 1205, + "id": 1204, "name": "id", "variant": "param", "kind": 32768, @@ -9753,7 +10234,7 @@ } }, { - "id": 1206, + "id": 1205, "name": "shouldSoftDelete", "variant": "param", "kind": 32768, @@ -9791,7 +10272,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -9803,7 +10284,7 @@ ] }, { - "id": 1176, + "id": 1175, "name": "generateLink", "variant": "declaration", "kind": 2048, @@ -9811,13 +10292,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 255, + "line": 254, "character": 4 } ], "signatures": [ { - "id": 1177, + "id": 1176, "name": "generateLink", "variant": "signature", "kind": 4096, @@ -10037,20 +10518,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 255, + "line": 254, "character": 4 } ], "parameters": [ { - "id": 1178, + "id": 1177, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1962, + "target": 1964, "name": "GenerateLinkParams", "package": "@supabase/auth-js" } @@ -10065,7 +10546,7 @@ "typeArguments": [ { "type": "reference", - "target": 1963, + "target": 1965, "name": "GenerateLinkResponse", "package": "@supabase/auth-js" } @@ -10077,7 +10558,7 @@ ] }, { - "id": 1196, + "id": 1195, "name": "getUserById", "variant": "declaration", "kind": 2048, @@ -10085,13 +10566,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 436, + "line": 435, "character": 4 } ], "signatures": [ { - "id": 1197, + "id": 1196, "name": "getUserById", "variant": "signature", "kind": 4096, @@ -10175,13 +10656,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 436, + "line": 435, "character": 4 } ], "parameters": [ { - "id": 1198, + "id": 1197, "name": "uid", "variant": "param", "kind": 32768, @@ -10217,7 +10698,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -10229,7 +10710,7 @@ ] }, { - "id": 1169, + "id": 1168, "name": "inviteUserByEmail", "variant": "declaration", "kind": 2048, @@ -10237,13 +10718,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 132, + "line": 131, "character": 4 } ], "signatures": [ { - "id": 1170, + "id": 1169, "name": "inviteUserByEmail", "variant": "signature", "kind": 4096, @@ -10327,13 +10808,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 132, + "line": 131, "character": 4 } ], "parameters": [ { - "id": 1171, + "id": 1170, "name": "email", "variant": "param", "kind": 32768, @@ -10352,7 +10833,7 @@ } }, { - "id": 1172, + "id": 1171, "name": "options", "variant": "param", "kind": 32768, @@ -10370,14 +10851,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1173, + "id": 1172, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1174, + "id": 1173, "name": "data", "variant": "declaration", "kind": 1024, @@ -10403,7 +10884,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 134, + "line": 133, "character": 8 } ], @@ -10413,7 +10894,7 @@ } }, { - "id": 1175, + "id": 1174, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -10431,7 +10912,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 136, + "line": 135, "character": 8 } ], @@ -10444,13 +10925,13 @@ "groups": [ { "title": "Properties", - "children": [1174, 1175] + "children": [1173, 1174] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 132, + "line": 131, "character": 47 } ] @@ -10467,7 +10948,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -10479,7 +10960,7 @@ ] }, { - "id": 1182, + "id": 1181, "name": "listUsers", "variant": "declaration", "kind": 2048, @@ -10487,13 +10968,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 362, + "line": 361, "character": 4 } ], "signatures": [ { - "id": 1183, + "id": 1182, "name": "listUsers", "variant": "signature", "kind": 4096, @@ -10566,13 +11047,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 362, + "line": 361, "character": 4 } ], "parameters": [ { - "id": 1184, + "id": 1183, "name": "params", "variant": "param", "kind": 32768, @@ -10605,7 +11086,7 @@ }, "type": { "type": "reference", - "target": 2115, + "target": 2117, "name": "PageParams", "package": "@supabase/auth-js" } @@ -10624,14 +11105,14 @@ { "type": "reflection", "declaration": { - "id": 1185, + "id": 1184, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1186, + "id": 1185, "name": "data", "variant": "declaration", "kind": 1024, @@ -10639,7 +11120,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 363, + "line": 362, "character": 8 } ], @@ -10649,14 +11130,14 @@ { "type": "reflection", "declaration": { - "id": 1187, + "id": 1186, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1189, + "id": 1188, "name": "aud", "variant": "declaration", "kind": 1024, @@ -10664,7 +11145,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 365, + "line": 364, "character": 12 } ], @@ -10674,7 +11155,7 @@ } }, { - "id": 1188, + "id": 1187, "name": "users", "variant": "declaration", "kind": 1024, @@ -10682,7 +11163,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 364, + "line": 363, "character": 12 } ], @@ -10700,13 +11181,13 @@ "groups": [ { "title": "Properties", - "children": [1189, 1188] + "children": [1188, 1187] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 363, + "line": 362, "character": 14 } ] @@ -10714,7 +11195,7 @@ }, { "type": "reference", - "target": 2108, + "target": 2110, "name": "Pagination", "package": "@supabase/auth-js" } @@ -10722,7 +11203,7 @@ } }, { - "id": 1190, + "id": 1189, "name": "error", "variant": "declaration", "kind": 1024, @@ -10730,7 +11211,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 367, + "line": 366, "character": 8 } ], @@ -10743,13 +11224,13 @@ "groups": [ { "title": "Properties", - "children": [1186, 1190] + "children": [1185, 1189] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 362, + "line": 361, "character": 44 } ] @@ -10758,14 +11239,14 @@ { "type": "reflection", "declaration": { - "id": 1191, + "id": 1190, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1192, + "id": 1191, "name": "data", "variant": "declaration", "kind": 1024, @@ -10773,21 +11254,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 369, + "line": 368, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1193, + "id": 1192, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1194, + "id": 1193, "name": "users", "variant": "declaration", "kind": 1024, @@ -10795,7 +11276,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 370, + "line": 369, "character": 12 } ], @@ -10807,13 +11288,13 @@ "groups": [ { "title": "Properties", - "children": [1194] + "children": [1193] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 369, + "line": 368, "character": 14 } ] @@ -10821,7 +11302,7 @@ } }, { - "id": 1195, + "id": 1194, "name": "error", "variant": "declaration", "kind": 1024, @@ -10829,13 +11310,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 372, + "line": 371, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -10844,13 +11325,13 @@ "groups": [ { "title": "Properties", - "children": [1192, 1195] + "children": [1191, 1194] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 368, + "line": 367, "character": 8 } ] @@ -10866,7 +11347,7 @@ ] }, { - "id": 1162, + "id": 1161, "name": "signOut", "variant": "declaration", "kind": 2048, @@ -10874,13 +11355,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 64, + "line": 63, "character": 4 } ], "signatures": [ { - "id": 1163, + "id": 1162, "name": "signOut", "variant": "signature", "kind": 4096, @@ -10916,13 +11397,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 64, + "line": 63, "character": 4 } ], "parameters": [ { - "id": 1164, + "id": 1163, "name": "jwt", "variant": "param", "kind": 32768, @@ -10941,7 +11422,7 @@ } }, { - "id": 1165, + "id": 1164, "name": "scope", "variant": "param", "kind": 32768, @@ -10985,14 +11466,14 @@ { "type": "reflection", "declaration": { - "id": 1166, + "id": 1165, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1167, + "id": 1166, "name": "data", "variant": "declaration", "kind": 1024, @@ -11000,7 +11481,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 65, + "line": 64, "character": 8 } ], @@ -11010,7 +11491,7 @@ } }, { - "id": 1168, + "id": 1167, "name": "error", "variant": "declaration", "kind": 1024, @@ -11018,7 +11499,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 66, + "line": 65, "character": 8 } ], @@ -11031,7 +11512,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -11042,13 +11523,13 @@ "groups": [ { "title": "Properties", - "children": [1167, 1168] + "children": [1166, 1167] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 64, + "line": 63, "character": 56 } ] @@ -11062,7 +11543,7 @@ ] }, { - "id": 1199, + "id": 1198, "name": "updateUserById", "variant": "declaration", "kind": 2048, @@ -11070,13 +11551,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 581, + "line": 580, "character": 4 } ], "signatures": [ { - "id": 1200, + "id": 1199, "name": "updateUserById", "variant": "signature", "kind": 4096, @@ -11278,13 +11759,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts", - "line": 581, + "line": 580, "character": 4 } ], "parameters": [ { - "id": 1201, + "id": 1200, "name": "uid", "variant": "param", "kind": 32768, @@ -11303,7 +11784,7 @@ } }, { - "id": 1202, + "id": 1201, "name": "attributes", "variant": "param", "kind": 32768, @@ -11326,7 +11807,7 @@ }, "type": { "type": "reference", - "target": 1748, + "target": 1750, "name": "AdminUserAttributes", "package": "@supabase/auth-js" } @@ -11341,7 +11822,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -11360,21 +11841,21 @@ }, { "title": "Properties", - "children": [1145, 1161, 1153, 1148, 1143, 1144, 1146, 1147] + "children": [1145, 1160, 1152, 1148, 1143, 1144, 1146, 1147] }, { "title": "Methods", - "children": [1179, 1203, 1176, 1196, 1169, 1182, 1162, 1199] + "children": [1178, 1202, 1175, 1195, 1168, 1181, 1161, 1198] } ], "categories": [ { "title": "Auth", - "children": [1179, 1203, 1176, 1196, 1169, 1182, 1162, 1199] + "children": [1178, 1202, 1175, 1195, 1168, 1181, 1161, 1198] }, { "title": "Other", - "children": [1125, 1145, 1161, 1153, 1148, 1143, 1144, 1146, 1147] + "children": [1125, 1145, 1160, 1152, 1148, 1143, 1144, 1146, 1147] } ], "sources": [ @@ -11386,14 +11867,14 @@ ] }, { - "id": 1222, + "id": 1221, "name": "GoTrueClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 1224, + "id": 1223, "name": "constructor", "variant": "declaration", "kind": 512, @@ -11401,13 +11882,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 117, + "line": 134, "character": 4 } ], "signatures": [ { - "id": 1225, + "id": 1224, "name": "GoTrueClient", "variant": "signature", "kind": 16384, @@ -11445,20 +11926,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 117, + "line": 134, "character": 4 } ], "parameters": [ { - "id": 1226, + "id": 1225, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1597, + "target": 1599, "name": "GoTrueClientOptions", "package": "@supabase/auth-js" } @@ -11466,7 +11947,7 @@ ], "type": { "type": "reference", - "target": 1222, + "target": 1221, "name": "GoTrueClient", "package": "@supabase/auth-js", "qualifiedName": "default" @@ -11475,7 +11956,83 @@ ] }, { - "id": 1228, + "id": 1260, + "name": "_sessionRemovalEpoch", + "variant": "declaration", + "kind": 1024, + "flags": { + "isProtected": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Monotonic counter incremented at the top of " + }, + { + "kind": "code", + "text": "`_removeSession`" + }, + { + "kind": "text", + "text": ", before any\n" + }, + { + "kind": "code", + "text": "`await`" + }, + { + "kind": "text", + "text": ". The commit guard inside " + }, + { + "kind": "code", + "text": "`_callRefreshToken`" + }, + { + "kind": "text", + "text": " captures this value\nbefore " + }, + { + "kind": "code", + "text": "`_saveSession`" + }, + { + "kind": "text", + "text": " and re-checks it after, so a " + }, + { + "kind": "code", + "text": "`signOut`" + }, + { + "kind": "text", + "text": " that\ninterleaves inside " + }, + { + "kind": "code", + "text": "`_saveSession`" + }, + { + "kind": "text", + "text": "'s storage-write awaits is still caught\n(the post-fetch storage snapshot alone misses that window)." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", + "line": 69, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1227, "name": "admin", "variant": "declaration", "kind": 1024, @@ -11504,7 +12061,7 @@ } }, { - "id": 1255, + "id": 1254, "name": "autoRefreshTicker", "variant": "declaration", "kind": 1024, @@ -11539,7 +12096,7 @@ } }, { - "id": 1256, + "id": 1255, "name": "autoRefreshTickTimeout", "variant": "declaration", "kind": 1024, @@ -11574,7 +12131,7 @@ } }, { - "id": 1246, + "id": 1245, "name": "autoRefreshToken", "variant": "declaration", "kind": 1024, @@ -11612,7 +12169,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 92, + "line": 109, "character": 14 } ], @@ -11646,7 +12203,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 14 } ], @@ -11668,7 +12225,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 45 } ], @@ -11682,7 +12239,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 45 } ], @@ -11720,7 +12277,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 69, + "line": 77, "character": 64 } ], @@ -11734,7 +12291,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 70, + "line": 78, "character": 8 } ], @@ -11799,13 +12356,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 88, + "line": 105, "character": 14 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } @@ -11821,7 +12378,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 78, + "line": 86, "character": 14 } ], @@ -12039,7 +12596,7 @@ } }, { - "id": 1233, + "id": 1232, "name": "flowType", "variant": "declaration", "kind": 1024, @@ -12055,7 +12612,7 @@ ], "type": { "type": "reference", - "target": 1808, + "target": 1810, "name": "AuthFlowType", "package": "@supabase/auth-js" } @@ -12071,7 +12628,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 76, + "line": 84, "character": 14 } ], @@ -12091,7 +12648,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 73, + "line": 81, "character": 14 } ], @@ -12106,7 +12663,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 73, + "line": 81, "character": 23 } ], @@ -12120,7 +12677,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 74, + "line": 82, "character": 8 } ], @@ -12173,7 +12730,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 68, + "line": 76, "character": 14 } ], @@ -12193,7 +12750,7 @@ "typeArguments": [ { "type": "reference", - "target": 2104, + "target": 2106, "name": "InitializeResult", "package": "@supabase/auth-js" } @@ -12212,18 +12769,51 @@ "flags": { "isProtected": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Custom lock function passed via " + }, + { + "kind": "code", + "text": "`settings.lock`" + }, + { + "kind": "text", + "text": ". When non-null, every auth\noperation runs inside " + }, + { + "kind": "code", + "text": "`_acquireLock`" + }, + { + "kind": "text", + "text": ". When null (the default), the client\nuses its lockless coordination (refresh single-flight + commit guard).\nTODO(v3): remove along with the legacy lock path." + } + ] + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 79, + "line": 93, "character": 14 } ], "type": { - "type": "reference", - "target": 1588, - "name": "LockFunc", - "package": "@supabase/auth-js" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 1590, + "name": "LockFunc", + "package": "@supabase/auth-js" + } + ] } }, { @@ -12237,7 +12827,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 80, + "line": 94, "character": 14 } ], @@ -12254,10 +12844,26 @@ "flags": { "isProtected": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Only consulted when a custom " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " is supplied. TODO(v3): remove." + } + ] + }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 83, + "line": 100, "character": 14 } ], @@ -12277,7 +12883,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 93, + "line": 110, "character": 14 } ], @@ -12297,7 +12903,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 94, + "line": 111, "character": 14 } ], @@ -12312,7 +12918,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 94, + "line": 111, "character": 22 } ], @@ -12326,7 +12932,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 94, + "line": 111, "character": 22 } ], @@ -12369,7 +12975,7 @@ } }, { - "id": 1250, + "id": 1249, "name": "memoryStorage", "variant": "declaration", "kind": 1024, @@ -12393,7 +12999,7 @@ { "type": "reflection", "declaration": { - "id": 1251, + "id": 1250, "name": "__type", "variant": "declaration", "kind": 65536, @@ -12407,7 +13013,7 @@ ], "indexSignatures": [ { - "id": 1252, + "id": 1251, "name": "__index", "variant": "signature", "kind": 8192, @@ -12421,7 +13027,7 @@ ], "parameters": [ { - "id": 1253, + "id": 1252, "name": "key", "variant": "param", "kind": 32768, @@ -12444,7 +13050,7 @@ } }, { - "id": 1229, + "id": 1228, "name": "mfa", "variant": "declaration", "kind": 1024, @@ -12466,13 +13072,13 @@ ], "type": { "type": "reference", - "target": 2023, + "target": 2025, "name": "GoTrueMFAApi", "package": "@supabase/auth-js" } }, { - "id": 1230, + "id": 1229, "name": "oauth", "variant": "declaration", "kind": 1024, @@ -12494,13 +13100,13 @@ ], "type": { "type": "reference", - "target": 2390, + "target": 2392, "name": "AuthOAuthServerApi", "package": "@supabase/auth-js" } }, { - "id": 1231, + "id": 1230, "name": "passkey", "variant": "declaration", "kind": 1024, @@ -12530,7 +13136,7 @@ ], "type": { "type": "reference", - "target": 2490, + "target": 2492, "name": "AuthPasskeyApi", "package": "@supabase/auth-js" } @@ -12546,7 +13152,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 81, + "line": 95, "character": 14 } ], @@ -12570,7 +13176,7 @@ } }, { - "id": 1247, + "id": 1246, "name": "persistSession", "variant": "declaration", "kind": 1024, @@ -12590,7 +13196,7 @@ } }, { - "id": 1260, + "id": 1259, "name": "refreshingDeferred", "variant": "declaration", "kind": 1024, @@ -12620,7 +13226,7 @@ "typeArguments": [ { "type": "reference", - "target": 2107, + "target": 2109, "name": "CallRefreshTokenResult", "package": "@supabase/auth-js" } @@ -12632,7 +13238,7 @@ } }, { - "id": 1254, + "id": 1253, "name": "stateChangeEmitters", "variant": "declaration", "kind": 1024, @@ -12668,7 +13274,7 @@ }, { "type": "reference", - "target": 1762, + "target": 1764, "name": "Subscription", "package": "@supabase/auth-js" } @@ -12678,7 +13284,7 @@ } }, { - "id": 1248, + "id": 1247, "name": "storage", "variant": "declaration", "kind": 1024, @@ -12694,13 +13300,13 @@ ], "type": { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } }, { - "id": 1232, + "id": 1231, "name": "storageKey", "variant": "declaration", "kind": 1024, @@ -12738,7 +13344,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 77, + "line": 85, "character": 14 } ], @@ -12758,7 +13364,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 82, + "line": 96, "character": 14 } ], @@ -12778,7 +13384,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 72, + "line": 80, "character": 14 } ], @@ -12788,7 +13394,7 @@ } }, { - "id": 1249, + "id": 1248, "name": "userStorage", "variant": "declaration", "kind": 1024, @@ -12815,7 +13421,7 @@ }, { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } @@ -12823,7 +13429,7 @@ } }, { - "id": 1257, + "id": 1256, "name": "visibilityChangedCallback", "variant": "declaration", "kind": 1024, @@ -12847,7 +13453,7 @@ { "type": "reflection", "declaration": { - "id": 1258, + "id": 1257, "name": "__type", "variant": "declaration", "kind": 65536, @@ -12861,7 +13467,7 @@ ], "signatures": [ { - "id": 1259, + "id": 1258, "name": "__type", "variant": "signature", "kind": 4096, @@ -12896,7 +13502,7 @@ } }, { - "id": 1234, + "id": 1233, "name": "jwks", "variant": "declaration", "kind": 262144, @@ -12916,7 +13522,7 @@ } ], "getSignature": { - "id": 1235, + "id": 1234, "name": "jwks", "variant": "signature", "kind": 524288, @@ -12939,14 +13545,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1236, + "id": 1235, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1237, + "id": 1236, "name": "keys", "variant": "declaration", "kind": 1024, @@ -12962,7 +13568,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -12972,7 +13578,7 @@ "groups": [ { "title": "Properties", - "children": [1237] + "children": [1236] } ], "sources": [ @@ -12986,7 +13592,7 @@ } }, "setSignature": { - "id": 1238, + "id": 1237, "name": "jwks", "variant": "signature", "kind": 1048576, @@ -13000,7 +13606,7 @@ ], "parameters": [ { - "id": 1239, + "id": 1238, "name": "value", "variant": "param", "kind": 32768, @@ -13008,14 +13614,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1240, + "id": 1239, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1241, + "id": 1240, "name": "keys", "variant": "declaration", "kind": 1024, @@ -13031,7 +13637,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -13041,7 +13647,7 @@ "groups": [ { "title": "Properties", - "children": [1241] + "children": [1240] } ], "sources": [ @@ -13062,7 +13668,7 @@ } }, { - "id": 1242, + "id": 1241, "name": "jwks_cached_at", "variant": "declaration", "kind": 262144, @@ -13082,7 +13688,7 @@ } ], "getSignature": { - "id": 1243, + "id": 1242, "name": "jwks_cached_at", "variant": "signature", "kind": 524288, @@ -13100,7 +13706,7 @@ } }, "setSignature": { - "id": 1244, + "id": 1243, "name": "jwks_cached_at", "variant": "signature", "kind": 1048576, @@ -13114,7 +13720,7 @@ ], "parameters": [ { - "id": 1245, + "id": 1244, "name": "value", "variant": "param", "kind": 32768, @@ -13142,7 +13748,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1875, + "line": 1910, "character": 14 } ], @@ -13156,7 +13762,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1875, + "line": 1910, "character": 14 } ], @@ -13187,7 +13793,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1876, + "line": 1911, "character": 8 } ], @@ -13206,7 +13812,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1875, + "line": 1910, "character": 47 } ] @@ -13223,7 +13829,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -13245,7 +13851,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1743, + "line": 1778, "character": 14 } ], @@ -13259,7 +13865,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1743, + "line": 1778, "character": 14 } ], @@ -13288,7 +13894,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1744, + "line": 1779, "character": 8 } ], @@ -13306,7 +13912,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1745, + "line": 1780, "character": 8 } ], @@ -13325,7 +13931,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1743, + "line": 1778, "character": 42 } ] @@ -13342,7 +13948,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -13364,7 +13970,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1973, "character": 14 } ], @@ -13378,7 +13984,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1973, "character": 14 } ], @@ -13393,7 +13999,7 @@ }, "type": { "type": "reference", - "target": 2119, + "target": 2121, "name": "SignOut", "package": "@supabase/auth-js" } @@ -13424,7 +14030,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1939, + "line": 1974, "character": 8 } ], @@ -13437,7 +14043,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -13454,7 +14060,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1938, + "line": 1973, "character": 53 } ] @@ -13478,7 +14084,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1612, + "line": 1647, "character": 14 } ], @@ -13492,7 +14098,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1612, + "line": 1647, "character": 14 } ], @@ -13505,7 +14111,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1741, + "target": 1743, "name": "UserAttributes", "package": "@supabase/auth-js" } @@ -13538,7 +14144,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1613, + "line": 1648, "character": 8 } ], @@ -13557,7 +14163,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1612, + "line": 1647, "character": 64 } ] @@ -13574,7 +14180,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -13585,6 +14191,152 @@ } ] }, + { + "id": 1506, + "name": "dispose", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", + "line": 2320, + "character": 4 + } + ], + "signatures": [ + { + "id": 1507, + "name": "dispose", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Tears down the client's background work: stops the auto-refresh interval,\nremoves the " + }, + { + "kind": "code", + "text": "`visibilitychange`" + }, + { + "kind": "text", + "text": " listener, closes the cross-tab\n" + }, + { + "kind": "code", + "text": "`BroadcastChannel`" + }, + { + "kind": "text", + "text": ", and clears registered " + }, + { + "kind": "code", + "text": "`onAuthStateChange`" + }, + { + "kind": "text", + "text": " subscribers.\n\nCall this from cleanup hooks when the client is being replaced before\nits JS realm is destroyed. React Strict Mode and HMR are the common\ncases. Any in-flight " + }, + { + "kind": "code", + "text": "`fetch`" + }, + { + "kind": "text", + "text": " calls continue to completion and may still\nwrite to storage; dispose doesn't abort them or erase storage.\n\nLifecycle caveat: because in-flight refreshes are not aborted, a\ndisposed instance can still persist a rotated session to storage after\n" + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " returns. A subsequent " + }, + { + "kind": "code", + "text": "`createClient`" + }, + { + "kind": "text", + "text": " against the same\n" + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " will pick up that session on its next read. If you need\nstrict isolation between client lifecycles, await any pending auth\noperation before calling " + }, + { + "kind": "code", + "text": "`dispose()`" + }, + { + "kind": "text", + "text": " (or change the " + }, + { + "kind": "code", + "text": "`storageKey`" + }, + { + "kind": "text", + "text": " for\nthe replacement client).\n\nSafe to call repeatedly." + } + ], + "blockTags": [ + { + "tag": "@category", + "content": [ + { + "kind": "text", + "text": "Auth" + } + ] + }, + { + "tag": "@example", + "name": "Cleanup on React unmount", + "content": [ + { + "kind": "code", + "text": "```ts\nuseEffect(() => {\n const client = createClient(...)\n return () => { client.auth.dispose() }\n}, [])\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", + "line": 2320, + "character": 4 + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, { "id": 1318, "name": "exchangeCodeForSession", @@ -13594,7 +14346,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 765, + "line": 797, "character": 4 } ], @@ -13675,7 +14427,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 765, + "line": 797, "character": 4 } ], @@ -13701,7 +14453,7 @@ "typeArguments": [ { "type": "reference", - "target": 1674, + "target": 1676, "name": "AuthTokenResponse", "package": "@supabase/auth-js" } @@ -13713,7 +14465,7 @@ ] }, { - "id": 1523, + "id": 1525, "name": "getClaims", "variant": "declaration", "kind": 2048, @@ -13721,13 +14473,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2462, "character": 4 } ], "signatures": [ { - "id": 1524, + "id": 1526, "name": "getClaims", "variant": "signature", "kind": 4096, @@ -13828,13 +14580,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2462, "character": 4 } ], "parameters": [ { - "id": 1525, + "id": 1527, "name": "jwt", "variant": "param", "kind": 32768, @@ -13864,7 +14616,7 @@ } }, { - "id": 1526, + "id": 1528, "name": "options", "variant": "param", "kind": 32768, @@ -13882,14 +14634,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1527, + "id": 1529, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1529, + "id": 1531, "name": "allowExpired", "variant": "declaration", "kind": 1024, @@ -13923,7 +14675,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2399, + "line": 2468, "character": 8 } ], @@ -13933,7 +14685,7 @@ } }, { - "id": 1530, + "id": 1532, "name": "jwks", "variant": "declaration", "kind": 1024, @@ -13951,21 +14703,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2401, + "line": 2470, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1531, + "id": 1533, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1532, + "id": 1534, "name": "keys", "variant": "declaration", "kind": 1024, @@ -13973,7 +14725,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2402, + "line": 2471, "character": 12 } ], @@ -13981,7 +14733,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -13991,13 +14743,13 @@ "groups": [ { "title": "Properties", - "children": [1532] + "children": [1534] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2401, + "line": 2470, "character": 15 } ] @@ -14005,7 +14757,7 @@ } }, { - "id": 1528, + "id": 1530, "name": "keys", "variant": "declaration", "kind": 1024, @@ -14029,7 +14781,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2397, + "line": 2466, "character": 8 } ], @@ -14037,7 +14789,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2164, + "target": 2166, "name": "JWK", "package": "@supabase/auth-js" } @@ -14047,13 +14799,13 @@ "groups": [ { "title": "Properties", - "children": [1529, 1530, 1528] + "children": [1531, 1532, 1530] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2393, + "line": 2462, "character": 38 } ] @@ -14074,14 +14826,14 @@ { "type": "reflection", "declaration": { - "id": 1533, + "id": 1535, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1534, + "id": 1536, "name": "data", "variant": "declaration", "kind": 1024, @@ -14089,21 +14841,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2405, + "line": 2474, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1535, + "id": 1537, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1536, + "id": 1538, "name": "claims", "variant": "declaration", "kind": 1024, @@ -14111,19 +14863,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2406, + "line": 2475, "character": 12 } ], "type": { "type": "reference", - "target": 2144, + "target": 2146, "name": "JwtPayload", "package": "@supabase/auth-js" } }, { - "id": 1537, + "id": 1539, "name": "header", "variant": "declaration", "kind": 1024, @@ -14131,19 +14883,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2407, + "line": 2476, "character": 12 } ], "type": { "type": "reference", - "target": 2128, + "target": 2130, "name": "JwtHeader", "package": "@supabase/auth-js" } }, { - "id": 1538, + "id": 1540, "name": "signature", "variant": "declaration", "kind": 1024, @@ -14151,7 +14903,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2408, + "line": 2477, "character": 12 } ], @@ -14169,13 +14921,13 @@ "groups": [ { "title": "Properties", - "children": [1536, 1537, 1538] + "children": [1538, 1539, 1540] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2405, + "line": 2474, "character": 14 } ] @@ -14183,7 +14935,7 @@ } }, { - "id": 1539, + "id": 1541, "name": "error", "variant": "declaration", "kind": 1024, @@ -14191,7 +14943,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2410, + "line": 2479, "character": 8 } ], @@ -14204,13 +14956,13 @@ "groups": [ { "title": "Properties", - "children": [1534, 1539] + "children": [1536, 1541] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2404, + "line": 2473, "character": 16 } ] @@ -14219,14 +14971,14 @@ { "type": "reflection", "declaration": { - "id": 1540, + "id": 1542, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1541, + "id": 1543, "name": "data", "variant": "declaration", "kind": 1024, @@ -14234,7 +14986,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2412, + "line": 2481, "character": 8 } ], @@ -14244,7 +14996,7 @@ } }, { - "id": 1542, + "id": 1544, "name": "error", "variant": "declaration", "kind": 1024, @@ -14252,13 +15004,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2413, + "line": 2482, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14267,13 +15019,13 @@ "groups": [ { "title": "Properties", - "children": [1541, 1542] + "children": [1543, 1544] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2411, + "line": 2480, "character": 8 } ] @@ -14282,14 +15034,14 @@ { "type": "reflection", "declaration": { - "id": 1543, + "id": 1545, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1544, + "id": 1546, "name": "data", "variant": "declaration", "kind": 1024, @@ -14297,7 +15049,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2415, + "line": 2484, "character": 8 } ], @@ -14307,7 +15059,7 @@ } }, { - "id": 1545, + "id": 1547, "name": "error", "variant": "declaration", "kind": 1024, @@ -14315,7 +15067,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2416, + "line": 2485, "character": 8 } ], @@ -14328,13 +15080,13 @@ "groups": [ { "title": "Properties", - "children": [1544, 1545] + "children": [1546, 1547] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2414, + "line": 2483, "character": 8 } ] @@ -14358,7 +15110,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1384, + "line": 1416, "character": 4 } ], @@ -14440,15 +15192,7 @@ }, { "kind": "text", - "text": " to fetch the user object directly from the Auth server for this purpose.\n- When using in a browser, this function is synchronized across 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 " - }, - { - "kind": "code", - "text": "`lock`" - }, - { - "kind": "text", - "text": " property, if necessary, to make sure there are no race conditions while the session is being refreshed." + "text": " to fetch the user object directly from the Auth server for this purpose.\n- Cross-tab refresh races are handled by the GoTrue server (the rotated token from the first tab is returned to subsequent tabs via the parent-of-active mechanism), so no client-side serialization is needed." } ] }, @@ -14480,7 +15224,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1384, + "line": 1416, "character": 4 } ], @@ -14512,7 +15256,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1385, + "line": 1417, "character": 8 } ], @@ -14534,7 +15278,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1386, + "line": 1418, "character": 12 } ], @@ -14555,7 +15299,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1385, + "line": 1417, "character": 14 } ] @@ -14571,7 +15315,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1388, + "line": 1420, "character": 8 } ], @@ -14590,7 +15334,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1384, + "line": 1416, "character": 26 } ] @@ -14614,7 +15358,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1390, + "line": 1422, "character": 8 } ], @@ -14636,7 +15380,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1391, + "line": 1423, "character": 12 } ], @@ -14655,7 +15399,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1390, + "line": 1422, "character": 14 } ] @@ -14671,13 +15415,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1393, + "line": 1425, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -14692,7 +15436,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1389, + "line": 1421, "character": 8 } ] @@ -14716,7 +15460,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1395, + "line": 1427, "character": 8 } ], @@ -14738,7 +15482,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1396, + "line": 1428, "character": 12 } ], @@ -14757,7 +15501,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1395, + "line": 1427, "character": 14 } ] @@ -14773,7 +15517,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1398, + "line": 1430, "character": 8 } ], @@ -14792,7 +15536,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1394, + "line": 1426, "character": 8 } ] @@ -14816,7 +15560,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1493, + "line": 1528, "character": 4 } ], @@ -14907,7 +15651,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1493, + "line": 1528, "character": 4 } ], @@ -14943,7 +15687,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -14963,7 +15707,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2087, + "line": 2125, "character": 4 } ], @@ -15036,7 +15780,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2087, + "line": 2125, "character": 4 } ], @@ -15068,7 +15812,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2088, + "line": 2126, "character": 8 } ], @@ -15090,7 +15834,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2089, + "line": 2127, "character": 12 } ], @@ -15098,7 +15842,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1708, + "target": 1710, "name": "UserIdentity", "package": "@supabase/auth-js" } @@ -15114,7 +15858,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2088, + "line": 2126, "character": 14 } ] @@ -15130,7 +15874,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2091, + "line": 2129, "character": 8 } ], @@ -15149,7 +15893,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2087, + "line": 2125, "character": 33 } ] @@ -15173,7 +15917,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2093, + "line": 2131, "character": 8 } ], @@ -15191,13 +15935,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2094, + "line": 2132, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -15212,7 +15956,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2092, + "line": 2130, "character": 8 } ] @@ -15236,7 +15980,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 137, + "line": 154, "character": 4 } ], @@ -15269,7 +16013,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 137, + "line": 154, "character": 4 } ], @@ -15282,7 +16026,7 @@ "typeArguments": [ { "type": "reference", - "target": 2104, + "target": 2106, "name": "InitializeResult", "package": "@supabase/auth-js" } @@ -15302,7 +16046,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 121, + "line": 138, "character": 4 } ], @@ -15324,7 +16068,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 121, + "line": 138, "character": 4 } ], @@ -15344,12 +16088,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2100, + "line": 2138, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2104, + "line": 2142, "character": 4 } ], @@ -15371,7 +16115,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2100, + "line": 2138, "character": 4 } ], @@ -15384,7 +16128,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1810, + "target": 1812, "name": "SignInWithOAuthCredentials", "package": "@supabase/auth-js" } @@ -15399,7 +16143,7 @@ "typeArguments": [ { "type": "reference", - "target": 1683, + "target": 1685, "name": "OAuthResponse", "package": "@supabase/auth-js" } @@ -15425,7 +16169,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2104, + "line": 2142, "character": 4 } ], @@ -15438,7 +16182,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1822, + "target": 1824, "name": "SignInWithIdTokenCredentials", "package": "@supabase/auth-js" } @@ -15453,7 +16197,7 @@ "typeArguments": [ { "type": "reference", - "target": 1674, + "target": 1676, "name": "AuthTokenResponse", "package": "@supabase/auth-js" } @@ -15473,12 +16217,12 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 4 } ], @@ -15500,7 +16244,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 4 } ], @@ -15530,7 +16274,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 32 } ], @@ -15544,7 +16288,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 32 } ], @@ -15557,7 +16301,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1587, + "target": 1589, "name": "AuthChangeEvent", "package": "@supabase/auth-js" } @@ -15613,7 +16357,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1948, + "line": 1983, "character": 8 } ], @@ -15635,13 +16379,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1949, + "line": 1984, "character": 12 } ], "type": { "type": "reference", - "target": 1762, + "target": 1764, "name": "Subscription", "package": "@supabase/auth-js" } @@ -15656,7 +16400,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1948, + "line": 1983, "character": 14 } ] @@ -15673,7 +16417,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1947, + "line": 1982, "character": 92 } ] @@ -15690,15 +16434,63 @@ "summary": [ { "kind": "text", - "text": "Avoid using an async function inside " + "text": "Receive a notification every time an auth event happens. Common reentry\npatterns (" }, { "kind": "code", - "text": "`onAuthStateChange`" + "text": "`getUser`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`setSession`" }, { "kind": "text", - "text": " as you might end\nup with a deadlock. The callback function runs inside an exclusive lock,\nso calling other Supabase Client APIs that also try to acquire the\nexclusive lock, might cause a deadlock. This behavior is observable across\ntabs. In the next major library version, this behavior will not be supported.\n\nReceive a notification every time an auth event happens." + "text": ", reading the session from inside a\nhandler) complete normally. One hazard remains: calling " + }, + { + "kind": "code", + "text": "`refreshSession`" + }, + { + "kind": "text", + "text": "\n(or anything that routes through " + }, + { + "kind": "code", + "text": "`_callRefreshToken`" + }, + { + "kind": "text", + "text": ") from inside a\n" + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " handler. " + }, + { + "kind": "code", + "text": "`refreshingDeferred`" + }, + { + "kind": "text", + "text": " resolves only after\n" + }, + { + "kind": "code", + "text": "`_notifyAllSubscribers`" + }, + { + "kind": "text", + "text": " returns, so the inner refresh dedupes onto the\nouter's unresolved promise and the two wait on each other." } ], "blockTags": [ @@ -15707,7 +16499,15 @@ "content": [ { "kind": "text", - "text": "Due to the possibility of deadlocks with async functions as callbacks, use the version without an async function." + "text": "Async callbacks can deadlock when they trigger a nested\nrefresh from a " + }, + { + "kind": "code", + "text": "`TOKEN_REFRESHED`" + }, + { + "kind": "text", + "text": " event. Prefer the sync overload, or move\nrefresh-triggering work outside the callback." } ] } @@ -15716,7 +16516,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 4 } ], @@ -15746,7 +16546,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 32 } ], @@ -15760,7 +16560,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 32 } ], @@ -15773,7 +16573,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1587, + "target": 1589, "name": "AuthChangeEvent", "package": "@supabase/auth-js" } @@ -15840,7 +16640,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1965, + "line": 2003, "character": 8 } ], @@ -15862,13 +16662,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1966, + "line": 2004, "character": 12 } ], "type": { "type": "reference", - "target": 1762, + "target": 1764, "name": "Subscription", "package": "@supabase/auth-js" } @@ -15883,7 +16683,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1965, + "line": 2003, "character": 14 } ] @@ -15900,7 +16700,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1964, + "line": 2002, "character": 101 } ] @@ -15918,7 +16718,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1237, + "line": 1269, "character": 4 } ], @@ -16003,7 +16803,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1237, + "line": 1269, "character": 4 } ], @@ -16016,7 +16816,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -16036,7 +16836,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1872, + "line": 1907, "character": 4 } ], @@ -16111,7 +16911,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1872, + "line": 1907, "character": 4 } ], @@ -16150,7 +16950,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1873, + "line": 1908, "character": 8 } ], @@ -16169,7 +16969,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1872, + "line": 1907, "character": 36 } ] @@ -16186,7 +16986,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -16198,7 +16998,7 @@ ] }, { - "id": 1549, + "id": 1551, "name": "registerPasskey", "variant": "declaration", "kind": 2048, @@ -16206,13 +17006,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2439, + "line": 2508, "character": 4 } ], "signatures": [ { - "id": 1550, + "id": 1552, "name": "registerPasskey", "variant": "signature", "kind": 4096, @@ -16247,13 +17047,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2439, + "line": 2508, "character": 4 } ], "parameters": [ { - "id": 1551, + "id": 1553, "name": "credentials", "variant": "param", "kind": 32768, @@ -16262,7 +17062,7 @@ }, "type": { "type": "reference", - "target": 2448, + "target": 2450, "name": "RegisterPasskeyCredentials", "package": "@supabase/auth-js" } @@ -16277,7 +17077,7 @@ "typeArguments": [ { "type": "reference", - "target": 2474, + "target": 2476, "name": "AuthPasskeyRegistrationVerifyResponse", "package": "@supabase/auth-js" } @@ -16297,7 +17097,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1298, + "line": 1330, "character": 4 } ], @@ -16447,7 +17247,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1298, + "line": 1330, "character": 4 } ], @@ -16460,7 +17260,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1908, + "target": 1910, "name": "ResendParams", "package": "@supabase/auth-js" } @@ -16475,7 +17275,7 @@ "typeArguments": [ { "type": "reference", - "target": 1669, + "target": 1671, "name": "AuthOtpResponse", "package": "@supabase/auth-js" } @@ -16495,7 +17295,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2037, + "line": 2075, "character": 4 } ], @@ -16622,7 +17422,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2037, + "line": 2075, "character": 4 } ], @@ -16682,7 +17482,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2039, + "line": 2077, "character": 8 } ], @@ -16710,7 +17510,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2038, + "line": 2076, "character": 8 } ], @@ -16729,7 +17529,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2037, + "line": 2075, "character": 51 } ] @@ -16765,7 +17565,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2041, + "line": 2079, "character": 8 } ], @@ -16789,7 +17589,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2042, + "line": 2080, "character": 8 } ], @@ -16808,7 +17608,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2040, + "line": 2078, "character": 16 } ] @@ -16832,7 +17632,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2044, + "line": 2082, "character": 8 } ], @@ -16850,13 +17650,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2045, + "line": 2083, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -16871,7 +17671,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2043, + "line": 2081, "character": 8 } ] @@ -16895,7 +17695,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1739, + "line": 1774, "character": 4 } ], @@ -16993,7 +17793,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1739, + "line": 1774, "character": 4 } ], @@ -17030,7 +17830,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1740, + "line": 1775, "character": 8 } ], @@ -17048,7 +17848,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1741, + "line": 1776, "character": 8 } ], @@ -17067,7 +17867,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1739, + "line": 1774, "character": 31 } ] @@ -17084,7 +17884,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -17104,7 +17904,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 218, + "line": 235, "character": 4 } ], @@ -17196,7 +17996,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 218, + "line": 235, "character": 4 } ], @@ -17211,7 +18011,7 @@ }, "type": { "type": "reference", - "target": 1772, + "target": 1774, "name": "SignInAnonymouslyCredentials", "package": "@supabase/auth-js" } @@ -17226,7 +18026,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -17246,7 +18046,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 945, + "line": 977, "character": 4 } ], @@ -17311,7 +18111,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 945, + "line": 977, "character": 4 } ], @@ -17324,7 +18124,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1822, + "target": 1824, "name": "SignInWithIdTokenCredentials", "package": "@supabase/auth-js" } @@ -17339,7 +18139,7 @@ "typeArguments": [ { "type": "reference", - "target": 1674, + "target": 1676, "name": "AuthTokenResponse", "package": "@supabase/auth-js" } @@ -17359,7 +18159,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 594, + "line": 626, "character": 4 } ], @@ -17526,7 +18326,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 594, + "line": 626, "character": 4 } ], @@ -17539,7 +18339,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1810, + "target": 1812, "name": "SignInWithOAuthCredentials", "package": "@supabase/auth-js" } @@ -17554,7 +18354,7 @@ "typeArguments": [ { "type": "reference", - "target": 1683, + "target": 1685, "name": "OAuthResponse", "package": "@supabase/auth-js" } @@ -17574,7 +18374,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1023, + "line": 1055, "character": 4 } ], @@ -17758,7 +18558,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1023, + "line": 1055, "character": 4 } ], @@ -17771,7 +18571,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1791, + "target": 1793, "name": "SignInWithPasswordlessCredentials", "package": "@supabase/auth-js" } @@ -17786,7 +18586,7 @@ "typeArguments": [ { "type": "reference", - "target": 1669, + "target": 1671, "name": "AuthOtpResponse", "package": "@supabase/auth-js" } @@ -17798,7 +18598,7 @@ ] }, { - "id": 1546, + "id": 1548, "name": "signInWithPasskey", "variant": "declaration", "kind": 2048, @@ -17806,13 +18606,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2428, + "line": 2497, "character": 4 } ], "signatures": [ { - "id": 1547, + "id": 1549, "name": "signInWithPasskey", "variant": "signature", "kind": 4096, @@ -17847,13 +18647,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2428, + "line": 2497, "character": 4 } ], "parameters": [ { - "id": 1548, + "id": 1550, "name": "credentials", "variant": "param", "kind": 32768, @@ -17862,7 +18662,7 @@ }, "type": { "type": "reference", - "target": 2442, + "target": 2444, "name": "SignInWithPasskeyCredentials", "package": "@supabase/auth-js" } @@ -17877,7 +18677,7 @@ "typeArguments": [ { "type": "reference", - "target": 2476, + "target": 2478, "name": "AuthPasskeyAuthenticationVerifyResponse", "package": "@supabase/auth-js" } @@ -17897,7 +18697,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 514, + "line": 546, "character": 4 } ], @@ -17966,13 +18766,96 @@ "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n phone: '+13334445555',\n password: 'some-password',\n})\n```" } ] + }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nLog the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so fields like " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": ", and " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": " aren't hidden. The " + }, + { + "kind": "code", + "text": "`error.code`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`'invalid_credentials'`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`'email_not_confirmed'`" + }, + { + "kind": "text", + "text": ") is often more useful for branching than " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": ", and the full object surfaces both." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.auth.signInWithPassword({\n email: 'example@email.com',\n password: 'example-password',\n})\nif (error) {\n console.error(error)\n return\n}\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 514, + "line": 546, "character": 4 } ], @@ -17985,7 +18868,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1786, + "target": 1788, "name": "SignInWithPasswordCredentials", "package": "@supabase/auth-js" } @@ -18000,7 +18883,7 @@ "typeArguments": [ { "type": "reference", - "target": 1678, + "target": 1680, "name": "AuthTokenResponsePassword", "package": "@supabase/auth-js" } @@ -18020,7 +18903,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1215, + "line": 1247, "character": 4 } ], @@ -18098,7 +18981,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1215, + "line": 1247, "character": 4 } ], @@ -18111,7 +18994,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1922, + "target": 1924, "name": "SignInWithSSO", "package": "@supabase/auth-js" } @@ -18126,7 +19009,7 @@ "typeArguments": [ { "type": "reference", - "target": 1696, + "target": 1698, "name": "SSOResponse", "package": "@supabase/auth-js" } @@ -18146,7 +19029,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 854, + "line": 886, "character": 4 } ], @@ -18237,7 +19120,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 854, + "line": 886, "character": 4 } ], @@ -18250,7 +19133,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1883, + "target": 1885, "name": "Web3Credentials", "package": "@supabase/auth-js" } @@ -18284,7 +19167,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 855, + "line": 887, "character": 8 } ], @@ -18306,7 +19189,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 856, + "line": 888, "character": 12 } ], @@ -18326,7 +19209,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 857, + "line": 889, "character": 12 } ], @@ -18347,7 +19230,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 855, + "line": 887, "character": 14 } ] @@ -18363,7 +19246,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 859, + "line": 891, "character": 8 } ], @@ -18382,7 +19265,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 854, + "line": 886, "character": 58 } ] @@ -18406,7 +19289,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 861, + "line": 893, "character": 8 } ], @@ -18428,7 +19311,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 862, + "line": 894, "character": 12 } ], @@ -18446,7 +19329,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 863, + "line": 895, "character": 12 } ], @@ -18465,7 +19348,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 861, + "line": 893, "character": 14 } ] @@ -18481,13 +19364,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 865, + "line": 897, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -18502,7 +19385,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 860, + "line": 892, "character": 8 } ] @@ -18526,7 +19409,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1935, + "line": 1970, "character": 4 } ], @@ -18686,7 +19569,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1935, + "line": 1970, "character": 4 } ], @@ -18701,7 +19584,7 @@ }, "type": { "type": "reference", - "target": 2119, + "target": 2121, "name": "SignOut", "package": "@supabase/auth-js" } @@ -18732,7 +19615,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1936, + "line": 1971, "character": 8 } ], @@ -18745,7 +19628,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -18762,7 +19645,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1935, + "line": 1970, "character": 40 } ] @@ -18784,7 +19667,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 396, + "line": 413, "character": 4 } ], @@ -18989,7 +19872,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 396, + "line": 413, "character": 4 } ], @@ -19002,7 +19885,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1778, + "target": 1780, "name": "SignUpWithPasswordCredentials", "package": "@supabase/auth-js" } @@ -19017,7 +19900,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -19037,7 +19920,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2220, + "line": 2258, "character": 4 } ], @@ -19058,7 +19941,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClientOptions#autoRefreshToken", - "target": 1613 + "target": 1615 }, { "kind": "text", @@ -19112,7 +19995,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2220, + "line": 2258, "character": 4 } ], @@ -19143,7 +20026,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2251, + "line": 2289, "character": 4 } ], @@ -19204,7 +20087,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2251, + "line": 2289, "character": 4 } ], @@ -19235,7 +20118,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2132, + "line": 2170, "character": 4 } ], @@ -19295,7 +20178,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2132, + "line": 2170, "character": 4 } ], @@ -19308,7 +20191,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1708, + "target": 1710, "name": "UserIdentity", "package": "@supabase/auth-js" } @@ -19342,7 +20225,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2133, + "line": 2171, "character": 8 } ], @@ -19366,7 +20249,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2134, + "line": 2172, "character": 8 } ], @@ -19385,7 +20268,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2132, + "line": 2170, "character": 52 } ] @@ -19409,7 +20292,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2136, + "line": 2174, "character": 8 } ], @@ -19427,13 +20310,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2137, + "line": 2175, "character": 8 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -19448,7 +20331,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 2135, + "line": 2173, "character": 8 } ] @@ -19472,7 +20355,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1609, + "line": 1644, "character": 4 } ], @@ -19653,7 +20536,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1609, + "line": 1644, "character": 4 } ], @@ -19666,7 +20549,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1741, + "target": 1743, "name": "UserAttributes", "package": "@supabase/auth-js" } @@ -19699,7 +20582,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1610, + "line": 1645, "character": 8 } ], @@ -19718,7 +20601,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1609, + "line": 1644, "character": 53 } ] @@ -19735,7 +20618,7 @@ "typeArguments": [ { "type": "reference", - "target": 1699, + "target": 1701, "name": "UserResponse", "package": "@supabase/auth-js" } @@ -19755,7 +20638,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1161, + "line": 1193, "character": 4 } ], @@ -19928,7 +20811,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts", - "line": 1161, + "line": 1193, "character": 4 } ], @@ -19941,7 +20824,7 @@ "flags": {}, "type": { "type": "reference", - "target": 1884, + "target": 1886, "name": "VerifyOtpParams", "package": "@supabase/auth-js" } @@ -19956,7 +20839,7 @@ "typeArguments": [ { "type": "reference", - "target": 1660, + "target": 1662, "name": "AuthResponse", "package": "@supabase/auth-js" } @@ -19971,26 +20854,26 @@ "groups": [ { "title": "Constructors", - "children": [1224] + "children": [1223] }, { "title": "Properties", "children": [ - 1228, 1255, 1256, 1246, 1291, 1262, 1290, 1277, 1233, 1275, 1271, 1261, 1285, 1286, - 1289, 1292, 1293, 1250, 1229, 1230, 1231, 1287, 1247, 1260, 1254, 1248, 1232, 1276, - 1288, 1270, 1249, 1257 + 1260, 1227, 1254, 1255, 1245, 1291, 1262, 1290, 1277, 1232, 1275, 1271, 1261, 1285, + 1286, 1289, 1292, 1293, 1249, 1228, 1229, 1230, 1287, 1246, 1259, 1253, 1247, 1231, + 1276, 1288, 1270, 1248, 1256 ] }, { "title": "Accessors", - "children": [1234, 1242] + "children": [1233, 1241] }, { "title": "Methods", "children": [ - 1410, 1399, 1423, 1387, 1318, 1523, 1357, 1377, 1464, 1303, 1298, 1474, 1428, 1351, - 1405, 1549, 1354, 1450, 1393, 1306, 1339, 1315, 1342, 1546, 1312, 1348, 1321, 1418, - 1309, 1502, 1504, 1481, 1381, 1345 + 1410, 1399, 1423, 1387, 1506, 1318, 1525, 1357, 1377, 1464, 1303, 1298, 1474, 1428, + 1351, 1405, 1551, 1354, 1450, 1393, 1306, 1339, 1315, 1342, 1548, 1312, 1348, 1321, + 1418, 1309, 1502, 1504, 1481, 1381, 1345 ] } ], @@ -19998,16 +20881,17 @@ { "title": "Auth", "children": [ - 1318, 1523, 1357, 1377, 1464, 1303, 1351, 1405, 1549, 1354, 1450, 1393, 1306, 1339, - 1315, 1342, 1546, 1312, 1348, 1321, 1418, 1309, 1502, 1504, 1481, 1381, 1345 + 1506, 1318, 1525, 1357, 1377, 1464, 1303, 1351, 1405, 1551, 1354, 1450, 1393, 1306, + 1339, 1315, 1342, 1548, 1312, 1348, 1321, 1418, 1309, 1502, 1504, 1481, 1381, 1345 ] }, { "title": "Other", "children": [ - 1224, 1228, 1255, 1256, 1246, 1291, 1262, 1290, 1277, 1233, 1275, 1271, 1261, 1285, - 1286, 1289, 1292, 1293, 1250, 1229, 1230, 1231, 1287, 1247, 1260, 1254, 1248, 1232, - 1276, 1288, 1270, 1249, 1257, 1234, 1242, 1410, 1399, 1423, 1387, 1298, 1474, 1428 + 1223, 1260, 1227, 1254, 1255, 1245, 1291, 1262, 1290, 1277, 1232, 1275, 1271, 1261, + 1285, 1286, 1289, 1292, 1293, 1249, 1228, 1229, 1230, 1287, 1246, 1259, 1253, 1247, + 1231, 1276, 1288, 1270, 1248, 1256, 1233, 1241, 1410, 1399, 1423, 1387, 1298, 1474, + 1428 ] } ], @@ -20020,25 +20904,44 @@ ] }, { - "id": 1569, + "id": 1571, "name": "NavigatorLockAcquireTimeoutError", "variant": "declaration", "kind": 128, "flags": {}, "comment": { - "summary": [ - { - "kind": "text", - "text": "Error thrown when the browser Navigator Lock API fails to acquire a lock." - } - ], + "summary": [], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "The auth client doesn't call " + }, + { + "kind": "code", + "text": "`navigator.locks`" + }, + { + "kind": "text", + "text": ", so this error\nnever originates from " + }, + { + "kind": "code", + "text": "`supabase.auth.*`" + }, + { + "kind": "text", + "text": " calls. Direct callers of\n" + }, { "kind": "code", - "text": "```ts\nimport { NavigatorLockAcquireTimeoutError } from '@supabase/auth-js'\n\nthrow new NavigatorLockAcquireTimeoutError('Lock timed out')\n```" + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " still receive it on acquire timeout." } ] } @@ -20046,7 +20949,7 @@ }, "children": [ { - "id": 1570, + "id": 1572, "name": "constructor", "variant": "declaration", "kind": 512, @@ -20054,13 +20957,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 28, + "line": 29, "character": 4 } ], "signatures": [ { - "id": 1571, + "id": 1573, "name": "NavigatorLockAcquireTimeoutError", "variant": "signature", "kind": 16384, @@ -20068,13 +20971,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 28, + "line": 29, "character": 4 } ], "parameters": [ { - "id": 1572, + "id": 1574, "name": "message", "variant": "param", "kind": 32768, @@ -20087,7 +20990,7 @@ ], "type": { "type": "reference", - "target": 1569, + "target": 1571, "name": "NavigatorLockAcquireTimeoutError", "package": "@supabase/auth-js" }, @@ -20105,7 +21008,7 @@ } }, { - "id": 1573, + "id": 1575, "name": "isAcquireTimeout", "variant": "declaration", "kind": 1024, @@ -20116,7 +21019,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 27, + "line": 28, "character": 13 } ], @@ -20135,17 +21038,17 @@ "groups": [ { "title": "Constructors", - "children": [1570] + "children": [1572] }, { "title": "Properties", - "children": [1573] + "children": [1575] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 40, + "line": 36, "character": 21 } ], @@ -20179,7 +21082,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -20232,7 +21135,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -20303,7 +21206,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 696, + "line": 715, "character": 4 } ], @@ -20323,7 +21226,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 699, + "line": 718, "character": 4 } ], @@ -20549,7 +21452,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 694, + "line": 713, "character": 4 } ], @@ -20574,7 +21477,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 700, + "line": 719, "character": 4 } ], @@ -20592,7 +21495,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 692, + "line": 711, "character": 4 } ], @@ -20633,7 +21536,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 703, + "line": 722, "character": 4 } ], @@ -20653,7 +21556,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 695, + "line": 714, "character": 4 } ], @@ -20673,7 +21576,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 701, + "line": 720, "character": 4 } ], @@ -20693,7 +21596,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 697, + "line": 716, "character": 4 } ], @@ -20713,7 +21616,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 698, + "line": 717, "character": 4 } ], @@ -20736,7 +21639,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 693, + "line": 712, "character": 4 } ], @@ -20761,7 +21664,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 702, + "line": 721, "character": 4 } ], @@ -20780,7 +21683,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 23 } ] @@ -20835,7 +21738,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 660, + "line": 679, "character": 12 } ], @@ -20855,7 +21758,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 663, + "line": 682, "character": 12 } ], @@ -21083,7 +21986,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 658, + "line": 677, "character": 12 } ], @@ -21108,7 +22011,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 664, + "line": 683, "character": 12 } ], @@ -21128,7 +22031,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 656, + "line": 675, "character": 12 } ], @@ -21169,7 +22072,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 667, + "line": 686, "character": 12 } ], @@ -21190,7 +22093,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 659, + "line": 678, "character": 12 } ], @@ -21210,7 +22113,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 665, + "line": 684, "character": 12 } ], @@ -21230,7 +22133,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 661, + "line": 680, "character": 12 } ], @@ -21251,7 +22154,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 662, + "line": 681, "character": 12 } ], @@ -21276,7 +22179,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 657, + "line": 676, "character": 12 } ], @@ -21301,7 +22204,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 666, + "line": 685, "character": 12 } ], @@ -21319,7 +22222,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -21489,7 +22392,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -21543,7 +22446,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 901, + "line": 920, "character": 4 } ], @@ -21562,7 +22465,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 43 } ] @@ -21586,7 +22489,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 903, + "line": 922, "character": 4 } ], @@ -21605,7 +22508,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 902, + "line": 921, "character": 6 } ] @@ -21828,7 +22731,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -21865,7 +22768,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -21906,7 +22809,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 805, + "line": 824, "character": 2 } ], @@ -21956,7 +22859,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 805, + "line": 824, "character": 2 } ], @@ -22039,7 +22942,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -22072,7 +22975,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -22116,7 +23019,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -22224,7 +23127,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -22244,7 +23147,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -22277,7 +23180,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -22386,7 +23289,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -22400,7 +23303,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -22534,7 +23437,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -22548,7 +23451,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -22655,7 +23558,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -22694,7 +23597,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -22798,7 +23701,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 655, + "line": 674, "character": 23 } ], @@ -22923,7 +23826,127 @@ "summary": [ { "kind": "text", - "text": "Error format\n\n" + "text": "Error format\n\nReturned by every PostgREST request that fails. When something fails, the\nsingle most useful field is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — Postgres often returns the\nactionable fix there, not in " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": ". Always log the full object (e.g.\n" + }, + { + "kind": "code", + "text": "`console.error(error)`" + }, + { + "kind": "text", + "text": "); logging only " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": " hides the hint.\n\nRead the fields in roughly this order of usefulness:\n\n- " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — actionable guidance from the database when available. For\n permission-denied errors (" + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "), this is the literal SQL to fix the\n problem, e.g.\n " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.users TO anon;\"`" + }, + { + "kind": "text", + "text": ".\n Missing column? " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " suggests the column you probably meant. Whenever\n Postgres knows the fix, it puts it in " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": ".\n- " + }, + { + "kind": "code", + "text": "`code`" + }, + { + "kind": "text", + "text": " — stable error code from PostgREST (e.g. " + }, + { + "kind": "code", + "text": "`PGRST301`" + }, + { + "kind": "text", + "text": ") or Postgres\n (e.g. " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": "). Branch on this rather than on " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " text.\n- " + }, + { + "kind": "code", + "text": "`details`" + }, + { + "kind": "text", + "text": " — extra context, often the offending value, key, or row.\n- " + }, + { + "kind": "code", + "text": "`message`" + }, + { + "kind": "text", + "text": " — human-readable summary. Useful in UI strings; less useful\n for debugging.\n\n" }, { "kind": "inline-tag", @@ -22943,7 +23966,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 24, + "line": 43, "character": 2 } ], @@ -22971,7 +23994,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 24, + "line": 43, "character": 2 } ], @@ -23000,7 +24023,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 28, + "line": 47, "character": 4 } ], @@ -23018,7 +24041,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 26, + "line": 45, "character": 4 } ], @@ -23036,7 +24059,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 27, + "line": 46, "character": 4 } ], @@ -23054,7 +24077,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 25, + "line": 44, "character": 4 } ], @@ -23073,7 +24096,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 24, + "line": 43, "character": 23 } ] @@ -23109,7 +24132,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 10, + "line": 29, "character": 2 } ], @@ -23127,7 +24150,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 8, + "line": 27, "character": 2 } ], @@ -23145,7 +24168,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 9, + "line": 28, "character": 2 } ], @@ -23163,7 +24186,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 30, + "line": 49, "character": 2 } ], @@ -23177,7 +24200,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 30, + "line": 49, "character": 2 } ], @@ -23199,7 +24222,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 35, + "line": 54, "character": 4 } ], @@ -23217,7 +24240,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 33, + "line": 52, "character": 4 } ], @@ -23235,7 +24258,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 34, + "line": 53, "character": 4 } ], @@ -23253,7 +24276,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 32, + "line": 51, "character": 4 } ], @@ -23271,7 +24294,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 31, + "line": 50, "character": 4 } ], @@ -23290,7 +24313,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 30, + "line": 49, "character": 12 } ] @@ -23317,7 +24340,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 7, + "line": 26, "character": 14 } ], @@ -23349,7 +24372,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -23402,7 +24425,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -23533,7 +24556,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 696, + "line": 715, "character": 4 } ], @@ -23553,7 +24576,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 699, + "line": 718, "character": 4 } ], @@ -23779,7 +24802,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 694, + "line": 713, "character": 4 } ], @@ -23804,7 +24827,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 700, + "line": 719, "character": 4 } ], @@ -23822,7 +24845,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 692, + "line": 711, "character": 4 } ], @@ -23863,7 +24886,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 703, + "line": 722, "character": 4 } ], @@ -23883,7 +24906,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 695, + "line": 714, "character": 4 } ], @@ -23903,7 +24926,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 701, + "line": 720, "character": 4 } ], @@ -23923,7 +24946,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 697, + "line": 716, "character": 4 } ], @@ -23943,7 +24966,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 698, + "line": 717, "character": 4 } ], @@ -23966,7 +24989,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 693, + "line": 712, "character": 4 } ], @@ -23991,7 +25014,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 702, + "line": 721, "character": 4 } ], @@ -24012,7 +25035,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 23 } ] @@ -24110,7 +25133,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 660, + "line": 679, "character": 12 } ], @@ -24136,7 +25159,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 663, + "line": 682, "character": 12 } ], @@ -24370,7 +25393,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 658, + "line": 677, "character": 12 } ], @@ -24401,7 +25424,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 664, + "line": 683, "character": 12 } ], @@ -24427,7 +25450,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 656, + "line": 675, "character": 12 } ], @@ -24474,7 +25497,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 667, + "line": 686, "character": 12 } ], @@ -24501,7 +25524,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 659, + "line": 678, "character": 12 } ], @@ -24527,7 +25550,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 665, + "line": 684, "character": 12 } ], @@ -24553,7 +25576,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 661, + "line": 680, "character": 12 } ], @@ -24580,7 +25603,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 662, + "line": 681, "character": 12 } ], @@ -24611,7 +25634,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 657, + "line": 676, "character": 12 } ], @@ -24642,7 +25665,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 666, + "line": 685, "character": 12 } ], @@ -24667,7 +25690,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -24799,7 +25822,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -24855,12 +25878,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1860, + "line": 1879, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1861, + "line": 1880, "character": 2 } ], @@ -24874,7 +25897,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1860, + "line": 1879, "character": 2 } ], @@ -24981,7 +26004,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1861, + "line": 1880, "character": 2 } ], @@ -25060,12 +26083,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1858, + "line": 1877, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1859, + "line": 1878, "character": 2 } ], @@ -25079,7 +26102,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1858, + "line": 1877, "character": 2 } ], @@ -25186,7 +26209,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1859, + "line": 1878, "character": 2 } ], @@ -25267,7 +26290,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -25364,7 +26387,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -25410,7 +26433,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1712, + "line": 1731, "character": 2 } ], @@ -25536,7 +26559,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1712, + "line": 1731, "character": 2 } ], @@ -25868,7 +26891,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -26026,7 +27049,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -26083,7 +27106,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1589, + "line": 1608, "character": 4 } ], @@ -26119,7 +27142,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1592, + "line": 1611, "character": 4 } ], @@ -26159,7 +27182,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1594, + "line": 1613, "character": 4 } ], @@ -26204,7 +27227,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1591, + "line": 1610, "character": 4 } ], @@ -26248,7 +27271,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1590, + "line": 1609, "character": 4 } ], @@ -26284,7 +27307,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1593, + "line": 1612, "character": 4 } ], @@ -26303,7 +27326,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1588, + "line": 1607, "character": 6 } ] @@ -26404,12 +27427,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2045, + "line": 2064, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2046, + "line": 2065, "character": 2 } ], @@ -26423,7 +27446,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2045, + "line": 2064, "character": 2 } ], @@ -26602,7 +27625,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2046, + "line": 2065, "character": 2 } ], @@ -26659,7 +27682,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -26702,7 +27725,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -26763,12 +27786,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1765, + "line": 1784, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1766, + "line": 1785, "character": 2 } ], @@ -26782,7 +27805,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1765, + "line": 1784, "character": 2 } ], @@ -26854,7 +27877,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1766, + "line": 1785, "character": 2 } ], @@ -26898,12 +27921,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1767, + "line": 1786, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1768, + "line": 1787, "character": 2 } ], @@ -26917,7 +27940,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1767, + "line": 1786, "character": 2 } ], @@ -26989,7 +28012,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1768, + "line": 1787, "character": 2 } ], @@ -27033,12 +28056,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1779, + "line": 1798, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1780, + "line": 1799, "character": 2 } ], @@ -27052,7 +28075,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1779, + "line": 1798, "character": 2 } ], @@ -27110,7 +28133,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1780, + "line": 1799, "character": 2 } ], @@ -27154,12 +28177,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1781, + "line": 1800, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1782, + "line": 1801, "character": 2 } ], @@ -27173,7 +28196,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1781, + "line": 1800, "character": 2 } ], @@ -27238,7 +28261,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1782, + "line": 1801, "character": 2 } ], @@ -27289,12 +28312,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1783, + "line": 1802, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1784, + "line": 1803, "character": 2 } ], @@ -27308,7 +28331,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1783, + "line": 1802, "character": 2 } ], @@ -27373,7 +28396,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1784, + "line": 1803, "character": 2 } ], @@ -27424,7 +28447,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1850, + "line": 1869, "character": 2 } ], @@ -27534,7 +28557,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1850, + "line": 1869, "character": 2 } ], @@ -27719,12 +28742,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1789, + "line": 1808, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1790, + "line": 1809, "character": 2 } ], @@ -27738,7 +28761,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1789, + "line": 1808, "character": 2 } ], @@ -27828,7 +28851,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1790, + "line": 1809, "character": 2 } ], @@ -27881,7 +28904,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1801, + "line": 1820, "character": 2 } ], @@ -27951,7 +28974,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1801, + "line": 1820, "character": 2 } ], @@ -28129,12 +29152,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1773, + "line": 1792, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1774, + "line": 1793, "character": 2 } ], @@ -28148,7 +29171,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1773, + "line": 1792, "character": 2 } ], @@ -28206,7 +29229,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1774, + "line": 1793, "character": 2 } ], @@ -28250,12 +29273,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1775, + "line": 1794, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1776, + "line": 1795, "character": 2 } ], @@ -28269,7 +29292,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1775, + "line": 1794, "character": 2 } ], @@ -28334,7 +29357,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1776, + "line": 1795, "character": 2 } ], @@ -28385,12 +29408,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1777, + "line": 1796, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1778, + "line": 1797, "character": 2 } ], @@ -28404,7 +29427,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1777, + "line": 1796, "character": 2 } ], @@ -28469,7 +29492,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1778, + "line": 1797, "character": 2 } ], @@ -28522,7 +29545,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -28662,7 +29685,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -28738,7 +29761,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1224, + "line": 1243, "character": 4 } ], @@ -28766,7 +29789,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1225, + "line": 1244, "character": 4 } ], @@ -28785,7 +29808,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1223, + "line": 1242, "character": 6 } ] @@ -28819,12 +29842,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1769, + "line": 1788, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1770, + "line": 1789, "character": 2 } ], @@ -28838,7 +29861,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1769, + "line": 1788, "character": 2 } ], @@ -28910,7 +29933,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1770, + "line": 1789, "character": 2 } ], @@ -28954,12 +29977,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1771, + "line": 1790, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1772, + "line": 1791, "character": 2 } ], @@ -28973,7 +29996,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1771, + "line": 1790, "character": 2 } ], @@ -29045,7 +30068,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1772, + "line": 1791, "character": 2 } ], @@ -29089,12 +30112,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1882, + "line": 1901, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1883, + "line": 1902, "character": 2 } ], @@ -29108,7 +30131,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1882, + "line": 1901, "character": 2 } ], @@ -29184,7 +30207,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1883, + "line": 1902, "character": 2 } ], @@ -29234,7 +30257,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -29269,7 +30292,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -29473,7 +30496,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -29585,7 +30608,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -29690,7 +30713,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1764, + "line": 1783, "character": 2 } ], @@ -29824,7 +30847,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1764, + "line": 1783, "character": 2 } ], @@ -30137,17 +31160,17 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1884, + "line": 1903, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1885, + "line": 1904, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1886, + "line": 1905, "character": 2 } ], @@ -30161,7 +31184,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1884, + "line": 1903, "character": 2 } ], @@ -30395,7 +31418,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1885, + "line": 1904, "character": 2 } ], @@ -30483,7 +31506,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1886, + "line": 1905, "character": 2 } ], @@ -30538,7 +31561,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1857, + "line": 1876, "character": 2 } ], @@ -30576,7 +31599,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1857, + "line": 1876, "character": 2 } ], @@ -30761,7 +31784,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2038, + "line": 2057, "character": 2 } ], @@ -31004,7 +32027,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2038, + "line": 2057, "character": 2 } ], @@ -31080,7 +32103,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2042, + "line": 2061, "character": 4 } ], @@ -31108,7 +32131,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2043, + "line": 2062, "character": 4 } ], @@ -31127,7 +32150,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2041, + "line": 2060, "character": 6 } ] @@ -31153,22 +32176,22 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -31184,7 +32207,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 } ], @@ -31244,7 +32267,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1095, + "line": 1114, "character": 4 } ], @@ -31264,7 +32287,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1096, + "line": 1115, "character": 4 } ], @@ -31284,7 +32307,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1097, + "line": 1116, "character": 4 } ], @@ -31303,7 +32326,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 77 } ] @@ -31332,7 +32355,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 } ], @@ -31376,7 +32399,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1100, + "line": 1119, "character": 4 } ], @@ -31396,7 +32419,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1101, + "line": 1120, "character": 4 } ], @@ -31416,7 +32439,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1102, + "line": 1121, "character": 4 } ], @@ -31435,7 +32458,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 34 } ] @@ -31490,7 +32513,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 } ], @@ -31550,7 +32573,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1108, + "line": 1127, "character": 4 } ], @@ -31570,7 +32593,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1110, + "line": 1129, "character": 4 } ], @@ -31590,7 +32613,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1109, + "line": 1128, "character": 4 } ], @@ -31609,7 +32632,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 77 } ] @@ -31664,7 +32687,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -31708,7 +32731,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1116, + "line": 1135, "character": 4 } ], @@ -31728,7 +32751,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1118, + "line": 1137, "character": 4 } ], @@ -31748,7 +32771,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1117, + "line": 1136, "character": 4 } ], @@ -31767,7 +32790,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 34 } ] @@ -31801,12 +32824,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1872, + "line": 1891, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1873, + "line": 1892, "character": 2 } ], @@ -31820,7 +32843,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1872, + "line": 1891, "character": 2 } ], @@ -31908,7 +32931,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1873, + "line": 1892, "character": 2 } ], @@ -31970,7 +32993,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -32142,7 +33165,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -32196,7 +33219,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 901, + "line": 920, "character": 4 } ], @@ -32215,7 +33238,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 43 } ] @@ -32239,7 +33262,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 903, + "line": 922, "character": 4 } ], @@ -32258,7 +33281,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 902, + "line": 921, "character": 6 } ] @@ -32489,7 +33512,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -32625,7 +33648,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -32720,7 +33743,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1286, + "line": 1305, "character": 4 } ], @@ -32748,7 +33771,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1287, + "line": 1306, "character": 4 } ], @@ -32767,7 +33790,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1285, + "line": 1304, "character": 6 } ] @@ -32801,12 +33824,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1870, + "line": 1889, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1871, + "line": 1890, "character": 2 } ], @@ -32820,7 +33843,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1870, + "line": 1889, "character": 2 } ], @@ -32878,7 +33901,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1871, + "line": 1890, "character": 2 } ], @@ -32922,12 +33945,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1862, + "line": 1881, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1863, + "line": 1882, "character": 2 } ], @@ -32941,7 +33964,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1862, + "line": 1881, "character": 2 } ], @@ -32999,7 +34022,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1863, + "line": 1882, "character": 2 } ], @@ -33043,12 +34066,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1864, + "line": 1883, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1865, + "line": 1884, "character": 2 } ], @@ -33062,7 +34085,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1864, + "line": 1883, "character": 2 } ], @@ -33120,7 +34143,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1865, + "line": 1884, "character": 2 } ], @@ -33164,12 +34187,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1866, + "line": 1885, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1867, + "line": 1886, "character": 2 } ], @@ -33183,7 +34206,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1866, + "line": 1885, "character": 2 } ], @@ -33241,7 +34264,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1867, + "line": 1886, "character": 2 } ], @@ -33285,12 +34308,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1868, + "line": 1887, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1869, + "line": 1888, "character": 2 } ], @@ -33304,7 +34327,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1868, + "line": 1887, "character": 2 } ], @@ -33362,7 +34385,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1869, + "line": 1888, "character": 2 } ], @@ -33406,12 +34429,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1787, + "line": 1806, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1788, + "line": 1807, "character": 2 } ], @@ -33425,7 +34448,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1787, + "line": 1806, "character": 2 } ], @@ -33483,7 +34506,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1788, + "line": 1807, "character": 2 } ], @@ -33527,12 +34550,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1785, + "line": 1804, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1786, + "line": 1805, "character": 2 } ], @@ -33546,7 +34569,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1785, + "line": 1804, "character": 2 } ], @@ -33604,7 +34627,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1786, + "line": 1805, "character": 2 } ], @@ -33650,7 +34673,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -33689,7 +34712,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -33742,7 +34765,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -33858,7 +34881,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -33985,7 +35008,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -34028,7 +35051,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -34060,7 +35083,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -34196,7 +35219,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -34448,7 +35471,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -34483,7 +35506,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -34539,7 +35562,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -34651,7 +35674,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -34749,7 +35772,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -34859,7 +35882,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -34889,12 +35912,12 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1874, + "line": 1893, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1878, + "line": 1897, "character": 2 } ], @@ -34908,7 +35931,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1874, + "line": 1893, "character": 2 } ], @@ -34979,7 +36002,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1875, + "line": 1894, "character": 4 } ], @@ -34999,7 +36022,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1876, + "line": 1895, "character": 4 } ], @@ -35031,7 +36054,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1874, + "line": 1893, "character": 97 } ] @@ -35053,7 +36076,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1878, + "line": 1897, "character": 2 } ], @@ -35108,7 +36131,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1879, + "line": 1898, "character": 4 } ], @@ -35128,7 +36151,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1880, + "line": 1899, "character": 4 } ], @@ -35160,7 +36183,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1878, + "line": 1897, "character": 54 } ] @@ -35186,7 +36209,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -35221,7 +36244,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -35296,7 +36319,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -35310,7 +36333,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -35410,7 +36433,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -35424,7 +36447,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -35533,7 +36556,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -35574,7 +36597,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -35731,7 +36754,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1665, + "line": 1684, "character": 14 } ], @@ -35918,7 +36941,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2097, + "line": 2116, "character": 2 } ], @@ -35971,7 +36994,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2097, + "line": 2116, "character": 2 } ], @@ -36083,7 +37106,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2051, + "line": 2070, "character": 2 } ], @@ -36108,7 +37131,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2050, + "line": 2069, "character": 216 } ] @@ -36198,7 +37221,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2106, + "line": 2125, "character": 4 } ], @@ -36434,7 +37457,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2104, + "line": 2123, "character": 4 } ], @@ -36467,7 +37490,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2108, + "line": 2127, "character": 4 } ], @@ -36495,7 +37518,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2105, + "line": 2124, "character": 4 } ], @@ -36523,7 +37546,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2107, + "line": 2126, "character": 4 } ], @@ -36542,7 +37565,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2103, + "line": 2122, "character": 5 } ] @@ -36612,7 +37635,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2057, + "line": 2076, "character": 2 } ], @@ -36838,7 +37861,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2054, + "line": 2073, "character": 2 } ], @@ -36879,7 +37902,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2065, + "line": 2084, "character": 2 } ], @@ -36899,7 +37922,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2055, + "line": 2074, "character": 2 } ], @@ -36919,7 +37942,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2056, + "line": 2075, "character": 2 } ], @@ -36942,7 +37965,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2053, + "line": 2072, "character": 2 } ], @@ -36965,7 +37988,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2058, + "line": 2077, "character": 2 } ], @@ -36983,7 +38006,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3512, + "line": 3594, "character": 2 } ], @@ -37112,6 +38135,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT DELETE ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').delete().eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Delete a record and return it", @@ -37189,7 +38271,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3512, + "line": 3594, "character": 2 } ], @@ -37270,7 +38352,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3515, + "line": 3597, "character": 4 } ], @@ -37321,7 +38403,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3514, + "line": 3596, "character": 6 } ] @@ -37404,7 +38486,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3008, + "line": 3063, "character": 2 } ], @@ -37476,6 +38558,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT ON public.countries TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('countries').insert({ id: 1, name: 'Mordor' })\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Create a record and return it", @@ -37562,7 +38703,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3008, + "line": 3063, "character": 2 } ], @@ -37647,7 +38788,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3011, + "line": 3066, "character": 4 } ], @@ -37666,7 +38807,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3010, + "line": 3065, "character": 87 } ] @@ -37750,7 +38891,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3013, + "line": 3068, "character": 4 } ], @@ -37769,7 +38910,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3012, + "line": 3067, "character": 85 } ] @@ -37896,7 +39037,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3018, + "line": 3073, "character": 4 } ], @@ -37964,7 +39105,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3019, + "line": 3074, "character": 4 } ], @@ -37983,7 +39124,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3017, + "line": 3072, "character": 6 } ] @@ -38066,7 +39207,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2893, + "line": 2939, "character": 2 } ], @@ -38203,6 +39344,86 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\nThe most useful field on a Postgres error is usually " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " — when the database knows the fix, it puts the literal SQL there. For example, a permission-denied error (" + }, + { + "kind": "code", + "text": "`code: '42501'`" + }, + { + "kind": "text", + "text": ") arrives with a " + }, + { + "kind": "code", + "text": "`hint`" + }, + { + "kind": "text", + "text": " like " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\"`" + }, + { + "kind": "text", + "text": ". Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so the hint isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('characters').select()\nif (error) {\n // Logs the full error: message, code, details, and hint.\n console.error(error)\n return\n}\n```" + } + ] + }, + { + "tag": "@exampleResponse", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "```json\n{\n \"error\": {\n \"code\": \"42501\",\n \"details\": null,\n \"hint\": \"Grant the required privileges to the current role with: GRANT SELECT ON public.characters TO anon;\",\n \"message\": \"permission denied for table characters\"\n },\n \"status\": 401,\n \"statusText\": \"Unauthorized\"\n}\n```" + } + ] + }, { "tag": "@example", "name": "Selecting specific columns", @@ -38782,7 +40003,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2893, + "line": 2939, "character": 2 } ], @@ -38980,7 +40201,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2895, + "line": 2941, "character": 4 } ], @@ -39056,7 +40277,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2894, + "line": 2940, "character": 4 } ], @@ -39075,7 +40296,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2893, + "line": 2939, "character": 165 } ] @@ -39164,7 +40385,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3385, + "line": 3458, "character": 2 } ], @@ -39253,6 +40474,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { error } = await supabase.from('instruments').update({ name: 'piano' }).eq('id', 1)\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Update a record and return it", @@ -39339,7 +40619,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3385, + "line": 3458, "character": 2 } ], @@ -39421,7 +40701,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3388, + "line": 3461, "character": 4 } ], @@ -39440,7 +40720,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3387, + "line": 3460, "character": 87 } ] @@ -39564,7 +40844,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3392, + "line": 3465, "character": 4 } ], @@ -39615,7 +40895,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3391, + "line": 3464, "character": 6 } ] @@ -39698,7 +40978,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3229, + "line": 3293, "character": 2 } ], @@ -39847,6 +41127,65 @@ } ] }, + { + "tag": "@exampleDescription", + "content": [ + { + "kind": "text", + "text": "Handling errors\n" + }, + { + "kind": "code", + "text": "`error.hint`" + }, + { + "kind": "text", + "text": " from Postgres often contains the actionable fix (e.g. " + }, + { + "kind": "code", + "text": "`\"Grant the required privileges to the current role with: GRANT INSERT, UPDATE ON public.instruments TO anon;\"`" + }, + { + "kind": "text", + "text": " for a " + }, + { + "kind": "code", + "text": "`42501`" + }, + { + "kind": "text", + "text": " permission-denied error). Log the full " + }, + { + "kind": "code", + "text": "`error`" + }, + { + "kind": "text", + "text": " object so it isn't hidden behind " + }, + { + "kind": "code", + "text": "`error.message`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nconst { data, error } = await supabase.from('instruments').upsert({ id: 1, name: 'piano' }).select()\nif (error) console.error(error)\n```" + } + ] + }, { "tag": "@example", "name": "Bulk Upsert your data", @@ -39997,7 +41336,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3229, + "line": 3293, "character": 2 } ], @@ -40082,7 +41421,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3232, + "line": 3296, "character": 4 } ], @@ -40101,7 +41440,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3231, + "line": 3295, "character": 87 } ] @@ -40185,7 +41524,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3234, + "line": 3298, "character": 4 } ], @@ -40204,7 +41543,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3233, + "line": 3297, "character": 85 } ] @@ -40331,7 +41670,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3243, + "line": 3307, "character": 4 } ], @@ -40407,7 +41746,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3244, + "line": 3308, "character": 4 } ], @@ -40451,7 +41790,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3242, + "line": 3306, "character": 4 } ], @@ -40487,7 +41826,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3241, + "line": 3305, "character": 4 } ], @@ -40506,7 +41845,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 3240, + "line": 3304, "character": 6 } ] @@ -40608,7 +41947,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2050, + "line": 2069, "character": 14 } ], @@ -40720,7 +42059,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2051, + "line": 2070, "character": 2 } ], @@ -40739,7 +42078,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 2050, + "line": 2069, "character": 216 } ] @@ -40779,7 +42118,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -40832,7 +42171,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 2 } ], @@ -40963,7 +42302,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 696, + "line": 715, "character": 4 } ], @@ -40983,7 +42322,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 699, + "line": 718, "character": 4 } ], @@ -41209,7 +42548,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 694, + "line": 713, "character": 4 } ], @@ -41234,7 +42573,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 700, + "line": 719, "character": 4 } ], @@ -41252,7 +42591,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 692, + "line": 711, "character": 4 } ], @@ -41293,7 +42632,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 703, + "line": 722, "character": 4 } ], @@ -41313,7 +42652,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 695, + "line": 714, "character": 4 } ], @@ -41333,7 +42672,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 701, + "line": 720, "character": 4 } ], @@ -41353,7 +42692,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 697, + "line": 716, "character": 4 } ], @@ -41373,7 +42712,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 698, + "line": 717, "character": 4 } ], @@ -41396,7 +42735,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 693, + "line": 712, "character": 4 } ], @@ -41421,7 +42760,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 702, + "line": 721, "character": 4 } ], @@ -41442,7 +42781,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 691, + "line": 710, "character": 23 } ] @@ -41540,7 +42879,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 660, + "line": 679, "character": 12 } ], @@ -41566,7 +42905,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 663, + "line": 682, "character": 12 } ], @@ -41800,7 +43139,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 658, + "line": 677, "character": 12 } ], @@ -41831,7 +43170,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 664, + "line": 683, "character": 12 } ], @@ -41857,7 +43196,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 656, + "line": 675, "character": 12 } ], @@ -41904,7 +43243,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 667, + "line": 686, "character": 12 } ], @@ -41931,7 +43270,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 659, + "line": 678, "character": 12 } ], @@ -41957,7 +43296,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 665, + "line": 684, "character": 12 } ], @@ -41983,7 +43322,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 661, + "line": 680, "character": 12 } ], @@ -42010,7 +43349,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 662, + "line": 681, "character": 12 } ], @@ -42041,7 +43380,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 657, + "line": 676, "character": 12 } ], @@ -42072,7 +43411,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 666, + "line": 685, "character": 12 } ], @@ -42095,7 +43434,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -42225,7 +43564,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1355, + "line": 1374, "character": 2 } ], @@ -42271,7 +43610,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -42366,7 +43705,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1478, + "line": 1497, "character": 2 } ], @@ -42402,7 +43741,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -42558,7 +43897,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1581, + "line": 1600, "character": 2 } ], @@ -42615,7 +43954,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1589, + "line": 1608, "character": 4 } ], @@ -42651,7 +43990,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1592, + "line": 1611, "character": 4 } ], @@ -42691,7 +44030,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1594, + "line": 1613, "character": 4 } ], @@ -42736,7 +44075,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1591, + "line": 1610, "character": 4 } ], @@ -42780,7 +44119,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1590, + "line": 1609, "character": 4 } ], @@ -42816,7 +44155,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1593, + "line": 1612, "character": 4 } ], @@ -42835,7 +44174,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1588, + "line": 1607, "character": 6 } ] @@ -42926,7 +44265,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -42967,7 +44306,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1484, + "line": 1503, "character": 2 } ], @@ -43018,7 +44357,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -43156,7 +44495,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1220, + "line": 1239, "character": 2 } ], @@ -43232,7 +44571,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1224, + "line": 1243, "character": 4 } ], @@ -43260,7 +44599,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1225, + "line": 1244, "character": 4 } ], @@ -43279,7 +44618,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1223, + "line": 1242, "character": 6 } ] @@ -43303,7 +44642,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -43336,7 +44675,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1652, + "line": 1671, "character": 2 } ], @@ -43528,7 +44867,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -43638,7 +44977,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1438, + "line": 1457, "character": 2 } ], @@ -43733,22 +45072,22 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 }, { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -43762,7 +45101,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 2 } ], @@ -43822,7 +45161,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1095, + "line": 1114, "character": 4 } ], @@ -43842,7 +45181,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1096, + "line": 1115, "character": 4 } ], @@ -43862,7 +45201,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1097, + "line": 1116, "character": 4 } ], @@ -43881,7 +45220,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1094, + "line": 1113, "character": 77 } ] @@ -43903,7 +45242,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 2 } ], @@ -43947,7 +45286,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1100, + "line": 1119, "character": 4 } ], @@ -43967,7 +45306,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1101, + "line": 1120, "character": 4 } ], @@ -43987,7 +45326,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1102, + "line": 1121, "character": 4 } ], @@ -44006,7 +45345,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1099, + "line": 1118, "character": 34 } ] @@ -44054,7 +45393,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 2 } ], @@ -44114,7 +45453,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1108, + "line": 1127, "character": 4 } ], @@ -44134,7 +45473,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1110, + "line": 1129, "character": 4 } ], @@ -44154,7 +45493,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1109, + "line": 1128, "character": 4 } ], @@ -44173,7 +45512,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1107, + "line": 1126, "character": 77 } ] @@ -44221,7 +45560,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 2 } ], @@ -44265,7 +45604,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1116, + "line": 1135, "character": 4 } ], @@ -44285,7 +45624,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1118, + "line": 1137, "character": 4 } ], @@ -44305,7 +45644,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1117, + "line": 1136, "character": 4 } ], @@ -44324,7 +45663,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1115, + "line": 1134, "character": 34 } ] @@ -44350,7 +45689,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -44522,7 +45861,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 2 } ], @@ -44576,7 +45915,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 901, + "line": 920, "character": 4 } ], @@ -44595,7 +45934,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 900, + "line": 919, "character": 43 } ] @@ -44619,7 +45958,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 903, + "line": 922, "character": 4 } ], @@ -44638,7 +45977,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 902, + "line": 921, "character": 6 } ] @@ -44867,7 +46206,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -45001,7 +46340,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1282, + "line": 1301, "character": 2 } ], @@ -45096,7 +46435,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1286, + "line": 1305, "character": 4 } ], @@ -45124,7 +46463,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1287, + "line": 1306, "character": 4 } ], @@ -45143,7 +46482,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1285, + "line": 1304, "character": 6 } ] @@ -45169,7 +46508,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -45208,7 +46547,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 791, + "line": 810, "character": 2 } ], @@ -45259,7 +46598,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -45373,7 +46712,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1643, + "line": 1662, "character": 2 } ], @@ -45498,7 +46837,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -45539,7 +46878,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1603, + "line": 1622, "character": 2 } ], @@ -45559,7 +46898,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -45693,7 +47032,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1093, + "line": 1112, "character": 2 } ], @@ -45935,7 +47274,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -45970,7 +47309,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 770, + "line": 789, "character": 2 } ], @@ -46024,7 +47363,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -46134,7 +47473,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1398, + "line": 1417, "character": 2 } ], @@ -46222,7 +47561,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -46332,7 +47671,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 764, + "line": 783, "character": 2 } ], @@ -46364,7 +47703,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -46399,7 +47738,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 2 } ], @@ -46474,7 +47813,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -46488,7 +47827,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 153 } ], @@ -46588,7 +47927,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -46602,7 +47941,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 792, + "line": 811, "character": 332 } ], @@ -46711,7 +48050,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -46752,7 +48091,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 713, + "line": 732, "character": 2 } ], @@ -46903,7 +48242,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 1047, + "line": 1066, "character": 14 } ], @@ -47042,7 +48381,7 @@ ] }, { - "id": 2800, + "id": 2822, "name": "RealtimeChannel", "variant": "declaration", "kind": 128, @@ -47057,7 +48396,7 @@ }, "children": [ { - "id": 2801, + "id": 2823, "name": "constructor", "variant": "declaration", "kind": 512, @@ -47071,7 +48410,7 @@ ], "signatures": [ { - "id": 2802, + "id": 2824, "name": "RealtimeChannel", "variant": "signature", "kind": 16384, @@ -47124,7 +48463,7 @@ ], "parameters": [ { - "id": 2803, + "id": 2825, "name": "topic", "variant": "param", "kind": 32768, @@ -47143,7 +48482,7 @@ } }, { - "id": 2804, + "id": 2826, "name": "params", "variant": "param", "kind": 32768, @@ -47157,7 +48496,7 @@ }, { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" } @@ -47165,14 +48504,14 @@ } }, { - "id": 2805, + "id": 2827, "name": "socket", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -47181,7 +48520,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -47190,7 +48529,7 @@ ] }, { - "id": 2809, + "id": 2831, "name": "bindings", "variant": "declaration", "kind": 1024, @@ -47231,7 +48570,7 @@ } }, { - "id": 2811, + "id": 2833, "name": "broadcastEndpointURL", "variant": "declaration", "kind": 1024, @@ -47249,7 +48588,7 @@ } }, { - "id": 2807, + "id": 2829, "name": "params", "variant": "declaration", "kind": 1024, @@ -47263,13 +48602,13 @@ ], "type": { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" } }, { - "id": 2813, + "id": 2835, "name": "presence", "variant": "declaration", "kind": 1024, @@ -47283,14 +48622,14 @@ ], "type": { "type": "reference", - "target": 2791, + "target": 2813, "name": "RealtimePresence", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2812, + "id": 2834, "name": "private", "variant": "declaration", "kind": 1024, @@ -47308,7 +48647,7 @@ } }, { - "id": 2808, + "id": 2830, "name": "socket", "variant": "declaration", "kind": 1024, @@ -47322,14 +48661,14 @@ ], "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2810, + "id": 2832, "name": "subTopic", "variant": "declaration", "kind": 1024, @@ -47347,7 +48686,7 @@ } }, { - "id": 2806, + "id": 2828, "name": "topic", "variant": "declaration", "kind": 1024, @@ -47373,7 +48712,7 @@ } }, { - "id": 2818, + "id": 2840, "name": "joinedOnce", "variant": "declaration", "kind": 262144, @@ -47386,7 +48725,7 @@ } ], "getSignature": { - "id": 2819, + "id": 2841, "name": "joinedOnce", "variant": "signature", "kind": 524288, @@ -47405,7 +48744,7 @@ } }, { - "id": 2822, + "id": 2844, "name": "joinPush", "variant": "declaration", "kind": 262144, @@ -47418,7 +48757,7 @@ } ], "getSignature": { - "id": 2823, + "id": 2845, "name": "joinPush", "variant": "signature", "kind": 524288, @@ -47443,7 +48782,7 @@ } }, { - "id": 2824, + "id": 2846, "name": "rejoinTimer", "variant": "declaration", "kind": 262144, @@ -47456,7 +48795,7 @@ } ], "getSignature": { - "id": 2825, + "id": 2847, "name": "rejoinTimer", "variant": "signature", "kind": 524288, @@ -47481,7 +48820,7 @@ } }, { - "id": 2814, + "id": 2836, "name": "state", "variant": "declaration", "kind": 262144, @@ -47499,7 +48838,7 @@ } ], "getSignature": { - "id": 2815, + "id": 2837, "name": "state", "variant": "signature", "kind": 524288, @@ -47522,7 +48861,7 @@ } }, "setSignature": { - "id": 2816, + "id": 2838, "name": "state", "variant": "signature", "kind": 1048576, @@ -47536,7 +48875,7 @@ ], "parameters": [ { - "id": 2817, + "id": 2839, "name": "state", "variant": "param", "kind": 32768, @@ -47559,7 +48898,7 @@ } }, { - "id": 2820, + "id": 2842, "name": "timeout", "variant": "declaration", "kind": 262144, @@ -47572,7 +48911,7 @@ } ], "getSignature": { - "id": 2821, + "id": 2843, "name": "timeout", "variant": "signature", "kind": 524288, @@ -47591,7 +48930,7 @@ } }, { - "id": 3111, + "id": 3133, "name": "copyBindings", "variant": "declaration", "kind": 2048, @@ -47599,13 +48938,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 445, + "line": 463, "character": 4 } ], "signatures": [ { - "id": 3112, + "id": 3134, "name": "copyBindings", "variant": "signature", "kind": 4096, @@ -47613,20 +48952,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 445, + "line": 463, "character": 4 } ], "parameters": [ { - "id": 3113, + "id": 3135, "name": "other", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -47641,7 +48980,7 @@ ] }, { - "id": 3077, + "id": 3099, "name": "httpSend", "variant": "declaration", "kind": 2048, @@ -47649,13 +48988,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 355, + "line": 373, "character": 4 } ], "signatures": [ { - "id": 3078, + "id": 3100, "name": "httpSend", "variant": "signature", "kind": 4096, @@ -47664,7 +49003,39 @@ "summary": [ { "kind": "text", - "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback." + "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback.\n\nPayloads that are " + }, + { + "kind": "code", + "text": "`ArrayBuffer`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`ArrayBufferView`" + }, + { + "kind": "text", + "text": " (e.g. " + }, + { + "kind": "code", + "text": "`Uint8Array`" + }, + { + "kind": "text", + "text": ") are sent as\n" + }, + { + "kind": "code", + "text": "`application/octet-stream`" + }, + { + "kind": "text", + "text": "; all other payloads are JSON-encoded." } ], "blockTags": [ @@ -47691,13 +49062,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 355, + "line": 373, "character": 4 } ], "parameters": [ { - "id": 3079, + "id": 3101, "name": "event", "variant": "param", "kind": 32768, @@ -47716,7 +49087,7 @@ } }, { - "id": 3080, + "id": 3102, "name": "payload", "variant": "param", "kind": 32768, @@ -47735,7 +49106,7 @@ } }, { - "id": 3081, + "id": 3103, "name": "opts", "variant": "param", "kind": 32768, @@ -47753,14 +49124,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3082, + "id": 3104, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3083, + "id": 3105, "name": "timeout", "variant": "declaration", "kind": 1024, @@ -47770,7 +49141,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 356, + "line": 374, "character": 8 } ], @@ -47783,13 +49154,13 @@ "groups": [ { "title": "Properties", - "children": [3083] + "children": [3105] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 355, + "line": 373, "character": 49 } ] @@ -47810,14 +49181,14 @@ { "type": "reflection", "declaration": { - "id": 3084, + "id": 3106, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3085, + "id": 3107, "name": "success", "variant": "declaration", "kind": 1024, @@ -47825,7 +49196,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 358, + "line": 376, "character": 8 } ], @@ -47838,13 +49209,13 @@ "groups": [ { "title": "Properties", - "children": [3085] + "children": [3107] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 357, + "line": 375, "character": 16 } ] @@ -47853,14 +49224,14 @@ { "type": "reflection", "declaration": { - "id": 3086, + "id": 3108, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3089, + "id": 3111, "name": "error", "variant": "declaration", "kind": 1024, @@ -47868,7 +49239,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 362, + "line": 380, "character": 8 } ], @@ -47878,7 +49249,7 @@ } }, { - "id": 3088, + "id": 3110, "name": "status", "variant": "declaration", "kind": 1024, @@ -47886,7 +49257,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 361, + "line": 379, "character": 8 } ], @@ -47896,7 +49267,7 @@ } }, { - "id": 3087, + "id": 3109, "name": "success", "variant": "declaration", "kind": 1024, @@ -47904,7 +49275,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 360, + "line": 378, "character": 8 } ], @@ -47917,13 +49288,13 @@ "groups": [ { "title": "Properties", - "children": [3089, 3088, 3087] + "children": [3111, 3110, 3109] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 359, + "line": 377, "character": 8 } ] @@ -47939,7 +49310,7 @@ ] }, { - "id": 2858, + "id": 2880, "name": "on", "variant": "declaration", "kind": 2048, @@ -47947,88 +49318,88 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 242, + "line": 257, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 245, + "line": 260, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 250, + "line": 265, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 255, + "line": 270, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 260, + "line": 275, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 263, + "line": 278, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 266, + "line": 281, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 269, + "line": 284, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 272, + "line": 287, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 281, + "line": 296, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 292, + "line": 307, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 305, + "line": 320, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 312, + "line": 327, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 321, + "line": 336, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 330, + "line": 345, "character": 4 }, { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 339, + "line": 354, "character": 4 } ], "signatures": [ { - "id": 2859, + "id": 2881, "name": "on", "variant": "signature", "kind": 4096, @@ -48044,13 +49415,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 242, + "line": 257, "character": 4 } ], "parameters": [ { - "id": 2860, + "id": 2882, "name": "type", "variant": "param", "kind": 32768, @@ -48061,7 +49432,7 @@ } }, { - "id": 2861, + "id": 2883, "name": "filter", "variant": "param", "kind": 32768, @@ -48069,14 +49440,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2862, + "id": 2884, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2863, + "id": 2885, "name": "event", "variant": "declaration", "kind": 1024, @@ -48084,7 +49455,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 243, + "line": 258, "character": 8 } ], @@ -48097,13 +49468,13 @@ "groups": [ { "title": "Properties", - "children": [2863] + "children": [2885] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 242, + "line": 257, "character": 58 } ] @@ -48111,7 +49482,7 @@ } }, { - "id": 2864, + "id": 2886, "name": "callback", "variant": "param", "kind": 32768, @@ -48119,7 +49490,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2865, + "id": 2887, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48127,13 +49498,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 244, + "line": 259, "character": 17 } ], "signatures": [ { - "id": 2866, + "id": 2888, "name": "__type", "variant": "signature", "kind": 4096, @@ -48141,7 +49512,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 244, + "line": 259, "character": 17 } ], @@ -48157,14 +49528,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2867, + "id": 2889, "name": "on", "variant": "signature", "kind": 4096, @@ -48180,13 +49551,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 245, + "line": 260, "character": 4 } ], "typeParameters": [ { - "id": 2868, + "id": 2890, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48194,7 +49565,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2869, + "id": 2891, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48202,13 +49573,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 245, + "line": 260, "character": 17 } ], "indexSignatures": [ { - "id": 2870, + "id": 2892, "name": "__index", "variant": "signature", "kind": 8192, @@ -48216,13 +49587,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 246, + "line": 261, "character": 8 } ], "parameters": [ { - "id": 2871, + "id": 2893, "name": "key", "variant": "param", "kind": 32768, @@ -48245,7 +49616,7 @@ ], "parameters": [ { - "id": 2872, + "id": 2894, "name": "type", "variant": "param", "kind": 32768, @@ -48256,7 +49627,7 @@ } }, { - "id": 2873, + "id": 2895, "name": "filter", "variant": "param", "kind": 32768, @@ -48264,14 +49635,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2874, + "id": 2896, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2875, + "id": 2897, "name": "event", "variant": "declaration", "kind": 1024, @@ -48279,7 +49650,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 248, + "line": 263, "character": 8 } ], @@ -48292,13 +49663,13 @@ "groups": [ { "title": "Properties", - "children": [2875] + "children": [2897] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 247, + "line": 262, "character": 58 } ] @@ -48306,7 +49677,7 @@ } }, { - "id": 2876, + "id": 2898, "name": "callback", "variant": "param", "kind": 32768, @@ -48314,7 +49685,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2877, + "id": 2899, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48322,13 +49693,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 249, + "line": 264, "character": 17 } ], "signatures": [ { - "id": 2878, + "id": 2900, "name": "__type", "variant": "signature", "kind": 4096, @@ -48336,24 +49707,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 249, + "line": 264, "character": 17 } ], "parameters": [ { - "id": 2879, + "id": 2901, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3340, + "target": 3362, "typeArguments": [ { "type": "reference", - "target": 2868, + "target": 2890, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48376,14 +49747,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2880, + "id": 2902, "name": "on", "variant": "signature", "kind": 4096, @@ -48399,13 +49770,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 250, + "line": 265, "character": 4 } ], "typeParameters": [ { - "id": 2881, + "id": 2903, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48413,7 +49784,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2882, + "id": 2904, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48421,13 +49792,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 250, + "line": 265, "character": 17 } ], "indexSignatures": [ { - "id": 2883, + "id": 2905, "name": "__index", "variant": "signature", "kind": 8192, @@ -48435,13 +49806,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 251, + "line": 266, "character": 8 } ], "parameters": [ { - "id": 2884, + "id": 2906, "name": "key", "variant": "param", "kind": 32768, @@ -48464,7 +49835,7 @@ ], "parameters": [ { - "id": 2885, + "id": 2907, "name": "type", "variant": "param", "kind": 32768, @@ -48475,7 +49846,7 @@ } }, { - "id": 2886, + "id": 2908, "name": "filter", "variant": "param", "kind": 32768, @@ -48483,14 +49854,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2887, + "id": 2909, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2888, + "id": 2910, "name": "event", "variant": "declaration", "kind": 1024, @@ -48498,7 +49869,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 253, + "line": 268, "character": 8 } ], @@ -48511,13 +49882,13 @@ "groups": [ { "title": "Properties", - "children": [2888] + "children": [2910] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 252, + "line": 267, "character": 58 } ] @@ -48525,7 +49896,7 @@ } }, { - "id": 2889, + "id": 2911, "name": "callback", "variant": "param", "kind": 32768, @@ -48533,7 +49904,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2890, + "id": 2912, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48541,13 +49912,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 254, + "line": 269, "character": 17 } ], "signatures": [ { - "id": 2891, + "id": 2913, "name": "__type", "variant": "signature", "kind": 4096, @@ -48555,24 +49926,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 254, + "line": 269, "character": 17 } ], "parameters": [ { - "id": 2892, + "id": 2914, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3350, + "target": 3372, "typeArguments": [ { "type": "reference", - "target": 2881, + "target": 2903, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48595,14 +49966,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2893, + "id": 2915, "name": "on", "variant": "signature", "kind": 4096, @@ -48618,13 +49989,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 255, + "line": 270, "character": 4 } ], "typeParameters": [ { - "id": 2894, + "id": 2916, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48632,7 +50003,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2895, + "id": 2917, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48640,13 +50011,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 255, + "line": 270, "character": 17 } ], "indexSignatures": [ { - "id": 2896, + "id": 2918, "name": "__index", "variant": "signature", "kind": 8192, @@ -48654,13 +50025,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 256, + "line": 271, "character": 8 } ], "parameters": [ { - "id": 2897, + "id": 2919, "name": "key", "variant": "param", "kind": 32768, @@ -48683,7 +50054,7 @@ ], "parameters": [ { - "id": 2898, + "id": 2920, "name": "type", "variant": "param", "kind": 32768, @@ -48694,7 +50065,7 @@ } }, { - "id": 2899, + "id": 2921, "name": "filter", "variant": "param", "kind": 32768, @@ -48702,14 +50073,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2900, + "id": 2922, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2901, + "id": 2923, "name": "event", "variant": "declaration", "kind": 1024, @@ -48717,7 +50088,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 258, + "line": 273, "character": 8 } ], @@ -48730,13 +50101,13 @@ "groups": [ { "title": "Properties", - "children": [2901] + "children": [2923] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 257, + "line": 272, "character": 58 } ] @@ -48744,7 +50115,7 @@ } }, { - "id": 2902, + "id": 2924, "name": "callback", "variant": "param", "kind": 32768, @@ -48752,7 +50123,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2903, + "id": 2925, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48760,13 +50131,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 259, + "line": 274, "character": 17 } ], "signatures": [ { - "id": 2904, + "id": 2926, "name": "__type", "variant": "signature", "kind": 4096, @@ -48774,13 +50145,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 259, + "line": 274, "character": 17 } ], "parameters": [ { - "id": 2905, + "id": 2927, "name": "payload", "variant": "param", "kind": 32768, @@ -48792,11 +50163,11 @@ "types": [ { "type": "reference", - "target": 3340, + "target": 3362, "typeArguments": [ { "type": "reference", - "target": 2894, + "target": 2916, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48807,11 +50178,11 @@ }, { "type": "reference", - "target": 3350, + "target": 3372, "typeArguments": [ { "type": "reference", - "target": 2894, + "target": 2916, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -48836,14 +50207,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2906, + "id": 2928, "name": "on", "variant": "signature", "kind": 4096, @@ -48859,13 +50230,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 260, + "line": 275, "character": 4 } ], "typeParameters": [ { - "id": 2907, + "id": 2929, "name": "T", "variant": "typeParam", "kind": 131072, @@ -48873,7 +50244,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2908, + "id": 2930, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48881,13 +50252,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 260, + "line": 275, "character": 17 } ], "indexSignatures": [ { - "id": 2909, + "id": 2931, "name": "__index", "variant": "signature", "kind": 8192, @@ -48895,13 +50266,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 261, + "line": 276, "character": 8 } ], "parameters": [ { - "id": 2910, + "id": 2932, "name": "key", "variant": "param", "kind": 32768, @@ -48924,7 +50295,7 @@ ], "parameters": [ { - "id": 2911, + "id": 2933, "name": "type", "variant": "param", "kind": 32768, @@ -48935,14 +50306,14 @@ } }, { - "id": 2912, + "id": 2934, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -48954,7 +50325,7 @@ } }, { - "id": 2913, + "id": 2935, "name": "callback", "variant": "param", "kind": 32768, @@ -48962,7 +50333,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2914, + "id": 2936, "name": "__type", "variant": "declaration", "kind": 65536, @@ -48970,13 +50341,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 262, + "line": 277, "character": 156 } ], "signatures": [ { - "id": 2915, + "id": 2937, "name": "__type", "variant": "signature", "kind": 4096, @@ -48984,24 +50355,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 262, + "line": 277, "character": 156 } ], "parameters": [ { - "id": 2916, + "id": 2938, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3306, + "target": 3328, "typeArguments": [ { "type": "reference", - "target": 2907, + "target": 2929, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49024,14 +50395,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2917, + "id": 2939, "name": "on", "variant": "signature", "kind": 4096, @@ -49047,13 +50418,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 263, + "line": 278, "character": 4 } ], "typeParameters": [ { - "id": 2918, + "id": 2940, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49061,7 +50432,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2919, + "id": 2941, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49069,13 +50440,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 263, + "line": 278, "character": 17 } ], "indexSignatures": [ { - "id": 2920, + "id": 2942, "name": "__index", "variant": "signature", "kind": 8192, @@ -49083,13 +50454,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 264, + "line": 279, "character": 8 } ], "parameters": [ { - "id": 2921, + "id": 2943, "name": "key", "variant": "param", "kind": 32768, @@ -49112,7 +50483,7 @@ ], "parameters": [ { - "id": 2922, + "id": 2944, "name": "type", "variant": "param", "kind": 32768, @@ -49123,14 +50494,14 @@ } }, { - "id": 2923, + "id": 2945, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -49142,7 +50513,7 @@ } }, { - "id": 2924, + "id": 2946, "name": "callback", "variant": "param", "kind": 32768, @@ -49150,7 +50521,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2925, + "id": 2947, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49158,13 +50529,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 265, + "line": 280, "character": 159 } ], "signatures": [ { - "id": 2926, + "id": 2948, "name": "__type", "variant": "signature", "kind": 4096, @@ -49172,24 +50543,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 265, + "line": 280, "character": 159 } ], "parameters": [ { - "id": 2927, + "id": 2949, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3311, + "target": 3333, "typeArguments": [ { "type": "reference", - "target": 2918, + "target": 2940, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49212,14 +50583,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2928, + "id": 2950, "name": "on", "variant": "signature", "kind": 4096, @@ -49235,13 +50606,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 266, + "line": 281, "character": 4 } ], "typeParameters": [ { - "id": 2929, + "id": 2951, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49249,7 +50620,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2930, + "id": 2952, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49257,13 +50628,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 266, + "line": 281, "character": 17 } ], "indexSignatures": [ { - "id": 2931, + "id": 2953, "name": "__index", "variant": "signature", "kind": 8192, @@ -49271,13 +50642,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 267, + "line": 282, "character": 8 } ], "parameters": [ { - "id": 2932, + "id": 2954, "name": "key", "variant": "param", "kind": 32768, @@ -49300,7 +50671,7 @@ ], "parameters": [ { - "id": 2933, + "id": 2955, "name": "type", "variant": "param", "kind": 32768, @@ -49311,14 +50682,14 @@ } }, { - "id": 2934, + "id": 2956, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -49330,7 +50701,7 @@ } }, { - "id": 2935, + "id": 2957, "name": "callback", "variant": "param", "kind": 32768, @@ -49338,7 +50709,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2936, + "id": 2958, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49346,13 +50717,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 268, + "line": 283, "character": 159 } ], "signatures": [ { - "id": 2937, + "id": 2959, "name": "__type", "variant": "signature", "kind": 4096, @@ -49360,24 +50731,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 268, + "line": 283, "character": 159 } ], "parameters": [ { - "id": 2938, + "id": 2960, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3321, + "target": 3343, "typeArguments": [ { "type": "reference", - "target": 2929, + "target": 2951, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49400,14 +50771,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2939, + "id": 2961, "name": "on", "variant": "signature", "kind": 4096, @@ -49423,13 +50794,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 269, + "line": 284, "character": 4 } ], "typeParameters": [ { - "id": 2940, + "id": 2962, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49437,7 +50808,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2941, + "id": 2963, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49445,13 +50816,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 269, + "line": 284, "character": 17 } ], "indexSignatures": [ { - "id": 2942, + "id": 2964, "name": "__index", "variant": "signature", "kind": 8192, @@ -49459,13 +50830,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 270, + "line": 285, "character": 8 } ], "parameters": [ { - "id": 2943, + "id": 2965, "name": "key", "variant": "param", "kind": 32768, @@ -49488,7 +50859,7 @@ ], "parameters": [ { - "id": 2944, + "id": 2966, "name": "type", "variant": "param", "kind": 32768, @@ -49499,14 +50870,14 @@ } }, { - "id": 2945, + "id": 2967, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "literal", @@ -49518,7 +50889,7 @@ } }, { - "id": 2946, + "id": 2968, "name": "callback", "variant": "param", "kind": 32768, @@ -49526,7 +50897,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2947, + "id": 2969, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49534,13 +50905,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 271, + "line": 286, "character": 159 } ], "signatures": [ { - "id": 2948, + "id": 2970, "name": "__type", "variant": "signature", "kind": 4096, @@ -49548,24 +50919,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 271, + "line": 286, "character": 159 } ], "parameters": [ { - "id": 2949, + "id": 2971, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3330, + "target": 3352, "typeArguments": [ { "type": "reference", - "target": 2940, + "target": 2962, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49588,14 +50959,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2950, + "id": 2972, "name": "on", "variant": "signature", "kind": 4096, @@ -49611,13 +50982,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 272, + "line": 287, "character": 4 } ], "typeParameters": [ { - "id": 2951, + "id": 2973, "name": "T", "variant": "typeParam", "kind": 131072, @@ -49625,7 +50996,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2952, + "id": 2974, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49633,13 +51004,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 272, + "line": 287, "character": 17 } ], "indexSignatures": [ { - "id": 2953, + "id": 2975, "name": "__index", "variant": "signature", "kind": 8192, @@ -49647,13 +51018,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 273, + "line": 288, "character": 8 } ], "parameters": [ { - "id": 2954, + "id": 2976, "name": "key", "variant": "param", "kind": 32768, @@ -49676,7 +51047,7 @@ ], "parameters": [ { - "id": 2955, + "id": 2977, "name": "type", "variant": "param", "kind": 32768, @@ -49687,14 +51058,14 @@ } }, { - "id": 2956, + "id": 2978, "name": "filter", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3299, + "target": 3321, "typeArguments": [ { "type": "union", @@ -49723,7 +51094,7 @@ } }, { - "id": 2957, + "id": 2979, "name": "callback", "variant": "param", "kind": 32768, @@ -49731,7 +51102,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2958, + "id": 2980, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49739,13 +51110,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 274, + "line": 289, "character": 152 } ], "signatures": [ { - "id": 2959, + "id": 2981, "name": "__type", "variant": "signature", "kind": 4096, @@ -49753,24 +51124,24 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 274, + "line": 289, "character": 152 } ], "parameters": [ { - "id": 2960, + "id": 2982, "name": "payload", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3306, + "target": 3328, "typeArguments": [ { "type": "reference", - "target": 2951, + "target": 2973, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -49793,14 +51164,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2961, + "id": 2983, "name": "on", "variant": "signature", "kind": 4096, @@ -49816,13 +51187,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 281, + "line": 296, "character": 4 } ], "parameters": [ { - "id": 2962, + "id": 2984, "name": "type", "variant": "param", "kind": 32768, @@ -49841,7 +51212,7 @@ } }, { - "id": 2963, + "id": 2985, "name": "filter", "variant": "param", "kind": 32768, @@ -49857,14 +51228,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2964, + "id": 2986, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2965, + "id": 2987, "name": "event", "variant": "declaration", "kind": 1024, @@ -49872,7 +51243,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 282, + "line": 297, "character": 8 } ], @@ -49885,13 +51256,13 @@ "groups": [ { "title": "Properties", - "children": [2965] + "children": [2987] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 281, + "line": 296, "character": 59 } ] @@ -49899,7 +51270,7 @@ } }, { - "id": 2966, + "id": 2988, "name": "callback", "variant": "param", "kind": 32768, @@ -49915,7 +51286,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2967, + "id": 2989, "name": "__type", "variant": "declaration", "kind": 65536, @@ -49923,13 +51294,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 283, + "line": 298, "character": 17 } ], "signatures": [ { - "id": 2968, + "id": 2990, "name": "__type", "variant": "signature", "kind": 4096, @@ -49937,13 +51308,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 283, + "line": 298, "character": 17 } ], "parameters": [ { - "id": 2969, + "id": 2991, "name": "payload", "variant": "param", "kind": 32768, @@ -49951,14 +51322,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2970, + "id": 2992, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2972, + "id": 2994, "name": "event", "variant": "declaration", "kind": 1024, @@ -49966,7 +51337,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 285, + "line": 300, "character": 8 } ], @@ -49976,7 +51347,7 @@ } }, { - "id": 2973, + "id": 2995, "name": "meta", "variant": "declaration", "kind": 1024, @@ -49986,21 +51357,21 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 286, + "line": 301, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2974, + "id": 2996, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2976, + "id": 2998, "name": "id", "variant": "declaration", "kind": 1024, @@ -50008,7 +51379,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 288, + "line": 303, "character": 12 } ], @@ -50018,7 +51389,7 @@ } }, { - "id": 2975, + "id": 2997, "name": "replayed", "variant": "declaration", "kind": 1024, @@ -50028,7 +51399,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 287, + "line": 302, "character": 12 } ], @@ -50041,13 +51412,13 @@ "groups": [ { "title": "Properties", - "children": [2976, 2975] + "children": [2998, 2997] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 286, + "line": 301, "character": 15 } ] @@ -50055,7 +51426,7 @@ } }, { - "id": 2971, + "id": 2993, "name": "type", "variant": "declaration", "kind": 1024, @@ -50063,7 +51434,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 284, + "line": 299, "character": 8 } ], @@ -50076,19 +51447,19 @@ "groups": [ { "title": "Properties", - "children": [2972, 2973, 2971] + "children": [2994, 2995, 2993] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 283, + "line": 298, "character": 27 } ], "indexSignatures": [ { - "id": 2977, + "id": 2999, "name": "__index", "variant": "signature", "kind": 8192, @@ -50096,13 +51467,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 290, + "line": 305, "character": 8 } ], "parameters": [ { - "id": 2978, + "id": 3000, "name": "key", "variant": "param", "kind": 32768, @@ -50135,14 +51506,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2979, + "id": 3001, "name": "on", "variant": "signature", "kind": 4096, @@ -50158,13 +51529,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 292, + "line": 307, "character": 4 } ], "typeParameters": [ { - "id": 2980, + "id": 3002, "name": "T", "variant": "typeParam", "kind": 131072, @@ -50172,7 +51543,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2981, + "id": 3003, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50180,13 +51551,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 292, + "line": 307, "character": 17 } ], "indexSignatures": [ { - "id": 2982, + "id": 3004, "name": "__index", "variant": "signature", "kind": 8192, @@ -50194,13 +51565,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 293, + "line": 308, "character": 8 } ], "parameters": [ { - "id": 2983, + "id": 3005, "name": "key", "variant": "param", "kind": 32768, @@ -50223,7 +51594,7 @@ ], "parameters": [ { - "id": 2984, + "id": 3006, "name": "type", "variant": "param", "kind": 32768, @@ -50234,7 +51605,7 @@ } }, { - "id": 2985, + "id": 3007, "name": "filter", "variant": "param", "kind": 32768, @@ -50242,14 +51613,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2986, + "id": 3008, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2987, + "id": 3009, "name": "event", "variant": "declaration", "kind": 1024, @@ -50257,7 +51628,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 295, + "line": 310, "character": 8 } ], @@ -50270,13 +51641,13 @@ "groups": [ { "title": "Properties", - "children": [2987] + "children": [3009] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 294, + "line": 309, "character": 59 } ] @@ -50284,7 +51655,7 @@ } }, { - "id": 2988, + "id": 3010, "name": "callback", "variant": "param", "kind": 32768, @@ -50292,7 +51663,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2989, + "id": 3011, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50300,13 +51671,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 296, + "line": 311, "character": 17 } ], "signatures": [ { - "id": 2990, + "id": 3012, "name": "__type", "variant": "signature", "kind": 4096, @@ -50314,13 +51685,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 296, + "line": 311, "character": 17 } ], "parameters": [ { - "id": 2991, + "id": 3013, "name": "payload", "variant": "param", "kind": 32768, @@ -50328,14 +51699,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2992, + "id": 3014, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2994, + "id": 3016, "name": "event", "variant": "declaration", "kind": 1024, @@ -50343,7 +51714,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 298, + "line": 313, "character": 8 } ], @@ -50353,7 +51724,7 @@ } }, { - "id": 2995, + "id": 3017, "name": "meta", "variant": "declaration", "kind": 1024, @@ -50363,21 +51734,21 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 299, + "line": 314, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2996, + "id": 3018, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2998, + "id": 3020, "name": "id", "variant": "declaration", "kind": 1024, @@ -50385,7 +51756,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 301, + "line": 316, "character": 12 } ], @@ -50395,7 +51766,7 @@ } }, { - "id": 2997, + "id": 3019, "name": "replayed", "variant": "declaration", "kind": 1024, @@ -50405,7 +51776,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 300, + "line": 315, "character": 12 } ], @@ -50418,13 +51789,13 @@ "groups": [ { "title": "Properties", - "children": [2998, 2997] + "children": [3020, 3019] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 299, + "line": 314, "character": 15 } ] @@ -50432,7 +51803,7 @@ } }, { - "id": 2999, + "id": 3021, "name": "payload", "variant": "declaration", "kind": 1024, @@ -50440,20 +51811,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 303, + "line": 318, "character": 8 } ], "type": { "type": "reference", - "target": 2980, + "target": 3002, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 2993, + "id": 3015, "name": "type", "variant": "declaration", "kind": 1024, @@ -50461,7 +51832,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 297, + "line": 312, "character": 8 } ], @@ -50474,13 +51845,13 @@ "groups": [ { "title": "Properties", - "children": [2994, 2995, 2999, 2993] + "children": [3016, 3017, 3021, 3015] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 296, + "line": 311, "character": 27 } ] @@ -50500,14 +51871,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3000, + "id": 3022, "name": "on", "variant": "signature", "kind": 4096, @@ -50523,13 +51894,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 305, + "line": 320, "character": 4 } ], "typeParameters": [ { - "id": 3001, + "id": 3023, "name": "T", "variant": "typeParam", "kind": 131072, @@ -50557,7 +51928,7 @@ ], "parameters": [ { - "id": 3002, + "id": 3024, "name": "type", "variant": "param", "kind": 32768, @@ -50568,7 +51939,7 @@ } }, { - "id": 3003, + "id": 3025, "name": "filter", "variant": "param", "kind": 32768, @@ -50576,14 +51947,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3004, + "id": 3026, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3005, + "id": 3027, "name": "event", "variant": "declaration", "kind": 1024, @@ -50591,13 +51962,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 306, + "line": 321, "character": 8 } ], "type": { "type": "reference", - "target": 3377, + "target": 3399, "name": "ALL", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL" @@ -50607,13 +51978,13 @@ "groups": [ { "title": "Properties", - "children": [3005] + "children": [3027] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 305, + "line": 320, "character": 94 } ] @@ -50621,7 +51992,7 @@ } }, { - "id": 3006, + "id": 3028, "name": "callback", "variant": "param", "kind": 32768, @@ -50629,7 +52000,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3007, + "id": 3029, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50637,13 +52008,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 307, + "line": 322, "character": 17 } ], "signatures": [ { - "id": 3008, + "id": 3030, "name": "__type", "variant": "signature", "kind": 4096, @@ -50651,13 +52022,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 307, + "line": 322, "character": 17 } ], "parameters": [ { - "id": 3009, + "id": 3031, "name": "payload", "variant": "param", "kind": 32768, @@ -50665,14 +52036,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3010, + "id": 3032, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3012, + "id": 3034, "name": "event", "variant": "declaration", "kind": 1024, @@ -50680,20 +52051,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 309, + "line": 324, "character": 8 } ], "type": { "type": "reference", - "target": 3377, + "target": 3399, "name": "ALL", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL" } }, { - "id": 3013, + "id": 3035, "name": "payload", "variant": "declaration", "kind": 1024, @@ -50701,7 +52072,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 310, + "line": 325, "character": 8 } ], @@ -50714,7 +52085,7 @@ "typeArguments": [ { "type": "reference", - "target": 3001, + "target": 3023, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -50725,7 +52096,7 @@ } }, { - "id": 3011, + "id": 3033, "name": "type", "variant": "declaration", "kind": 1024, @@ -50733,7 +52104,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 308, + "line": 323, "character": 8 } ], @@ -50746,13 +52117,13 @@ "groups": [ { "title": "Properties", - "children": [3012, 3013, 3011] + "children": [3034, 3035, 3033] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 307, + "line": 322, "character": 27 } ] @@ -50772,14 +52143,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3014, + "id": 3036, "name": "on", "variant": "signature", "kind": 4096, @@ -50795,13 +52166,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 312, + "line": 327, "character": 4 } ], "typeParameters": [ { - "id": 3015, + "id": 3037, "name": "T", "variant": "typeParam", "kind": 131072, @@ -50809,7 +52180,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3016, + "id": 3038, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50817,13 +52188,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 312, + "line": 327, "character": 17 } ], "indexSignatures": [ { - "id": 3017, + "id": 3039, "name": "__index", "variant": "signature", "kind": 8192, @@ -50831,13 +52202,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 313, + "line": 328, "character": 8 } ], "parameters": [ { - "id": 3018, + "id": 3040, "name": "key", "variant": "param", "kind": 32768, @@ -50860,7 +52231,7 @@ ], "parameters": [ { - "id": 3019, + "id": 3041, "name": "type", "variant": "param", "kind": 32768, @@ -50871,7 +52242,7 @@ } }, { - "id": 3020, + "id": 3042, "name": "filter", "variant": "param", "kind": 32768, @@ -50879,14 +52250,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3021, + "id": 3043, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3022, + "id": 3044, "name": "event", "variant": "declaration", "kind": 1024, @@ -50894,13 +52265,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 315, + "line": 330, "character": 8 } ], "type": { "type": "reference", - "target": 3378, + "target": 3400, "name": "INSERT", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT" @@ -50910,13 +52281,13 @@ "groups": [ { "title": "Properties", - "children": [3022] + "children": [3044] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 314, + "line": 329, "character": 59 } ] @@ -50924,7 +52295,7 @@ } }, { - "id": 3023, + "id": 3045, "name": "callback", "variant": "param", "kind": 32768, @@ -50932,7 +52303,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3024, + "id": 3046, "name": "__type", "variant": "declaration", "kind": 65536, @@ -50940,13 +52311,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 316, + "line": 331, "character": 17 } ], "signatures": [ { - "id": 3025, + "id": 3047, "name": "__type", "variant": "signature", "kind": 4096, @@ -50954,13 +52325,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 316, + "line": 331, "character": 17 } ], "parameters": [ { - "id": 3026, + "id": 3048, "name": "payload", "variant": "param", "kind": 32768, @@ -50968,14 +52339,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3027, + "id": 3049, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3029, + "id": 3051, "name": "event", "variant": "declaration", "kind": 1024, @@ -50983,20 +52354,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 318, + "line": 333, "character": 8 } ], "type": { "type": "reference", - "target": 3378, + "target": 3400, "name": "INSERT", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT" } }, { - "id": 3030, + "id": 3052, "name": "payload", "variant": "declaration", "kind": 1024, @@ -51004,7 +52375,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 319, + "line": 334, "character": 8 } ], @@ -51017,7 +52388,7 @@ "typeArguments": [ { "type": "reference", - "target": 3015, + "target": 3037, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51028,7 +52399,7 @@ } }, { - "id": 3028, + "id": 3050, "name": "type", "variant": "declaration", "kind": 1024, @@ -51036,7 +52407,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 317, + "line": 332, "character": 8 } ], @@ -51049,13 +52420,13 @@ "groups": [ { "title": "Properties", - "children": [3029, 3030, 3028] + "children": [3051, 3052, 3050] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 316, + "line": 331, "character": 27 } ] @@ -51075,14 +52446,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3031, + "id": 3053, "name": "on", "variant": "signature", "kind": 4096, @@ -51098,13 +52469,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 321, + "line": 336, "character": 4 } ], "typeParameters": [ { - "id": 3032, + "id": 3054, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51112,7 +52483,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3033, + "id": 3055, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51120,13 +52491,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 321, + "line": 336, "character": 17 } ], "indexSignatures": [ { - "id": 3034, + "id": 3056, "name": "__index", "variant": "signature", "kind": 8192, @@ -51134,13 +52505,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 322, + "line": 337, "character": 8 } ], "parameters": [ { - "id": 3035, + "id": 3057, "name": "key", "variant": "param", "kind": 32768, @@ -51163,7 +52534,7 @@ ], "parameters": [ { - "id": 3036, + "id": 3058, "name": "type", "variant": "param", "kind": 32768, @@ -51174,7 +52545,7 @@ } }, { - "id": 3037, + "id": 3059, "name": "filter", "variant": "param", "kind": 32768, @@ -51182,14 +52553,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3038, + "id": 3060, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3039, + "id": 3061, "name": "event", "variant": "declaration", "kind": 1024, @@ -51197,13 +52568,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 324, + "line": 339, "character": 8 } ], "type": { "type": "reference", - "target": 3379, + "target": 3401, "name": "UPDATE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE" @@ -51213,13 +52584,13 @@ "groups": [ { "title": "Properties", - "children": [3039] + "children": [3061] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 323, + "line": 338, "character": 59 } ] @@ -51227,7 +52598,7 @@ } }, { - "id": 3040, + "id": 3062, "name": "callback", "variant": "param", "kind": 32768, @@ -51235,7 +52606,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3041, + "id": 3063, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51243,13 +52614,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 325, + "line": 340, "character": 17 } ], "signatures": [ { - "id": 3042, + "id": 3064, "name": "__type", "variant": "signature", "kind": 4096, @@ -51257,13 +52628,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 325, + "line": 340, "character": 17 } ], "parameters": [ { - "id": 3043, + "id": 3065, "name": "payload", "variant": "param", "kind": 32768, @@ -51271,14 +52642,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3044, + "id": 3066, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3046, + "id": 3068, "name": "event", "variant": "declaration", "kind": 1024, @@ -51286,20 +52657,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 327, + "line": 342, "character": 8 } ], "type": { "type": "reference", - "target": 3379, + "target": 3401, "name": "UPDATE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE" } }, { - "id": 3047, + "id": 3069, "name": "payload", "variant": "declaration", "kind": 1024, @@ -51307,7 +52678,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 328, + "line": 343, "character": 8 } ], @@ -51320,7 +52691,7 @@ "typeArguments": [ { "type": "reference", - "target": 3032, + "target": 3054, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51331,7 +52702,7 @@ } }, { - "id": 3045, + "id": 3067, "name": "type", "variant": "declaration", "kind": 1024, @@ -51339,7 +52710,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 326, + "line": 341, "character": 8 } ], @@ -51352,13 +52723,13 @@ "groups": [ { "title": "Properties", - "children": [3046, 3047, 3045] + "children": [3068, 3069, 3067] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 325, + "line": 340, "character": 27 } ] @@ -51378,14 +52749,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3048, + "id": 3070, "name": "on", "variant": "signature", "kind": 4096, @@ -51401,13 +52772,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 330, + "line": 345, "character": 4 } ], "typeParameters": [ { - "id": 3049, + "id": 3071, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51415,7 +52786,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3050, + "id": 3072, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51423,13 +52794,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 330, + "line": 345, "character": 17 } ], "indexSignatures": [ { - "id": 3051, + "id": 3073, "name": "__index", "variant": "signature", "kind": 8192, @@ -51437,13 +52808,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 331, + "line": 346, "character": 8 } ], "parameters": [ { - "id": 3052, + "id": 3074, "name": "key", "variant": "param", "kind": 32768, @@ -51466,7 +52837,7 @@ ], "parameters": [ { - "id": 3053, + "id": 3075, "name": "type", "variant": "param", "kind": 32768, @@ -51477,7 +52848,7 @@ } }, { - "id": 3054, + "id": 3076, "name": "filter", "variant": "param", "kind": 32768, @@ -51485,14 +52856,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3055, + "id": 3077, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3056, + "id": 3078, "name": "event", "variant": "declaration", "kind": 1024, @@ -51500,13 +52871,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 333, + "line": 348, "character": 8 } ], "type": { "type": "reference", - "target": 3380, + "target": 3402, "name": "DELETE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE" @@ -51516,13 +52887,13 @@ "groups": [ { "title": "Properties", - "children": [3056] + "children": [3078] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 332, + "line": 347, "character": 59 } ] @@ -51530,7 +52901,7 @@ } }, { - "id": 3057, + "id": 3079, "name": "callback", "variant": "param", "kind": 32768, @@ -51538,7 +52909,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3058, + "id": 3080, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51546,13 +52917,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 334, + "line": 349, "character": 17 } ], "signatures": [ { - "id": 3059, + "id": 3081, "name": "__type", "variant": "signature", "kind": 4096, @@ -51560,13 +52931,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 334, + "line": 349, "character": 17 } ], "parameters": [ { - "id": 3060, + "id": 3082, "name": "payload", "variant": "param", "kind": 32768, @@ -51574,14 +52945,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3061, + "id": 3083, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3063, + "id": 3085, "name": "event", "variant": "declaration", "kind": 1024, @@ -51589,20 +52960,20 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 336, + "line": 351, "character": 8 } ], "type": { "type": "reference", - "target": 3380, + "target": 3402, "name": "DELETE", "package": "@supabase/realtime-js", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE" } }, { - "id": 3064, + "id": 3086, "name": "payload", "variant": "declaration", "kind": 1024, @@ -51610,7 +52981,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 337, + "line": 352, "character": 8 } ], @@ -51623,7 +52994,7 @@ "typeArguments": [ { "type": "reference", - "target": 3049, + "target": 3071, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51634,7 +53005,7 @@ } }, { - "id": 3062, + "id": 3084, "name": "type", "variant": "declaration", "kind": 1024, @@ -51642,7 +53013,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 335, + "line": 350, "character": 8 } ], @@ -51655,13 +53026,13 @@ "groups": [ { "title": "Properties", - "children": [3063, 3064, 3062] + "children": [3085, 3086, 3084] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 334, + "line": 349, "character": 27 } ] @@ -51681,14 +53052,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 3065, + "id": 3087, "name": "on", "variant": "signature", "kind": 4096, @@ -51704,13 +53075,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 339, + "line": 354, "character": 4 } ], "typeParameters": [ { - "id": 3066, + "id": 3088, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51718,7 +53089,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3067, + "id": 3089, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51726,13 +53097,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 339, + "line": 354, "character": 17 } ], "indexSignatures": [ { - "id": 3068, + "id": 3090, "name": "__index", "variant": "signature", "kind": 8192, @@ -51740,13 +53111,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 340, + "line": 355, "character": 8 } ], "parameters": [ { - "id": 3069, + "id": 3091, "name": "key", "variant": "param", "kind": 32768, @@ -51769,7 +53140,7 @@ ], "parameters": [ { - "id": 3070, + "id": 3092, "name": "type", "variant": "param", "kind": 32768, @@ -51780,7 +53151,7 @@ } }, { - "id": 3071, + "id": 3093, "name": "filter", "variant": "param", "kind": 32768, @@ -51788,7 +53159,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3072, + "id": 3094, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51797,7 +53168,7 @@ } }, { - "id": 3073, + "id": 3095, "name": "callback", "variant": "param", "kind": 32768, @@ -51805,7 +53176,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3074, + "id": 3096, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51813,13 +53184,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 341, + "line": 356, "character": 70 } ], "signatures": [ { - "id": 3075, + "id": 3097, "name": "__type", "variant": "signature", "kind": 4096, @@ -51827,13 +53198,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 341, + "line": 356, "character": 70 } ], "parameters": [ { - "id": 3076, + "id": 3098, "name": "payload", "variant": "param", "kind": 32768, @@ -51856,7 +53227,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -51865,7 +53236,7 @@ ] }, { - "id": 2835, + "id": 2857, "name": "presenceState", "variant": "declaration", "kind": 2048, @@ -51873,13 +53244,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 217, + "line": 232, "character": 4 } ], "signatures": [ { - "id": 2836, + "id": 2858, "name": "presenceState", "variant": "signature", "kind": 4096, @@ -51906,13 +53277,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 217, + "line": 232, "character": 4 } ], "typeParameters": [ { - "id": 2837, + "id": 2859, "name": "T", "variant": "typeParam", "kind": 131072, @@ -51920,7 +53291,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2838, + "id": 2860, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51928,13 +53299,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 217, + "line": 232, "character": 28 } ], "indexSignatures": [ { - "id": 2839, + "id": 2861, "name": "__index", "variant": "signature", "kind": 8192, @@ -51942,13 +53313,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 218, + "line": 233, "character": 8 } ], "parameters": [ { - "id": 2840, + "id": 2862, "name": "key", "variant": "param", "kind": 32768, @@ -51970,7 +53341,7 @@ "default": { "type": "reflection", "declaration": { - "id": 2841, + "id": 2863, "name": "__type", "variant": "declaration", "kind": 65536, @@ -51981,11 +53352,11 @@ ], "type": { "type": "reference", - "target": 3360, + "target": 3382, "typeArguments": [ { "type": "reference", - "target": 2837, + "target": 2859, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -51998,7 +53369,7 @@ ] }, { - "id": 3090, + "id": 3112, "name": "send", "variant": "declaration", "kind": 2048, @@ -52006,13 +53377,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 412, + "line": 430, "character": 4 } ], "signatures": [ { - "id": 3091, + "id": 3113, "name": "send", "variant": "signature", "kind": 4096, @@ -52081,13 +53452,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 412, + "line": 430, "character": 4 } ], "parameters": [ { - "id": 3092, + "id": 3114, "name": "args", "variant": "param", "kind": 32768, @@ -52103,14 +53474,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3093, + "id": 3115, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3095, + "id": 3117, "name": "event", "variant": "declaration", "kind": 1024, @@ -52126,7 +53497,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 414, + "line": 432, "character": 8 } ], @@ -52136,7 +53507,7 @@ } }, { - "id": 3096, + "id": 3118, "name": "payload", "variant": "declaration", "kind": 1024, @@ -52154,7 +53525,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 415, + "line": 433, "character": 8 } ], @@ -52164,7 +53535,7 @@ } }, { - "id": 3094, + "id": 3116, "name": "type", "variant": "declaration", "kind": 1024, @@ -52180,7 +53551,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 413, + "line": 431, "character": 8 } ], @@ -52206,19 +53577,19 @@ "groups": [ { "title": "Properties", - "children": [3095, 3096, 3094] + "children": [3117, 3118, 3116] } ], "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 412, + "line": 430, "character": 15 } ], "indexSignatures": [ { - "id": 3097, + "id": 3119, "name": "__index", "variant": "signature", "kind": 8192, @@ -52226,13 +53597,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 416, + "line": 434, "character": 8 } ], "parameters": [ { - "id": 3098, + "id": 3120, "name": "key", "variant": "param", "kind": 32768, @@ -52253,7 +53624,7 @@ } }, { - "id": 3099, + "id": 3121, "name": "opts", "variant": "param", "kind": 32768, @@ -52271,7 +53642,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3100, + "id": 3122, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52279,13 +53650,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 417, + "line": 435, "character": 14 } ], "indexSignatures": [ { - "id": 3101, + "id": 3123, "name": "__index", "variant": "signature", "kind": 8192, @@ -52293,13 +53664,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 418, + "line": 436, "character": 8 } ], "parameters": [ { - "id": 3102, + "id": 3124, "name": "key", "variant": "param", "kind": 32768, @@ -52329,7 +53700,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52341,7 +53712,7 @@ ] }, { - "id": 2826, + "id": 2848, "name": "subscribe", "variant": "declaration", "kind": 2048, @@ -52349,13 +53720,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 4 } ], "signatures": [ { - "id": 2827, + "id": 2849, "name": "subscribe", "variant": "signature", "kind": 4096, @@ -52364,7 +53735,63 @@ "summary": [ { "kind": "text", - "text": "Subscribe registers your client with the server" + "text": "Subscribe registers your client with the server.\n\nThe optional " + }, + { + "kind": "code", + "text": "`callback`" + }, + { + "kind": "text", + "text": " receives a " + }, + { + "kind": "code", + "text": "`status`" + }, + { + "kind": "text", + "text": " and, on failure, an " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " argument.\nLog the full " + }, + { + "kind": "code", + "text": "`err`" + }, + { + "kind": "text", + "text": " so its " + }, + { + "kind": "code", + "text": "`cause`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`name`" + }, + { + "kind": "text", + "text": ", and any structured fields aren't hidden\nbehind " + }, + { + "kind": "code", + "text": "`err.message`" + }, + { + "kind": "text", + "text": "." } ], "blockTags": [ @@ -52376,19 +53803,29 @@ "text": "Realtime" } ] + }, + { + "tag": "@example", + "name": "Handling errors", + "content": [ + { + "kind": "code", + "text": "```js\nsupabase.channel('room1').subscribe((status, err) => {\n if (status === 'CHANNEL_ERROR' || status === 'TIMED_OUT') {\n // Log the full error: its `cause` often holds the underlying reason.\n console.error(status, err)\n }\n})\n```" + } + ] } ] }, "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 4 } ], "parameters": [ { - "id": 2828, + "id": 2850, "name": "callback", "variant": "param", "kind": 32768, @@ -52398,7 +53835,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2829, + "id": 2851, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52406,13 +53843,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 25 } ], "signatures": [ { - "id": 2830, + "id": 2852, "name": "__type", "variant": "signature", "kind": 4096, @@ -52420,26 +53857,26 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 207, + "line": 222, "character": 25 } ], "parameters": [ { - "id": 2831, + "id": 2853, "name": "status", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3385, + "target": 3407, "name": "REALTIME_SUBSCRIBE_STATES", "package": "@supabase/realtime-js" } }, { - "id": 2832, + "id": 2854, "name": "err", "variant": "param", "kind": 32768, @@ -52467,7 +53904,7 @@ } }, { - "id": 2833, + "id": 2855, "name": "timeout", "variant": "param", "kind": 32768, @@ -52482,7 +53919,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -52491,7 +53928,7 @@ ] }, { - "id": 3109, + "id": 3131, "name": "teardown", "variant": "declaration", "kind": 2048, @@ -52499,13 +53936,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 444, + "line": 462, "character": 4 } ], "signatures": [ { - "id": 3110, + "id": 3132, "name": "teardown", "variant": "signature", "kind": 4096, @@ -52532,7 +53969,7 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 444, + "line": 462, "character": 4 } ], @@ -52544,7 +53981,7 @@ ] }, { - "id": 2842, + "id": 2864, "name": "track", "variant": "declaration", "kind": 2048, @@ -52552,13 +53989,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 226, + "line": 241, "character": 4 } ], "signatures": [ { - "id": 2843, + "id": 2865, "name": "track", "variant": "signature", "kind": 4096, @@ -52593,13 +54030,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 226, + "line": 241, "character": 4 } ], "parameters": [ { - "id": 2844, + "id": 2866, "name": "payload", "variant": "param", "kind": 32768, @@ -52607,7 +54044,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2845, + "id": 2867, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52615,13 +54052,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 226, + "line": 241, "character": 19 } ], "indexSignatures": [ { - "id": 2846, + "id": 2868, "name": "__index", "variant": "signature", "kind": 8192, @@ -52629,13 +54066,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 227, + "line": 242, "character": 8 } ], "parameters": [ { - "id": 2847, + "id": 2869, "name": "key", "variant": "param", "kind": 32768, @@ -52656,7 +54093,7 @@ } }, { - "id": 2848, + "id": 2870, "name": "opts", "variant": "param", "kind": 32768, @@ -52666,7 +54103,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2849, + "id": 2871, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52674,13 +54111,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 228, + "line": 243, "character": 14 } ], "indexSignatures": [ { - "id": 2850, + "id": 2872, "name": "__index", "variant": "signature", "kind": 8192, @@ -52688,13 +54125,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 229, + "line": 244, "character": 8 } ], "parameters": [ { - "id": 2851, + "id": 2873, "name": "key", "variant": "param", "kind": 32768, @@ -52724,7 +54161,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52736,7 +54173,7 @@ ] }, { - "id": 3106, + "id": 3128, "name": "unsubscribe", "variant": "declaration", "kind": 2048, @@ -52744,13 +54181,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 438, + "line": 456, "character": 4 } ], "signatures": [ { - "id": 3107, + "id": 3129, "name": "unsubscribe", "variant": "signature", "kind": 4096, @@ -52785,13 +54222,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 438, + "line": 456, "character": 4 } ], "parameters": [ { - "id": 3108, + "id": 3130, "name": "timeout", "variant": "param", "kind": 32768, @@ -52813,7 +54250,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52825,7 +54262,7 @@ ] }, { - "id": 2852, + "id": 2874, "name": "untrack", "variant": "declaration", "kind": 2048, @@ -52833,13 +54270,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 236, + "line": 251, "character": 4 } ], "signatures": [ { - "id": 2853, + "id": 2875, "name": "untrack", "variant": "signature", "kind": 4096, @@ -52866,13 +54303,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 236, + "line": 251, "character": 4 } ], "parameters": [ { - "id": 2854, + "id": 2876, "name": "opts", "variant": "param", "kind": 32768, @@ -52882,7 +54319,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2855, + "id": 2877, "name": "__type", "variant": "declaration", "kind": 65536, @@ -52890,13 +54327,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 236, + "line": 251, "character": 19 } ], "indexSignatures": [ { - "id": 2856, + "id": 2878, "name": "__index", "variant": "signature", "kind": 8192, @@ -52904,13 +54341,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 237, + "line": 252, "character": 8 } ], "parameters": [ { - "id": 2857, + "id": 2879, "name": "key", "variant": "param", "kind": 32768, @@ -52940,7 +54377,7 @@ "typeArguments": [ { "type": "reference", - "target": 3128, + "target": 3150, "name": "RealtimeChannelSendResponse", "package": "@supabase/realtime-js" } @@ -52952,7 +54389,7 @@ ] }, { - "id": 3103, + "id": 3125, "name": "updateJoinPayload", "variant": "declaration", "kind": 2048, @@ -52960,13 +54397,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 426, + "line": 444, "character": 4 } ], "signatures": [ { - "id": 3104, + "id": 3126, "name": "updateJoinPayload", "variant": "signature", "kind": 4096, @@ -52993,13 +54430,13 @@ "sources": [ { "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts", - "line": 426, + "line": 444, "character": 4 } ], "parameters": [ { - "id": 3105, + "id": 3127, "name": "payload", "variant": "param", "kind": 32768, @@ -53036,32 +54473,32 @@ "groups": [ { "title": "Constructors", - "children": [2801] + "children": [2823] }, { "title": "Properties", - "children": [2809, 2811, 2807, 2813, 2812, 2808, 2810, 2806] + "children": [2831, 2833, 2829, 2835, 2834, 2830, 2832, 2828] }, { "title": "Accessors", - "children": [2818, 2822, 2824, 2814, 2820] + "children": [2840, 2844, 2846, 2836, 2842] }, { "title": "Methods", - "children": [3111, 3077, 2858, 2835, 3090, 2826, 3109, 2842, 3106, 2852, 3103] + "children": [3133, 3099, 2880, 2857, 3112, 2848, 3131, 2864, 3128, 2874, 3125] } ], "categories": [ { "title": "Other", "children": [ - 2809, 2811, 2807, 2813, 2812, 2808, 2810, 2806, 2818, 2822, 2824, 2814, 2820, 3111, - 2858 + 2831, 2833, 2829, 2835, 2834, 2830, 2832, 2828, 2840, 2844, 2846, 2836, 2842, 3133, + 2880 ] }, { "title": "Realtime", - "children": [2801, 3077, 2835, 3090, 2826, 3109, 2842, 3106, 2852, 3103] + "children": [2823, 3099, 2857, 3112, 2848, 3131, 2864, 3128, 2874, 3125] } ], "sources": [ @@ -53073,14 +54510,14 @@ ] }, { - "id": 3130, + "id": 3152, "name": "RealtimeClient", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 3131, + "id": 3153, "name": "constructor", "variant": "declaration", "kind": 512, @@ -53094,7 +54531,7 @@ ], "signatures": [ { - "id": 3132, + "id": 3154, "name": "RealtimeClient", "variant": "signature", "kind": 16384, @@ -53147,7 +54584,7 @@ ], "parameters": [ { - "id": 3133, + "id": 3155, "name": "endPoint", "variant": "param", "kind": 32768, @@ -53166,7 +54603,7 @@ } }, { - "id": 3134, + "id": 3156, "name": "options", "variant": "param", "kind": 32768, @@ -53175,7 +54612,7 @@ }, "type": { "type": "reference", - "target": 3251, + "target": 3273, "name": "RealtimeClientOptions", "package": "@supabase/realtime-js", "highlightedProperties": { @@ -53277,7 +54714,7 @@ ], "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -53286,7 +54723,7 @@ ] }, { - "id": 3137, + "id": 3159, "name": "accessToken", "variant": "declaration", "kind": 1024, @@ -53308,7 +54745,7 @@ { "type": "reflection", "declaration": { - "id": 3138, + "id": 3160, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53322,7 +54759,7 @@ ], "signatures": [ { - "id": 3139, + "id": 3161, "name": "__type", "variant": "signature", "kind": 4096, @@ -53366,7 +54803,7 @@ } }, { - "id": 3136, + "id": 3158, "name": "accessTokenValue", "variant": "declaration", "kind": 1024, @@ -53393,7 +54830,7 @@ } }, { - "id": 3140, + "id": 3162, "name": "apiKey", "variant": "declaration", "kind": 1024, @@ -53420,7 +54857,7 @@ } }, { - "id": 3135, + "id": 3157, "name": "channels", "variant": "declaration", "kind": 1024, @@ -53436,7 +54873,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -53444,7 +54881,7 @@ } }, { - "id": 3152, + "id": 3174, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -53459,7 +54896,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3153, + "id": 3175, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53478,7 +54915,7 @@ ], "signatures": [ { - "id": 3154, + "id": 3176, "name": "__type", "variant": "signature", "kind": 4096, @@ -53500,7 +54937,7 @@ ], "parameters": [ { - "id": 3155, + "id": 3177, "name": "input", "variant": "param", "kind": 32768, @@ -53530,7 +54967,7 @@ } }, { - "id": 3156, + "id": 3178, "name": "init", "variant": "param", "kind": 32768, @@ -53570,7 +55007,7 @@ } }, { - "id": 3157, + "id": 3179, "name": "__type", "variant": "signature", "kind": 4096, @@ -53592,7 +55029,7 @@ ], "parameters": [ { - "id": 3158, + "id": 3180, "name": "input", "variant": "param", "kind": 32768, @@ -53626,7 +55063,7 @@ } }, { - "id": 3159, + "id": 3181, "name": "init", "variant": "param", "kind": 32768, @@ -53670,7 +55107,7 @@ } }, { - "id": 3142, + "id": 3164, "name": "headers", "variant": "declaration", "kind": 1024, @@ -53701,7 +55138,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3143, + "id": 3165, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53715,7 +55152,7 @@ ], "indexSignatures": [ { - "id": 3144, + "id": 3166, "name": "__index", "variant": "signature", "kind": 8192, @@ -53729,7 +55166,7 @@ ], "parameters": [ { - "id": 3145, + "id": 3167, "name": "key", "variant": "param", "kind": 32768, @@ -53750,7 +55187,7 @@ } }, { - "id": 3141, + "id": 3163, "name": "httpEndpoint", "variant": "declaration", "kind": 1024, @@ -53768,7 +55205,7 @@ } }, { - "id": 3151, + "id": 3173, "name": "logLevel", "variant": "declaration", "kind": 1024, @@ -53793,7 +55230,7 @@ } }, { - "id": 3146, + "id": 3168, "name": "params", "variant": "declaration", "kind": 1024, @@ -53810,7 +55247,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3147, + "id": 3169, "name": "__type", "variant": "declaration", "kind": 65536, @@ -53824,7 +55261,7 @@ ], "indexSignatures": [ { - "id": 3148, + "id": 3170, "name": "__index", "variant": "signature", "kind": 8192, @@ -53838,7 +55275,7 @@ ], "parameters": [ { - "id": 3149, + "id": 3171, "name": "key", "variant": "param", "kind": 32768, @@ -53859,7 +55296,7 @@ } }, { - "id": 3150, + "id": 3172, "name": "ref", "variant": "declaration", "kind": 1024, @@ -53877,7 +55314,7 @@ } }, { - "id": 3163, + "id": 3185, "name": "serializer", "variant": "declaration", "kind": 1024, @@ -53901,7 +55338,7 @@ } }, { - "id": 3160, + "id": 3182, "name": "worker", "variant": "declaration", "kind": 1024, @@ -53921,7 +55358,7 @@ } }, { - "id": 3162, + "id": 3184, "name": "workerRef", "variant": "declaration", "kind": 1024, @@ -53946,7 +55383,7 @@ } }, { - "id": 3161, + "id": 3183, "name": "workerUrl", "variant": "declaration", "kind": 1024, @@ -53966,7 +55403,7 @@ } }, { - "id": 3184, + "id": 3206, "name": "decode", "variant": "declaration", "kind": 262144, @@ -53979,7 +55416,7 @@ } ], "getSignature": { - "id": 3185, + "id": 3207, "name": "decode", "variant": "signature", "kind": 524288, @@ -54009,7 +55446,7 @@ } }, { - "id": 3182, + "id": 3204, "name": "encode", "variant": "declaration", "kind": 262144, @@ -54022,7 +55459,7 @@ } ], "getSignature": { - "id": 3183, + "id": 3205, "name": "encode", "variant": "signature", "kind": 524288, @@ -54052,7 +55489,7 @@ } }, { - "id": 3164, + "id": 3186, "name": "endPoint", "variant": "declaration", "kind": 262144, @@ -54065,7 +55502,7 @@ } ], "getSignature": { - "id": 3165, + "id": 3187, "name": "endPoint", "variant": "signature", "kind": 524288, @@ -54084,7 +55521,7 @@ } }, { - "id": 3170, + "id": 3192, "name": "heartbeatCallback", "variant": "declaration", "kind": 262144, @@ -54097,7 +55534,7 @@ } ], "getSignature": { - "id": 3171, + "id": 3193, "name": "heartbeatCallback", "variant": "signature", "kind": 524288, @@ -54121,7 +55558,7 @@ } }, { - "id": 3172, + "id": 3194, "name": "heartbeatIntervalMs", "variant": "declaration", "kind": 262144, @@ -54134,7 +55571,7 @@ } ], "getSignature": { - "id": 3173, + "id": 3195, "name": "heartbeatIntervalMs", "variant": "signature", "kind": 524288, @@ -54153,7 +55590,7 @@ } }, { - "id": 3174, + "id": 3196, "name": "heartbeatTimer", "variant": "declaration", "kind": 262144, @@ -54166,7 +55603,7 @@ } ], "getSignature": { - "id": 3175, + "id": 3197, "name": "heartbeatTimer", "variant": "signature", "kind": 524288, @@ -54190,7 +55627,7 @@ } }, { - "id": 3176, + "id": 3198, "name": "pendingHeartbeatRef", "variant": "declaration", "kind": 262144, @@ -54203,7 +55640,7 @@ } ], "getSignature": { - "id": 3177, + "id": 3199, "name": "pendingHeartbeatRef", "variant": "signature", "kind": 524288, @@ -54231,7 +55668,7 @@ } }, { - "id": 3186, + "id": 3208, "name": "reconnectAfterMs", "variant": "declaration", "kind": 262144, @@ -54244,7 +55681,7 @@ } ], "getSignature": { - "id": 3187, + "id": 3209, "name": "reconnectAfterMs", "variant": "signature", "kind": 524288, @@ -54259,7 +55696,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3188, + "id": 3210, "name": "__type", "variant": "declaration", "kind": 65536, @@ -54273,7 +55710,7 @@ ], "signatures": [ { - "id": 3189, + "id": 3211, "name": "__type", "variant": "signature", "kind": 4096, @@ -54287,7 +55724,7 @@ ], "parameters": [ { - "id": 3190, + "id": 3212, "name": "tries", "variant": "param", "kind": 32768, @@ -54309,7 +55746,7 @@ } }, { - "id": 3178, + "id": 3200, "name": "reconnectTimer", "variant": "declaration", "kind": 262144, @@ -54322,7 +55759,7 @@ } ], "getSignature": { - "id": 3179, + "id": 3201, "name": "reconnectTimer", "variant": "signature", "kind": 524288, @@ -54347,7 +55784,7 @@ } }, { - "id": 3191, + "id": 3213, "name": "sendBuffer", "variant": "declaration", "kind": 262144, @@ -54360,7 +55797,7 @@ } ], "getSignature": { - "id": 3192, + "id": 3214, "name": "sendBuffer", "variant": "signature", "kind": 524288, @@ -54377,7 +55814,7 @@ "elementType": { "type": "reflection", "declaration": { - "id": 3193, + "id": 3215, "name": "__type", "variant": "declaration", "kind": 65536, @@ -54391,7 +55828,7 @@ ], "signatures": [ { - "id": 3194, + "id": 3216, "name": "__type", "variant": "signature", "kind": 4096, @@ -54415,7 +55852,7 @@ } }, { - "id": 3195, + "id": 3217, "name": "stateChangeCallbacks", "variant": "declaration", "kind": 262144, @@ -54428,7 +55865,7 @@ } ], "getSignature": { - "id": 3196, + "id": 3218, "name": "stateChangeCallbacks", "variant": "signature", "kind": 524288, @@ -54443,14 +55880,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3197, + "id": 3219, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3199, + "id": 3221, "name": "close", "variant": "declaration", "kind": 1024, @@ -54485,7 +55922,7 @@ } }, { - "id": 3200, + "id": 3222, "name": "error", "variant": "declaration", "kind": 1024, @@ -54520,7 +55957,7 @@ } }, { - "id": 3201, + "id": 3223, "name": "message", "variant": "declaration", "kind": 1024, @@ -54555,7 +55992,7 @@ } }, { - "id": 3198, + "id": 3220, "name": "open", "variant": "declaration", "kind": 1024, @@ -54593,7 +56030,7 @@ "groups": [ { "title": "Properties", - "children": [3199, 3200, 3201, 3198] + "children": [3221, 3222, 3223, 3220] } ], "sources": [ @@ -54608,7 +56045,7 @@ } }, { - "id": 3166, + "id": 3188, "name": "timeout", "variant": "declaration", "kind": 262144, @@ -54621,7 +56058,7 @@ } ], "getSignature": { - "id": 3167, + "id": 3189, "name": "timeout", "variant": "signature", "kind": 524288, @@ -54640,7 +56077,7 @@ } }, { - "id": 3168, + "id": 3190, "name": "transport", "variant": "declaration", "kind": 262144, @@ -54653,7 +56090,7 @@ } ], "getSignature": { - "id": 3169, + "id": 3191, "name": "transport", "variant": "signature", "kind": 524288, @@ -54667,14 +56104,14 @@ ], "type": { "type": "reference", - "target": 3459, + "target": 3481, "name": "WebSocketLikeConstructor", "package": "@supabase/realtime-js" } } }, { - "id": 3180, + "id": 3202, "name": "vsn", "variant": "declaration", "kind": 262144, @@ -54687,7 +56124,7 @@ } ], "getSignature": { - "id": 3181, + "id": 3203, "name": "vsn", "variant": "signature", "kind": 524288, @@ -54711,7 +56148,7 @@ } }, { - "id": 3236, + "id": 3258, "name": "channel", "variant": "declaration", "kind": 2048, @@ -54725,7 +56162,7 @@ ], "signatures": [ { - "id": 3237, + "id": 3259, "name": "channel", "variant": "signature", "kind": 4096, @@ -54740,7 +56177,7 @@ "kind": "inline-tag", "tag": "@link", "text": "RealtimeChannel", - "target": 2800 + "target": 2822 }, { "kind": "text", @@ -54776,7 +56213,7 @@ ], "parameters": [ { - "id": 3238, + "id": 3260, "name": "topic", "variant": "param", "kind": 32768, @@ -54787,7 +56224,7 @@ } }, { - "id": 3239, + "id": 3261, "name": "params", "variant": "param", "kind": 32768, @@ -54796,7 +56233,7 @@ }, "type": { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" } @@ -54804,7 +56241,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -54813,7 +56250,7 @@ ] }, { - "id": 3208, + "id": 3230, "name": "connect", "variant": "declaration", "kind": 2048, @@ -54827,7 +56264,7 @@ ], "signatures": [ { - "id": 3209, + "id": 3231, "name": "connect", "variant": "signature", "kind": 4096, @@ -54866,7 +56303,7 @@ ] }, { - "id": 3228, + "id": 3250, "name": "connectionState", "variant": "declaration", "kind": 2048, @@ -54880,7 +56317,7 @@ ], "signatures": [ { - "id": 3229, + "id": 3251, "name": "connectionState", "variant": "signature", "kind": 4096, @@ -54924,7 +56361,7 @@ ] }, { - "id": 3212, + "id": 3234, "name": "disconnect", "variant": "declaration", "kind": 2048, @@ -54938,7 +56375,7 @@ ], "signatures": [ { - "id": 3213, + "id": 3235, "name": "disconnect", "variant": "signature", "kind": 4096, @@ -54971,7 +56408,7 @@ ], "parameters": [ { - "id": 3214, + "id": 3236, "name": "code", "variant": "param", "kind": 32768, @@ -54992,7 +56429,7 @@ } }, { - "id": 3215, + "id": 3237, "name": "reason", "variant": "param", "kind": 32768, @@ -55041,7 +56478,7 @@ ] }, { - "id": 3210, + "id": 3232, "name": "endpointURL", "variant": "declaration", "kind": 2048, @@ -55055,7 +56492,7 @@ ], "signatures": [ { - "id": 3211, + "id": 3233, "name": "endpointURL", "variant": "signature", "kind": 4096, @@ -55103,7 +56540,7 @@ ] }, { - "id": 3216, + "id": 3238, "name": "getChannels", "variant": "declaration", "kind": 2048, @@ -55117,7 +56554,7 @@ ], "signatures": [ { - "id": 3217, + "id": 3239, "name": "getChannels", "variant": "signature", "kind": 4096, @@ -55152,7 +56589,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -55162,7 +56599,7 @@ ] }, { - "id": 3230, + "id": 3252, "name": "isConnected", "variant": "declaration", "kind": 2048, @@ -55176,7 +56613,7 @@ ], "signatures": [ { - "id": 3231, + "id": 3253, "name": "isConnected", "variant": "signature", "kind": 4096, @@ -55223,7 +56660,7 @@ ] }, { - "id": 3232, + "id": 3254, "name": "isConnecting", "variant": "declaration", "kind": 2048, @@ -55237,7 +56674,7 @@ ], "signatures": [ { - "id": 3233, + "id": 3255, "name": "isConnecting", "variant": "signature", "kind": 4096, @@ -55284,7 +56721,7 @@ ] }, { - "id": 3234, + "id": 3256, "name": "isDisconnecting", "variant": "declaration", "kind": 2048, @@ -55298,7 +56735,7 @@ ], "signatures": [ { - "id": 3235, + "id": 3257, "name": "isDisconnecting", "variant": "signature", "kind": 4096, @@ -55345,7 +56782,7 @@ ] }, { - "id": 3223, + "id": 3245, "name": "log", "variant": "declaration", "kind": 2048, @@ -55359,7 +56796,7 @@ ], "signatures": [ { - "id": 3224, + "id": 3246, "name": "log", "variant": "signature", "kind": 4096, @@ -55400,7 +56837,7 @@ ], "parameters": [ { - "id": 3225, + "id": 3247, "name": "kind", "variant": "param", "kind": 32768, @@ -55411,7 +56848,7 @@ } }, { - "id": 3226, + "id": 3248, "name": "msg", "variant": "param", "kind": 32768, @@ -55422,7 +56859,7 @@ } }, { - "id": 3227, + "id": 3249, "name": "data", "variant": "param", "kind": 32768, @@ -55443,7 +56880,7 @@ ] }, { - "id": 3248, + "id": 3270, "name": "onHeartbeat", "variant": "declaration", "kind": 2048, @@ -55457,7 +56894,7 @@ ], "signatures": [ { - "id": 3249, + "id": 3271, "name": "onHeartbeat", "variant": "signature", "kind": 4096, @@ -55490,7 +56927,7 @@ ], "parameters": [ { - "id": 3250, + "id": 3272, "name": "callback", "variant": "param", "kind": 32768, @@ -55514,7 +56951,7 @@ ] }, { - "id": 3240, + "id": 3262, "name": "push", "variant": "declaration", "kind": 2048, @@ -55528,7 +56965,7 @@ ], "signatures": [ { - "id": 3241, + "id": 3263, "name": "push", "variant": "signature", "kind": 4096, @@ -55561,14 +56998,14 @@ ], "parameters": [ { - "id": 3242, + "id": 3264, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 3292, + "target": 3314, "name": "RealtimeMessage", "package": "@supabase/realtime-js" } @@ -55582,7 +57019,7 @@ ] }, { - "id": 3221, + "id": 3243, "name": "removeAllChannels", "variant": "declaration", "kind": 2048, @@ -55596,7 +57033,7 @@ ], "signatures": [ { - "id": 3222, + "id": 3244, "name": "removeAllChannels", "variant": "signature", "kind": 4096, @@ -55638,7 +57075,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -55651,7 +57088,7 @@ ] }, { - "id": 3218, + "id": 3240, "name": "removeChannel", "variant": "declaration", "kind": 2048, @@ -55665,7 +57102,7 @@ ], "signatures": [ { - "id": 3219, + "id": 3241, "name": "removeChannel", "variant": "signature", "kind": 4096, @@ -55698,7 +57135,7 @@ ], "parameters": [ { - "id": 3220, + "id": 3242, "name": "channel", "variant": "param", "kind": 32768, @@ -55713,7 +57150,7 @@ }, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -55729,7 +57166,7 @@ "typeArguments": [ { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -55741,7 +57178,7 @@ ] }, { - "id": 3246, + "id": 3268, "name": "sendHeartbeat", "variant": "declaration", "kind": 2048, @@ -55755,7 +57192,7 @@ ], "signatures": [ { - "id": 3247, + "id": 3269, "name": "sendHeartbeat", "variant": "signature", "kind": 4096, @@ -55805,7 +57242,7 @@ ] }, { - "id": 3243, + "id": 3265, "name": "setAuth", "variant": "declaration", "kind": 2048, @@ -55819,7 +57256,7 @@ ], "signatures": [ { - "id": 3244, + "id": 3266, "name": "setAuth", "variant": "signature", "kind": 4096, @@ -55885,7 +57322,7 @@ ], "parameters": [ { - "id": 3245, + "id": 3267, "name": "token", "variant": "param", "kind": 32768, @@ -55937,25 +57374,25 @@ "groups": [ { "title": "Constructors", - "children": [3131] + "children": [3153] }, { "title": "Properties", "children": [ - 3137, 3136, 3140, 3135, 3152, 3142, 3141, 3151, 3146, 3150, 3163, 3160, 3162, 3161 + 3159, 3158, 3162, 3157, 3174, 3164, 3163, 3173, 3168, 3172, 3185, 3182, 3184, 3183 ] }, { "title": "Accessors", "children": [ - 3184, 3182, 3164, 3170, 3172, 3174, 3176, 3186, 3178, 3191, 3195, 3166, 3168, 3180 + 3206, 3204, 3186, 3192, 3194, 3196, 3198, 3208, 3200, 3213, 3217, 3188, 3190, 3202 ] }, { "title": "Methods", "children": [ - 3236, 3208, 3228, 3212, 3210, 3216, 3230, 3232, 3234, 3223, 3248, 3240, 3221, 3218, - 3246, 3243 + 3258, 3230, 3250, 3234, 3232, 3238, 3252, 3254, 3256, 3245, 3270, 3262, 3243, 3240, + 3268, 3265 ] } ], @@ -55963,15 +57400,15 @@ { "title": "Other", "children": [ - 3137, 3136, 3140, 3135, 3152, 3142, 3141, 3151, 3146, 3150, 3163, 3160, 3162, 3161, - 3184, 3182, 3164, 3170, 3172, 3174, 3176, 3186, 3178, 3191, 3195, 3166, 3168, 3180 + 3159, 3158, 3162, 3157, 3174, 3164, 3163, 3173, 3168, 3172, 3185, 3182, 3184, 3183, + 3206, 3204, 3186, 3192, 3194, 3196, 3198, 3208, 3200, 3213, 3217, 3188, 3190, 3202 ] }, { "title": "Realtime", "children": [ - 3131, 3236, 3208, 3228, 3212, 3210, 3216, 3230, 3232, 3234, 3223, 3248, 3240, 3221, - 3218, 3246, 3243 + 3153, 3258, 3230, 3250, 3234, 3232, 3238, 3252, 3254, 3256, 3245, 3270, 3262, 3243, + 3240, 3268, 3265 ] } ], @@ -55984,14 +57421,14 @@ ] }, { - "id": 2791, + "id": 2813, "name": "RealtimePresence", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2792, + "id": 2814, "name": "constructor", "variant": "declaration", "kind": 512, @@ -56005,7 +57442,7 @@ ], "signatures": [ { - "id": 2793, + "id": 2815, "name": "RealtimePresence", "variant": "signature", "kind": 16384, @@ -56048,7 +57485,7 @@ ], "parameters": [ { - "id": 2794, + "id": 2816, "name": "channel", "variant": "param", "kind": 32768, @@ -56063,14 +57500,14 @@ }, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2795, + "id": 2817, "name": "opts", "variant": "param", "kind": 32768, @@ -56106,7 +57543,7 @@ ], "type": { "type": "reference", - "target": 2791, + "target": 2813, "name": "RealtimePresence", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -56115,7 +57552,7 @@ ] }, { - "id": 2796, + "id": 2818, "name": "channel", "variant": "declaration", "kind": 1024, @@ -56129,14 +57566,14 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" } }, { - "id": 2797, + "id": 2819, "name": "state", "variant": "declaration", "kind": 262144, @@ -56149,7 +57586,7 @@ } ], "getSignature": { - "id": 2798, + "id": 2820, "name": "state", "variant": "signature", "kind": 524288, @@ -56163,7 +57600,7 @@ ], "type": { "type": "reference", - "target": 3360, + "target": 3382, "name": "RealtimePresenceState", "package": "@supabase/realtime-js" } @@ -56173,25 +57610,25 @@ "groups": [ { "title": "Constructors", - "children": [2792] + "children": [2814] }, { "title": "Properties", - "children": [2796] + "children": [2818] }, { "title": "Accessors", - "children": [2797] + "children": [2819] } ], "categories": [ { "title": "Other", - "children": [2796, 2797] + "children": [2818, 2819] }, { "title": "Realtime", - "children": [2792] + "children": [2814] } ], "sources": [ @@ -56634,7 +58071,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L309" } ], "signatures": [ @@ -56947,7 +58384,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L309" } ], "typeParameters": [ @@ -56995,7 +58432,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ], "type": { @@ -57015,7 +58452,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ] } @@ -57365,7 +58802,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ], "type": { @@ -57385,7 +58822,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ] } @@ -57466,7 +58903,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -57489,7 +58926,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -57509,7 +58946,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -57527,7 +58964,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -57577,7 +59014,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ], "type": { @@ -57597,7 +59034,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ] } @@ -57633,7 +59070,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ], "type": { @@ -57653,7 +59090,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ] } @@ -57829,7 +59266,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 93, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L93" } ], "type": { @@ -57845,7 +59282,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 93, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L93" } ], "signatures": [ @@ -57860,7 +59297,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 93, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L93" } ], "type": { @@ -57911,7 +59348,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L78" } ], "type": { @@ -57937,7 +59374,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 86, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L86" } ], "type": { @@ -57964,7 +59401,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 92, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L92" } ], "type": { @@ -57986,7 +59423,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 91, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L91" } ], "type": { @@ -58215,7 +59652,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 88, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L88" } ], "type": { @@ -58241,7 +59678,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 95, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L95" } ], "type": { @@ -58275,12 +59712,12 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L79" } ], "type": { "type": "reference", - "target": 3130, + "target": 3152, "name": "RealtimeClient", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -58299,7 +59736,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 85, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L85" } ], "type": { @@ -58325,7 +59762,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 89, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L89" } ], "type": { @@ -58378,7 +59815,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 96, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L96" } ], "type": { @@ -58420,7 +59857,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L83" } ], "type": { @@ -58446,7 +59883,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 90, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L90" } ], "type": { @@ -58467,7 +59904,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L87" } ], "type": { @@ -58501,7 +59938,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 311, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L311" } ], "type": { @@ -58530,7 +59967,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 310, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L310" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L310" } ], "type": { @@ -58549,7 +59986,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 403, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L403" } ], "getSignature": { @@ -58571,7 +60008,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 403, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L403" } ], "type": { @@ -58596,7 +60033,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L515" } ], "signatures": [ @@ -58630,7 +60067,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 515, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L515" } ], "parameters": [ @@ -58669,7 +60106,7 @@ }, "type": { "type": "reference", - "target": 3114, + "target": 3136, "name": "RealtimeChannelOptions", "package": "@supabase/realtime-js" }, @@ -58678,7 +60115,7 @@ ], "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -58717,19 +60154,19 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L411" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L415" }, { "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 423, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L423" } ], "signatures": [ @@ -58744,7 +60181,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L411" } ], "typeParameters": [ @@ -58842,7 +60279,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 415, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L415" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L415" } ], "typeParameters": [ @@ -58942,7 +60379,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 529, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L529" } ], "signatures": [ @@ -58986,14 +60423,14 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 529, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L529" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L529" } ], "type": { "type": "array", "elementType": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -59013,7 +60450,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L566" } ], "signatures": [ @@ -59066,7 +60503,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 566, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L566" } ], "type": { @@ -59080,7 +60517,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -59103,7 +60540,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L549" } ], "signatures": [ @@ -59156,7 +60593,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 549, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L549" } ], "parameters": [ @@ -59176,7 +60613,7 @@ }, "type": { "type": "reference", - "target": 2800, + "target": 2822, "name": "RealtimeChannel", "package": "@supabase/realtime-js", "qualifiedName": "default" @@ -59192,7 +60629,7 @@ "typeArguments": [ { "type": "reference", - "target": 3369, + "target": 3391, "name": "RealtimeRemoveChannelResponse", "package": "@supabase/realtime-js" } @@ -59214,7 +60651,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L470" } ], "signatures": [ @@ -59237,7 +60674,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L470" } ], "typeParameters": [ @@ -59463,7 +60900,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 481, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L481" } ], "type": { @@ -59513,7 +60950,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 480, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L480" } ], "type": { @@ -59558,7 +60995,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 479, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L479" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L479" } ], "type": { @@ -59578,7 +61015,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 478, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L478" } ] } @@ -59684,7 +61121,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L435" } ], "signatures": [ @@ -59707,7 +61144,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L435" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L435" } ], "typeParameters": [ @@ -59872,7 +61309,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 43, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L43" } ], "typeParameters": [ @@ -59952,7 +61389,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ], "type": { @@ -59972,7 +61409,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 50, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L50" } ] } @@ -60442,7 +61879,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ], "type": { @@ -60462,7 +61899,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 64, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L64" } ] } @@ -60543,7 +61980,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -60566,7 +62003,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 47, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ], "type": { @@ -60586,7 +62023,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -60604,7 +62041,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 67, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L67" } ] } @@ -60644,7 +62081,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ], "type": { @@ -60664,7 +62101,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 70, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L70" } ] } @@ -60700,7 +62137,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ], "type": { @@ -60720,7 +62157,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 71, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/SupabaseClient.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/SupabaseClient.ts#L71" } ] } @@ -60743,7 +62180,7 @@ ] }, { - "id": 3397, + "id": 3419, "name": "WebSocketFactory", "variant": "declaration", "kind": 128, @@ -60758,7 +62195,7 @@ }, "children": [ { - "id": 3399, + "id": 3421, "name": "getWebSocketConstructor", "variant": "declaration", "kind": 2048, @@ -60774,7 +62211,7 @@ ], "signatures": [ { - "id": 3400, + "id": 3422, "name": "getWebSocketConstructor", "variant": "signature", "kind": 4096, @@ -60818,7 +62255,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3401, + "id": 3423, "name": "__type", "variant": "declaration", "kind": 65536, @@ -60832,7 +62269,7 @@ ], "signatures": [ { - "id": 3402, + "id": 3424, "name": "getWebSocketConstructor", "variant": "signature", "kind": 16384, @@ -60846,7 +62283,7 @@ ], "parameters": [ { - "id": 3403, + "id": 3425, "name": "url", "variant": "param", "kind": 32768, @@ -60871,7 +62308,7 @@ } }, { - "id": 3404, + "id": 3426, "name": "protocols", "variant": "param", "kind": 32768, @@ -60913,7 +62350,7 @@ ] }, { - "id": 3405, + "id": 3427, "name": "isWebSocketSupported", "variant": "declaration", "kind": 2048, @@ -60929,7 +62366,7 @@ ], "signatures": [ { - "id": 3406, + "id": 3428, "name": "isWebSocketSupported", "variant": "signature", "kind": 4096, @@ -60981,13 +62418,13 @@ "groups": [ { "title": "Methods", - "children": [3399, 3405] + "children": [3421, 3427] } ], "categories": [ { "title": "Realtime", - "children": [3399, 3405] + "children": [3421, 3427] } ], "sources": [ @@ -60999,14 +62436,14 @@ ] }, { - "id": 1748, + "id": 1750, "name": "AdminUserAttributes", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1750, + "id": 1752, "name": "app_metadata", "variant": "declaration", "kind": 1024, @@ -61040,7 +62477,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 443, + "line": 432, "character": 4 } ], @@ -61050,7 +62487,7 @@ } }, { - "id": 1753, + "id": 1755, "name": "ban_duration", "variant": "declaration", "kind": 1024, @@ -61068,7 +62505,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 466, + "line": 455, "character": 4 } ], @@ -61078,7 +62515,7 @@ } }, { - "id": 1761, + "id": 1763, "name": "current_password", "variant": "declaration", "kind": 1024, @@ -61097,7 +62534,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 396, + "line": 385, "character": 4 } ], @@ -61112,7 +62549,7 @@ } }, { - "id": 1758, + "id": 1760, "name": "email", "variant": "declaration", "kind": 1024, @@ -61131,7 +62568,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 400, + "line": 389, "character": 4 } ], @@ -61146,7 +62583,7 @@ } }, { - "id": 1751, + "id": 1753, "name": "email_confirm", "variant": "declaration", "kind": 1024, @@ -61164,7 +62601,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 449, + "line": 438, "character": 4 } ], @@ -61174,7 +62611,7 @@ } }, { - "id": 1756, + "id": 1758, "name": "id", "variant": "declaration", "kind": 1024, @@ -61208,7 +62645,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 488, + "line": 477, "character": 4 } ], @@ -61218,7 +62655,7 @@ } }, { - "id": 1757, + "id": 1759, "name": "nonce", "variant": "declaration", "kind": 1024, @@ -61237,7 +62674,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 414, + "line": 403, "character": 4 } ], @@ -61252,7 +62689,7 @@ } }, { - "id": 1759, + "id": 1761, "name": "password", "variant": "declaration", "kind": 1024, @@ -61271,7 +62708,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 408, + "line": 397, "character": 4 } ], @@ -61286,7 +62723,7 @@ } }, { - "id": 1755, + "id": 1757, "name": "password_hash", "variant": "declaration", "kind": 1024, @@ -61312,7 +62749,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 482, + "line": 471, "character": 4 } ], @@ -61322,7 +62759,7 @@ } }, { - "id": 1760, + "id": 1762, "name": "phone", "variant": "declaration", "kind": 1024, @@ -61341,7 +62778,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 404, + "line": 393, "character": 4 } ], @@ -61356,7 +62793,7 @@ } }, { - "id": 1752, + "id": 1754, "name": "phone_confirm", "variant": "declaration", "kind": 1024, @@ -61374,7 +62811,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 455, + "line": 444, "character": 4 } ], @@ -61384,7 +62821,7 @@ } }, { - "id": 1754, + "id": 1756, "name": "role", "variant": "declaration", "kind": 1024, @@ -61434,7 +62871,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 474, + "line": 463, "character": 4 } ], @@ -61444,7 +62881,7 @@ } }, { - "id": 1749, + "id": 1751, "name": "user_metadata", "variant": "declaration", "kind": 1024, @@ -61478,7 +62915,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 434, + "line": 423, "character": 4 } ], @@ -61492,14 +62929,14 @@ { "title": "Properties", "children": [ - 1750, 1753, 1761, 1758, 1751, 1756, 1757, 1759, 1755, 1760, 1752, 1754, 1749 + 1752, 1755, 1763, 1760, 1753, 1758, 1759, 1761, 1757, 1762, 1754, 1756, 1751 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 423, + "line": 412, "character": 17 } ], @@ -61513,7 +62950,7 @@ "typeArguments": [ { "type": "reference", - "target": 1741, + "target": 1743, "name": "UserAttributes", "package": "@supabase/auth-js" }, @@ -61528,7 +62965,7 @@ ] }, { - "id": 1705, + "id": 1707, "name": "AMREntry", "variant": "declaration", "kind": 256, @@ -61548,7 +62985,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel", - "target": 2077 + "target": 2079 }, { "kind": "text", @@ -61560,7 +62997,7 @@ }, "children": [ { - "id": 1706, + "id": 1708, "name": "method", "variant": "declaration", "kind": 1024, @@ -61576,19 +63013,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 293, + "line": 282, "character": 4 } ], "type": { "type": "reference", - "target": 1703, + "target": 1705, "name": "AMRMethod", "package": "@supabase/auth-js" } }, { - "id": 1707, + "id": 1709, "name": "timestamp", "variant": "declaration", "kind": 1024, @@ -61604,7 +63041,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 298, + "line": 287, "character": 4 } ], @@ -61617,19 +63054,19 @@ "groups": [ { "title": "Properties", - "children": [1706, 1707] + "children": [1708, 1709] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 291, + "line": 280, "character": 17 } ] }, { - "id": 2390, + "id": 2392, "name": "AuthOAuthServerApi", "variant": "declaration", "kind": 256, @@ -61644,7 +63081,7 @@ }, "children": [ { - "id": 2394, + "id": 2396, "name": "approveAuthorization", "variant": "declaration", "kind": 2048, @@ -61652,13 +63089,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2275, + "line": 2264, "character": 4 } ], "signatures": [ { - "id": 2395, + "id": 2397, "name": "approveAuthorization", "variant": "signature", "kind": 4096, @@ -61703,13 +63140,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2275, + "line": 2264, "character": 4 } ], "parameters": [ { - "id": 2396, + "id": 2398, "name": "authorizationId", "variant": "param", "kind": 32768, @@ -61728,7 +63165,7 @@ } }, { - "id": 2397, + "id": 2399, "name": "options", "variant": "param", "kind": 32768, @@ -61746,14 +63183,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2398, + "id": 2400, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2399, + "id": 2401, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -61771,7 +63208,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2276, + "line": 2265, "character": 8 } ], @@ -61784,13 +63221,13 @@ "groups": [ { "title": "Properties", - "children": [2399] + "children": [2401] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2275, + "line": 2264, "character": 60 } ] @@ -61807,7 +63244,7 @@ "typeArguments": [ { "type": "reference", - "target": 2381, + "target": 2383, "name": "AuthOAuthConsentResponse", "package": "@supabase/auth-js" } @@ -61819,7 +63256,7 @@ ] }, { - "id": 2400, + "id": 2402, "name": "denyAuthorization", "variant": "declaration", "kind": 2048, @@ -61827,13 +63264,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2293, + "line": 2282, "character": 4 } ], "signatures": [ { - "id": 2401, + "id": 2403, "name": "denyAuthorization", "variant": "signature", "kind": 4096, @@ -61878,13 +63315,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2293, + "line": 2282, "character": 4 } ], "parameters": [ { - "id": 2402, + "id": 2404, "name": "authorizationId", "variant": "param", "kind": 32768, @@ -61903,7 +63340,7 @@ } }, { - "id": 2403, + "id": 2405, "name": "options", "variant": "param", "kind": 32768, @@ -61921,14 +63358,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2404, + "id": 2406, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2405, + "id": 2407, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -61946,7 +63383,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2294, + "line": 2283, "character": 8 } ], @@ -61959,13 +63396,13 @@ "groups": [ { "title": "Properties", - "children": [2405] + "children": [2407] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2293, + "line": 2282, "character": 57 } ] @@ -61982,7 +63419,7 @@ "typeArguments": [ { "type": "reference", - "target": 2381, + "target": 2383, "name": "AuthOAuthConsentResponse", "package": "@supabase/auth-js" } @@ -61994,7 +63431,7 @@ ] }, { - "id": 2391, + "id": 2393, "name": "getAuthorizationDetails", "variant": "declaration", "kind": 2048, @@ -62002,13 +63439,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2259, + "line": 2248, "character": 4 } ], "signatures": [ { - "id": 2392, + "id": 2394, "name": "getAuthorizationDetails", "variant": "signature", "kind": 4096, @@ -62073,13 +63510,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2259, + "line": 2248, "character": 4 } ], "parameters": [ { - "id": 2393, + "id": 2395, "name": "authorizationId", "variant": "param", "kind": 32768, @@ -62107,7 +63544,7 @@ "typeArguments": [ { "type": "reference", - "target": 2380, + "target": 2382, "name": "AuthOAuthAuthorizationDetailsResponse", "package": "@supabase/auth-js" } @@ -62119,7 +63556,7 @@ ] }, { - "id": 2406, + "id": 2408, "name": "listGrants", "variant": "declaration", "kind": 2048, @@ -62127,13 +63564,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2305, + "line": 2294, "character": 4 } ], "signatures": [ { - "id": 2407, + "id": 2409, "name": "listGrants", "variant": "signature", "kind": 4096, @@ -62178,7 +63615,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2305, + "line": 2294, "character": 4 } ], @@ -62191,7 +63628,7 @@ "typeArguments": [ { "type": "reference", - "target": 2387, + "target": 2389, "name": "AuthOAuthGrantsResponse", "package": "@supabase/auth-js" } @@ -62203,7 +63640,7 @@ ] }, { - "id": 2408, + "id": 2410, "name": "revokeGrant", "variant": "declaration", "kind": 2048, @@ -62211,13 +63648,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2320, + "line": 2309, "character": 4 } ], "signatures": [ { - "id": 2409, + "id": 2411, "name": "revokeGrant", "variant": "signature", "kind": 4096, @@ -62262,13 +63699,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2320, + "line": 2309, "character": 4 } ], "parameters": [ { - "id": 2410, + "id": 2412, "name": "options", "variant": "param", "kind": 32768, @@ -62284,14 +63721,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2411, + "id": 2413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2412, + "id": 2414, "name": "clientId", "variant": "declaration", "kind": 1024, @@ -62307,7 +63744,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2321, + "line": 2310, "character": 8 } ], @@ -62320,13 +63757,13 @@ "groups": [ { "title": "Properties", - "children": [2412] + "children": [2414] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2320, + "line": 2309, "character": 25 } ] @@ -62343,7 +63780,7 @@ "typeArguments": [ { "type": "reference", - "target": 2388, + "target": 2390, "name": "AuthOAuthRevokeGrantResponse", "package": "@supabase/auth-js" } @@ -62358,25 +63795,25 @@ "groups": [ { "title": "Methods", - "children": [2394, 2400, 2391, 2406, 2408] + "children": [2396, 2402, 2393, 2408, 2410] } ], "categories": [ { "title": "Auth", - "children": [2394, 2400, 2391, 2406, 2408] + "children": [2396, 2402, 2393, 2408, 2410] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2234, + "line": 2223, "character": 17 } ] }, { - "id": 2490, + "id": 2492, "name": "AuthPasskeyApi", "variant": "declaration", "kind": 256, @@ -62399,7 +63836,7 @@ }, "children": [ { - "id": 2507, + "id": 2509, "name": "delete", "variant": "declaration", "kind": 2048, @@ -62407,13 +63844,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2475, + "line": 2464, "character": 4 } ], "signatures": [ { - "id": 2508, + "id": 2510, "name": "delete", "variant": "signature", "kind": 4096, @@ -62449,20 +63886,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2475, + "line": 2464, "character": 4 } ], "parameters": [ { - "id": 2509, + "id": 2511, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2470, + "target": 2472, "name": "PasskeyDeleteParams", "package": "@supabase/auth-js" } @@ -62477,7 +63914,7 @@ "typeArguments": [ { "type": "reference", - "target": 2482, + "target": 2484, "name": "AuthPasskeyDeleteResponse", "package": "@supabase/auth-js" } @@ -62489,7 +63926,7 @@ ] }, { - "id": 2502, + "id": 2504, "name": "list", "variant": "declaration", "kind": 2048, @@ -62497,13 +63934,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2461, + "line": 2450, "character": 4 } ], "signatures": [ { - "id": 2503, + "id": 2505, "name": "list", "variant": "signature", "kind": 4096, @@ -62539,7 +63976,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2461, + "line": 2450, "character": 4 } ], @@ -62552,7 +63989,7 @@ "typeArguments": [ { "type": "reference", - "target": 2480, + "target": 2482, "name": "AuthPasskeyListResponse", "package": "@supabase/auth-js" } @@ -62564,7 +64001,7 @@ ] }, { - "id": 2496, + "id": 2498, "name": "startAuthentication", "variant": "declaration", "kind": 2048, @@ -62572,13 +64009,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2446, + "line": 2435, "character": 4 } ], "signatures": [ { - "id": 2497, + "id": 2499, "name": "startAuthentication", "variant": "signature", "kind": 4096, @@ -62622,13 +64059,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2446, + "line": 2435, "character": 4 } ], "parameters": [ { - "id": 2498, + "id": 2500, "name": "params", "variant": "param", "kind": 32768, @@ -62637,7 +64074,7 @@ }, "type": { "type": "reference", - "target": 2457, + "target": 2459, "name": "StartPasskeyAuthenticationParams", "package": "@supabase/auth-js" } @@ -62652,7 +64089,7 @@ "typeArguments": [ { "type": "reference", - "target": 2475, + "target": 2477, "name": "AuthPasskeyAuthenticationOptionsResponse", "package": "@supabase/auth-js" } @@ -62664,7 +64101,7 @@ ] }, { - "id": 2491, + "id": 2493, "name": "startRegistration", "variant": "declaration", "kind": 2048, @@ -62672,13 +64109,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2428, + "line": 2417, "character": 4 } ], "signatures": [ { - "id": 2492, + "id": 2494, "name": "startRegistration", "variant": "signature", "kind": 4096, @@ -62722,7 +64159,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2428, + "line": 2417, "character": 4 } ], @@ -62735,7 +64172,7 @@ "typeArguments": [ { "type": "reference", - "target": 2473, + "target": 2475, "name": "AuthPasskeyRegistrationOptionsResponse", "package": "@supabase/auth-js" } @@ -62747,7 +64184,7 @@ ] }, { - "id": 2504, + "id": 2506, "name": "update", "variant": "declaration", "kind": 2048, @@ -62755,13 +64192,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2468, + "line": 2457, "character": 4 } ], "signatures": [ { - "id": 2505, + "id": 2507, "name": "update", "variant": "signature", "kind": 4096, @@ -62797,20 +64234,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2468, + "line": 2457, "character": 4 } ], "parameters": [ { - "id": 2506, + "id": 2508, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2466, + "target": 2468, "name": "PasskeyUpdateParams", "package": "@supabase/auth-js" } @@ -62825,7 +64262,7 @@ "typeArguments": [ { "type": "reference", - "target": 2481, + "target": 2483, "name": "AuthPasskeyUpdateResponse", "package": "@supabase/auth-js" } @@ -62837,7 +64274,7 @@ ] }, { - "id": 2499, + "id": 2501, "name": "verifyAuthentication", "variant": "declaration", "kind": 2048, @@ -62845,13 +64282,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2454, + "line": 2443, "character": 4 } ], "signatures": [ { - "id": 2500, + "id": 2502, "name": "verifyAuthentication", "variant": "signature", "kind": 4096, @@ -62887,20 +64324,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2454, + "line": 2443, "character": 4 } ], "parameters": [ { - "id": 2501, + "id": 2503, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2462, + "target": 2464, "name": "VerifyPasskeyAuthenticationParams", "package": "@supabase/auth-js" } @@ -62915,7 +64352,7 @@ "typeArguments": [ { "type": "reference", - "target": 2476, + "target": 2478, "name": "AuthPasskeyAuthenticationVerifyResponse", "package": "@supabase/auth-js" } @@ -62927,7 +64364,7 @@ ] }, { - "id": 2493, + "id": 2495, "name": "verifyRegistration", "variant": "declaration", "kind": 2048, @@ -62935,13 +64372,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2436, + "line": 2425, "character": 4 } ], "signatures": [ { - "id": 2494, + "id": 2496, "name": "verifyRegistration", "variant": "signature", "kind": 4096, @@ -62977,20 +64414,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2436, + "line": 2425, "character": 4 } ], "parameters": [ { - "id": 2495, + "id": 2497, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2453, + "target": 2455, "name": "VerifyPasskeyRegistrationParams", "package": "@supabase/auth-js" } @@ -63005,7 +64442,7 @@ "typeArguments": [ { "type": "reference", - "target": 2474, + "target": 2476, "name": "AuthPasskeyRegistrationVerifyResponse", "package": "@supabase/auth-js" } @@ -63020,19 +64457,19 @@ "groups": [ { "title": "Methods", - "children": [2507, 2502, 2496, 2491, 2504, 2499, 2493] + "children": [2509, 2504, 2498, 2493, 2506, 2501, 2495] } ], "categories": [ { "title": "Auth", - "children": [2507, 2502, 2496, 2491, 2504, 2499, 2493] + "children": [2509, 2504, 2498, 2493, 2506, 2501, 2495] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2418, + "line": 2407, "character": 17 } ] @@ -63061,7 +64498,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 258, + "line": 247, "character": 4 } ], @@ -63089,7 +64526,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 270, + "line": 259, "character": 4 } ], @@ -63115,7 +64552,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 266, + "line": 255, "character": 4 } ], @@ -63143,7 +64580,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 254, + "line": 243, "character": 4 } ], @@ -63180,7 +64617,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 249, + "line": 238, "character": 4 } ], @@ -63215,7 +64652,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 262, + "line": 251, "character": 4 } ], @@ -63233,7 +64670,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 271, + "line": 260, "character": 4 } ], @@ -63259,7 +64696,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 275, + "line": 264, "character": 4 } ], @@ -63280,7 +64717,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 245, + "line": 234, "character": 17 } ] @@ -63303,7 +64740,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 371, + "line": 360, "character": 4 } ], @@ -63321,13 +64758,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 362, + "line": 351, "character": 4 } ], "type": { "type": "reference", - "target": 1732, + "target": 1734, "name": "UserAppMetadata", "package": "@supabase/auth-js" } @@ -63341,7 +64778,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 364, + "line": 353, "character": 4 } ], @@ -63361,7 +64798,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 386, + "line": 375, "character": 4 } ], @@ -63381,7 +64818,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 365, + "line": 354, "character": 4 } ], @@ -63401,7 +64838,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 375, + "line": 364, "character": 4 } ], @@ -63419,7 +64856,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 374, + "line": 363, "character": 4 } ], @@ -63439,7 +64876,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 385, + "line": 374, "character": 4 } ], @@ -63459,7 +64896,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 372, + "line": 361, "character": 4 } ], @@ -63479,7 +64916,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 367, + "line": 356, "character": 4 } ], @@ -63499,7 +64936,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 376, + "line": 365, "character": 4 } ], @@ -63519,7 +64956,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 384, + "line": 373, "character": 4 } ], @@ -63530,7 +64967,7 @@ "types": [ { "type": "reference", - "target": 1721, + "target": 1723, "typeArguments": [ { "type": "union", @@ -63559,7 +64996,7 @@ }, { "type": "reference", - "target": 1721, + "target": 1723, "typeArguments": [ { "type": "union", @@ -63599,7 +65036,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 361, + "line": 350, "character": 4 } ], @@ -63619,7 +65056,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 381, + "line": 370, "character": 4 } ], @@ -63627,7 +65064,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1708, + "target": 1710, "name": "UserIdentity", "package": "@supabase/auth-js" } @@ -63644,7 +65081,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 370, + "line": 359, "character": 4 } ], @@ -63664,7 +65101,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 382, + "line": 371, "character": 4 } ], @@ -63684,7 +65121,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 383, + "line": 372, "character": 4 } ], @@ -63704,7 +65141,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 378, + "line": 367, "character": 4 } ], @@ -63724,7 +65161,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 368, + "line": 357, "character": 4 } ], @@ -63744,7 +65181,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 369, + "line": 358, "character": 4 } ], @@ -63764,7 +65201,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 373, + "line": 362, "character": 4 } ], @@ -63784,7 +65221,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 377, + "line": 366, "character": 4 } ], @@ -63804,7 +65241,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 366, + "line": 355, "character": 4 } ], @@ -63824,7 +65261,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 379, + "line": 368, "character": 4 } ], @@ -63844,7 +65281,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 380, + "line": 369, "character": 4 } ], @@ -63862,13 +65299,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 363, + "line": 352, "character": 4 } ], "type": { "type": "reference", - "target": 1737, + "target": 1739, "name": "UserMetadata", "package": "@supabase/auth-js" } @@ -63886,20 +65323,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 360, + "line": 349, "character": 17 } ] }, { - "id": 1959, + "id": 1961, "name": "GenerateLinkOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1960, + "id": 1962, "name": "data", "variant": "declaration", "kind": 1024, @@ -63933,7 +65370,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 787, + "line": 776, "character": 4 } ], @@ -63943,7 +65380,7 @@ } }, { - "id": 1961, + "id": 1963, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -63961,7 +65398,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 789, + "line": 778, "character": 4 } ], @@ -63974,19 +65411,19 @@ "groups": [ { "title": "Properties", - "children": [1960, 1961] + "children": [1962, 1963] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 781, + "line": 770, "character": 17 } ] }, { - "id": 2341, + "id": 2343, "name": "GoTrueAdminCustomProvidersApi", "variant": "declaration", "kind": 256, @@ -64001,7 +65438,7 @@ }, "children": [ { - "id": 2345, + "id": 2347, "name": "createProvider", "variant": "declaration", "kind": 2048, @@ -64009,13 +65446,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2082, + "line": 2071, "character": 4 } ], "signatures": [ { - "id": 2346, + "id": 2348, "name": "createProvider", "variant": "signature", "kind": 4096, @@ -64075,20 +65512,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2082, + "line": 2071, "character": 4 } ], "parameters": [ { - "id": 2347, + "id": 2349, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2286, + "target": 2288, "name": "CreateCustomProviderParams", "package": "@supabase/auth-js" } @@ -64103,7 +65540,7 @@ "typeArguments": [ { "type": "reference", - "target": 2329, + "target": 2331, "name": "CustomProviderResponse", "package": "@supabase/auth-js" } @@ -64115,7 +65552,7 @@ ] }, { - "id": 2355, + "id": 2357, "name": "deleteProvider", "variant": "declaration", "kind": 2048, @@ -64123,13 +65560,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2114, + "line": 2103, "character": 4 } ], "signatures": [ { - "id": 2356, + "id": 2358, "name": "deleteProvider", "variant": "signature", "kind": 4096, @@ -64173,13 +65610,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2114, + "line": 2103, "character": 4 } ], "parameters": [ { - "id": 2357, + "id": 2359, "name": "identifier", "variant": "param", "kind": 32768, @@ -64200,14 +65637,14 @@ { "type": "reflection", "declaration": { - "id": 2358, + "id": 2360, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2359, + "id": 2361, "name": "data", "variant": "declaration", "kind": 1024, @@ -64215,7 +65652,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2115, + "line": 2104, "character": 8 } ], @@ -64225,7 +65662,7 @@ } }, { - "id": 2360, + "id": 2362, "name": "error", "variant": "declaration", "kind": 1024, @@ -64233,7 +65670,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2116, + "line": 2105, "character": 8 } ], @@ -64246,7 +65683,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -64257,13 +65694,13 @@ "groups": [ { "title": "Properties", - "children": [2359, 2360] + "children": [2361, 2362] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2114, + "line": 2103, "character": 48 } ] @@ -64277,7 +65714,7 @@ ] }, { - "id": 2348, + "id": 2350, "name": "getProvider", "variant": "declaration", "kind": 2048, @@ -64285,13 +65722,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2091, + "line": 2080, "character": 4 } ], "signatures": [ { - "id": 2349, + "id": 2351, "name": "getProvider", "variant": "signature", "kind": 4096, @@ -64335,13 +65772,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2091, + "line": 2080, "character": 4 } ], "parameters": [ { - "id": 2350, + "id": 2352, "name": "identifier", "variant": "param", "kind": 32768, @@ -64361,7 +65798,7 @@ "typeArguments": [ { "type": "reference", - "target": 2329, + "target": 2331, "name": "CustomProviderResponse", "package": "@supabase/auth-js" } @@ -64373,7 +65810,7 @@ ] }, { - "id": 2342, + "id": 2344, "name": "listProviders", "variant": "declaration", "kind": 2048, @@ -64381,13 +65818,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2067, + "line": 2056, "character": 4 } ], "signatures": [ { - "id": 2343, + "id": 2345, "name": "listProviders", "variant": "signature", "kind": 4096, @@ -64431,13 +65868,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2067, + "line": 2056, "character": 4 } ], "parameters": [ { - "id": 2344, + "id": 2346, "name": "params", "variant": "param", "kind": 32768, @@ -64446,7 +65883,7 @@ }, "type": { "type": "reference", - "target": 2326, + "target": 2328, "name": "ListCustomProvidersParams", "package": "@supabase/auth-js" } @@ -64461,7 +65898,7 @@ "typeArguments": [ { "type": "reference", - "target": 2330, + "target": 2332, "name": "CustomProviderListResponse", "package": "@supabase/auth-js" } @@ -64473,7 +65910,7 @@ ] }, { - "id": 2351, + "id": 2353, "name": "updateProvider", "variant": "declaration", "kind": 2048, @@ -64481,13 +65918,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2105, + "line": 2094, "character": 4 } ], "signatures": [ { - "id": 2352, + "id": 2354, "name": "updateProvider", "variant": "signature", "kind": 4096, @@ -64555,13 +65992,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2105, + "line": 2094, "character": 4 } ], "parameters": [ { - "id": 2353, + "id": 2355, "name": "identifier", "variant": "param", "kind": 32768, @@ -64572,14 +66009,14 @@ } }, { - "id": 2354, + "id": 2356, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2307, + "target": 2309, "name": "UpdateCustomProviderParams", "package": "@supabase/auth-js" } @@ -64594,7 +66031,7 @@ "typeArguments": [ { "type": "reference", - "target": 2329, + "target": 2331, "name": "CustomProviderResponse", "package": "@supabase/auth-js" } @@ -64609,25 +66046,25 @@ "groups": [ { "title": "Methods", - "children": [2345, 2355, 2348, 2342, 2351] + "children": [2347, 2357, 2350, 2344, 2353] } ], "categories": [ { "title": "Auth", - "children": [2345, 2355, 2348, 2342, 2351] + "children": [2347, 2357, 2350, 2344, 2353] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2058, + "line": 2047, "character": 17 } ] }, { - "id": 2094, + "id": 2096, "name": "GoTrueAdminMFAApi", "variant": "declaration", "kind": 256, @@ -64648,7 +66085,7 @@ }, "children": [ { - "id": 2098, + "id": 2100, "name": "deleteFactor", "variant": "declaration", "kind": 2048, @@ -64656,13 +66093,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1522, + "line": 1511, "character": 4 } ], "signatures": [ { - "id": 2099, + "id": 2101, "name": "deleteFactor", "variant": "signature", "kind": 4096, @@ -64682,7 +66119,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#unenroll", - "target": 2069 + "target": 2071 } ] }, @@ -64736,20 +66173,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1522, + "line": 1511, "character": 4 } ], "parameters": [ { - "id": 2100, + "id": 2102, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2084, + "target": 2086, "name": "AuthMFAAdminDeleteFactorParams", "package": "@supabase/auth-js" } @@ -64764,7 +66201,7 @@ "typeArguments": [ { "type": "reference", - "target": 2081, + "target": 2083, "name": "AuthMFAAdminDeleteFactorResponse", "package": "@supabase/auth-js" } @@ -64776,7 +66213,7 @@ ] }, { - "id": 2095, + "id": 2097, "name": "listFactors", "variant": "declaration", "kind": 2048, @@ -64784,13 +66221,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1492, + "line": 1481, "character": 4 } ], "signatures": [ { - "id": 2096, + "id": 2098, "name": "listFactors", "variant": "signature", "kind": 4096, @@ -64849,20 +66286,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1492, + "line": 1481, "character": 4 } ], "parameters": [ { - "id": 2097, + "id": 2099, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2091, + "target": 2093, "name": "AuthMFAAdminListFactorsParams", "package": "@supabase/auth-js" } @@ -64877,7 +66314,7 @@ "typeArguments": [ { "type": "reference", - "target": 2088, + "target": 2090, "name": "AuthMFAAdminListFactorsResponse", "package": "@supabase/auth-js" } @@ -64892,25 +66329,25 @@ "groups": [ { "title": "Methods", - "children": [2098, 2095] + "children": [2100, 2097] } ], "categories": [ { "title": "Auth", - "children": [2098, 2095] + "children": [2100, 2097] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1460, + "line": 1449, "character": 17 } ] }, { - "id": 2226, + "id": 2228, "name": "GoTrueAdminOAuthApi", "variant": "declaration", "kind": 256, @@ -64925,7 +66362,7 @@ }, "children": [ { - "id": 2230, + "id": 2232, "name": "createClient", "variant": "declaration", "kind": 2048, @@ -64933,13 +66370,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1821, + "line": 1810, "character": 4 } ], "signatures": [ { - "id": 2231, + "id": 2233, "name": "createClient", "variant": "signature", "kind": 4096, @@ -64983,20 +66420,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1821, + "line": 1810, "character": 4 } ], "parameters": [ { - "id": 2232, + "id": 2234, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2196, + "target": 2198, "name": "CreateOAuthClientParams", "package": "@supabase/auth-js" } @@ -65011,7 +66448,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65023,7 +66460,7 @@ ] }, { - "id": 2240, + "id": 2242, "name": "deleteClient", "variant": "declaration", "kind": 2048, @@ -65031,13 +66468,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1851, + "line": 1840, "character": 4 } ], "signatures": [ { - "id": 2241, + "id": 2243, "name": "deleteClient", "variant": "signature", "kind": 4096, @@ -65081,13 +66518,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1851, + "line": 1840, "character": 4 } ], "parameters": [ { - "id": 2242, + "id": 2244, "name": "clientId", "variant": "param", "kind": 32768, @@ -65108,14 +66545,14 @@ { "type": "reflection", "declaration": { - "id": 2243, + "id": 2245, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2244, + "id": 2246, "name": "data", "variant": "declaration", "kind": 1024, @@ -65123,7 +66560,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1852, + "line": 1841, "character": 8 } ], @@ -65133,7 +66570,7 @@ } }, { - "id": 2245, + "id": 2247, "name": "error", "variant": "declaration", "kind": 1024, @@ -65141,7 +66578,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1853, + "line": 1842, "character": 8 } ], @@ -65154,7 +66591,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -65165,13 +66602,13 @@ "groups": [ { "title": "Properties", - "children": [2244, 2245] + "children": [2246, 2247] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1851, + "line": 1840, "character": 44 } ] @@ -65185,7 +66622,7 @@ ] }, { - "id": 2233, + "id": 2235, "name": "getClient", "variant": "declaration", "kind": 2048, @@ -65193,13 +66630,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1831, + "line": 1820, "character": 4 } ], "signatures": [ { - "id": 2234, + "id": 2236, "name": "getClient", "variant": "signature", "kind": 4096, @@ -65243,13 +66680,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1831, + "line": 1820, "character": 4 } ], "parameters": [ { - "id": 2235, + "id": 2237, "name": "clientId", "variant": "param", "kind": 32768, @@ -65269,7 +66706,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65281,7 +66718,7 @@ ] }, { - "id": 2227, + "id": 2229, "name": "listClients", "variant": "declaration", "kind": 2048, @@ -65289,13 +66726,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1811, + "line": 1800, "character": 4 } ], "signatures": [ { - "id": 2228, + "id": 2230, "name": "listClients", "variant": "signature", "kind": 4096, @@ -65339,13 +66776,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1811, + "line": 1800, "character": 4 } ], "parameters": [ { - "id": 2229, + "id": 2231, "name": "params", "variant": "param", "kind": 32768, @@ -65354,7 +66791,7 @@ }, "type": { "type": "reference", - "target": 2115, + "target": 2117, "name": "PageParams", "package": "@supabase/auth-js" } @@ -65369,7 +66806,7 @@ "typeArguments": [ { "type": "reference", - "target": 2214, + "target": 2216, "name": "OAuthClientListResponse", "package": "@supabase/auth-js" } @@ -65381,7 +66818,7 @@ ] }, { - "id": 2246, + "id": 2248, "name": "regenerateClientSecret", "variant": "declaration", "kind": 2048, @@ -65389,13 +66826,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1864, + "line": 1853, "character": 4 } ], "signatures": [ { - "id": 2247, + "id": 2249, "name": "regenerateClientSecret", "variant": "signature", "kind": 4096, @@ -65439,13 +66876,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1864, + "line": 1853, "character": 4 } ], "parameters": [ { - "id": 2248, + "id": 2250, "name": "clientId", "variant": "param", "kind": 32768, @@ -65465,7 +66902,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65477,7 +66914,7 @@ ] }, { - "id": 2236, + "id": 2238, "name": "updateClient", "variant": "declaration", "kind": 2048, @@ -65485,13 +66922,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1841, + "line": 1830, "character": 4 } ], "signatures": [ { - "id": 2237, + "id": 2239, "name": "updateClient", "variant": "signature", "kind": 4096, @@ -65535,13 +66972,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1841, + "line": 1830, "character": 4 } ], "parameters": [ { - "id": 2238, + "id": 2240, "name": "clientId", "variant": "param", "kind": 32768, @@ -65552,14 +66989,14 @@ } }, { - "id": 2239, + "id": 2241, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2205, + "target": 2207, "name": "UpdateOAuthClientParams", "package": "@supabase/auth-js" } @@ -65574,7 +67011,7 @@ "typeArguments": [ { "type": "reference", - "target": 2213, + "target": 2215, "name": "OAuthClientResponse", "package": "@supabase/auth-js" } @@ -65589,32 +67026,32 @@ "groups": [ { "title": "Methods", - "children": [2230, 2240, 2233, 2227, 2246, 2236] + "children": [2232, 2242, 2235, 2229, 2248, 2238] } ], "categories": [ { "title": "Auth", - "children": [2230, 2240, 2233, 2227, 2246, 2236] + "children": [2232, 2242, 2235, 2229, 2248, 2238] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1801, + "line": 1790, "character": 17 } ] }, { - "id": 2510, + "id": 2512, "name": "GoTrueAdminPasskeyApi", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2514, + "id": 2516, "name": "deletePasskey", "variant": "declaration", "kind": 2048, @@ -65622,13 +67059,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2495, + "line": 2484, "character": 4 } ], "signatures": [ { - "id": 2515, + "id": 2517, "name": "deletePasskey", "variant": "signature", "kind": 4096, @@ -65672,20 +67109,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2495, + "line": 2484, "character": 4 } ], "parameters": [ { - "id": 2516, + "id": 2518, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2486, + "target": 2488, "name": "AuthPasskeyAdminDeleteParams", "package": "@supabase/auth-js" } @@ -65700,7 +67137,7 @@ "typeArguments": [ { "type": "reference", - "target": 2482, + "target": 2484, "name": "AuthPasskeyDeleteResponse", "package": "@supabase/auth-js" } @@ -65712,7 +67149,7 @@ ] }, { - "id": 2511, + "id": 2513, "name": "listPasskeys", "variant": "declaration", "kind": 2048, @@ -65720,13 +67157,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2486, + "line": 2475, "character": 4 } ], "signatures": [ { - "id": 2512, + "id": 2514, "name": "listPasskeys", "variant": "signature", "kind": 4096, @@ -65770,20 +67207,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2486, + "line": 2475, "character": 4 } ], "parameters": [ { - "id": 2513, + "id": 2515, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2483, + "target": 2485, "name": "AuthPasskeyAdminListParams", "package": "@supabase/auth-js" } @@ -65798,7 +67235,7 @@ "typeArguments": [ { "type": "reference", - "target": 2480, + "target": 2482, "name": "AuthPasskeyListResponse", "package": "@supabase/auth-js" } @@ -65813,25 +67250,25 @@ "groups": [ { "title": "Methods", - "children": [2514, 2511] + "children": [2516, 2513] } ], "categories": [ { "title": "Auth", - "children": [2514, 2511] + "children": [2516, 2513] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2477, + "line": 2466, "character": 17 } ] }, { - "id": 2023, + "id": 2025, "name": "GoTrueMFAApi", "variant": "declaration", "kind": 256, @@ -65846,7 +67283,7 @@ }, "children": [ { - "id": 2080, + "id": 2082, "name": "webauthn", "variant": "declaration", "kind": 1024, @@ -65854,7 +67291,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1423, + "line": 1412, "character": 4 } ], @@ -65869,7 +67306,7 @@ } }, { - "id": 2033, + "id": 2035, "name": "challenge", "variant": "declaration", "kind": 2048, @@ -65877,28 +67314,28 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1165, + "line": 1154, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1166, + "line": 1155, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1167, + "line": 1156, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1168, + "line": 1157, "character": 4 } ], "signatures": [ { - "id": 2034, + "id": 2036, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66028,13 +67465,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1165, + "line": 1154, "character": 4 } ], "parameters": [ { - "id": 2035, + "id": 2037, "name": "params", "variant": "param", "kind": 32768, @@ -66063,14 +67500,14 @@ { "type": "reflection", "declaration": { - "id": 2036, + "id": 2038, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2037, + "id": 2039, "name": "data", "variant": "declaration", "kind": 1024, @@ -66078,7 +67515,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -66088,7 +67525,7 @@ } }, { - "id": 2038, + "id": 2040, "name": "error", "variant": "declaration", "kind": 1024, @@ -66096,13 +67533,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -66111,13 +67548,13 @@ "groups": [ { "title": "Properties", - "children": [2037, 2038] + "children": [2039, 2040] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66126,14 +67563,14 @@ { "type": "reflection", "declaration": { - "id": 2039, + "id": 2041, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2040, + "id": 2042, "name": "data", "variant": "declaration", "kind": 1024, @@ -66141,7 +67578,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], @@ -66156,7 +67593,7 @@ } }, { - "id": 2041, + "id": 2043, "name": "error", "variant": "declaration", "kind": 1024, @@ -66164,7 +67601,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -66177,13 +67614,13 @@ "groups": [ { "title": "Properties", - "children": [2040, 2041] + "children": [2042, 2043] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66197,7 +67634,7 @@ } }, { - "id": 2042, + "id": 2044, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66205,20 +67642,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1166, + "line": 1155, "character": 4 } ], "parameters": [ { - "id": 2043, + "id": 2045, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1990, + "target": 1992, "name": "MFAChallengePhoneParams", "package": "@supabase/auth-js" } @@ -66237,14 +67674,14 @@ { "type": "reflection", "declaration": { - "id": 2044, + "id": 2046, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2045, + "id": 2047, "name": "data", "variant": "declaration", "kind": 1024, @@ -66252,7 +67689,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -66262,7 +67699,7 @@ } }, { - "id": 2046, + "id": 2048, "name": "error", "variant": "declaration", "kind": 1024, @@ -66270,13 +67707,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -66285,13 +67722,13 @@ "groups": [ { "title": "Properties", - "children": [2045, 2046] + "children": [2047, 2048] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66300,14 +67737,14 @@ { "type": "reflection", "declaration": { - "id": 2047, + "id": 2049, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2048, + "id": 2050, "name": "data", "variant": "declaration", "kind": 1024, @@ -66315,7 +67752,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], @@ -66330,7 +67767,7 @@ } }, { - "id": 2049, + "id": 2051, "name": "error", "variant": "declaration", "kind": 1024, @@ -66338,7 +67775,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -66351,13 +67788,13 @@ "groups": [ { "title": "Properties", - "children": [2048, 2049] + "children": [2050, 2051] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66371,7 +67808,7 @@ } }, { - "id": 2050, + "id": 2052, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66379,20 +67816,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1167, + "line": 1156, "character": 4 } ], "parameters": [ { - "id": 2051, + "id": 2053, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1991, + "target": 1993, "name": "MFAChallengeWebauthnParams", "package": "@supabase/auth-js" } @@ -66411,14 +67848,14 @@ { "type": "reflection", "declaration": { - "id": 2052, + "id": 2054, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2053, + "id": 2055, "name": "data", "variant": "declaration", "kind": 1024, @@ -66426,7 +67863,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -66436,7 +67873,7 @@ } }, { - "id": 2054, + "id": 2056, "name": "error", "variant": "declaration", "kind": 1024, @@ -66444,13 +67881,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -66459,13 +67896,13 @@ "groups": [ { "title": "Properties", - "children": [2053, 2054] + "children": [2055, 2056] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66474,14 +67911,14 @@ { "type": "reflection", "declaration": { - "id": 2055, + "id": 2057, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2056, + "id": 2058, "name": "data", "variant": "declaration", "kind": 1024, @@ -66489,7 +67926,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], @@ -66524,7 +67961,7 @@ } }, { - "id": 2057, + "id": 2059, "name": "error", "variant": "declaration", "kind": 1024, @@ -66532,7 +67969,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -66545,13 +67982,13 @@ "groups": [ { "title": "Properties", - "children": [2056, 2057] + "children": [2058, 2059] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 51 } ] @@ -66565,7 +68002,7 @@ } }, { - "id": 2058, + "id": 2060, "name": "challenge", "variant": "signature", "kind": 4096, @@ -66573,20 +68010,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1168, + "line": 1157, "character": 4 } ], "parameters": [ { - "id": 2059, + "id": 2061, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1992, + "target": 1994, "name": "MFAChallengeParams", "package": "@supabase/auth-js" } @@ -66601,7 +68038,7 @@ "typeArguments": [ { "type": "reference", - "target": 2011, + "target": 2013, "name": "AuthMFAChallengeResponse", "package": "@supabase/auth-js" } @@ -66613,7 +68050,7 @@ ] }, { - "id": 2072, + "id": 2074, "name": "challengeAndVerify", "variant": "declaration", "kind": 2048, @@ -66621,13 +68058,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1357, + "line": 1346, "character": 4 } ], "signatures": [ { - "id": 2073, + "id": 2075, "name": "challengeAndVerify", "variant": "signature", "kind": 4096, @@ -66719,13 +68156,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1357, + "line": 1346, "character": 4 } ], "parameters": [ { - "id": 2074, + "id": 2076, "name": "params", "variant": "param", "kind": 32768, @@ -66750,7 +68187,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -66762,7 +68199,7 @@ ] }, { - "id": 2024, + "id": 2026, "name": "enroll", "variant": "declaration", "kind": 2048, @@ -66770,28 +68207,28 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1092, + "line": 1081, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1093, + "line": 1082, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1094, + "line": 1083, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1095, + "line": 1084, "character": 4 } ], "signatures": [ { - "id": 2025, + "id": 2027, "name": "enroll", "variant": "signature", "kind": 4096, @@ -66986,20 +68423,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1092, + "line": 1081, "character": 4 } ], "parameters": [ { - "id": 2026, + "id": 2028, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2122, + "target": 2124, "name": "MFAEnrollTOTPParams", "package": "@supabase/auth-js" } @@ -67014,7 +68451,7 @@ "typeArguments": [ { "type": "reference", - "target": 2125, + "target": 2127, "name": "AuthMFAEnrollTOTPResponse", "package": "@supabase/auth-js" } @@ -67024,7 +68461,7 @@ } }, { - "id": 2027, + "id": 2029, "name": "enroll", "variant": "signature", "kind": 4096, @@ -67032,20 +68469,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1093, + "line": 1082, "character": 4 } ], "parameters": [ { - "id": 2028, + "id": 2030, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 2123, + "target": 2125, "name": "MFAEnrollPhoneParams", "package": "@supabase/auth-js" } @@ -67060,7 +68497,7 @@ "typeArguments": [ { "type": "reference", - "target": 2126, + "target": 2128, "name": "AuthMFAEnrollPhoneResponse", "package": "@supabase/auth-js" } @@ -67070,7 +68507,7 @@ } }, { - "id": 2029, + "id": 2031, "name": "enroll", "variant": "signature", "kind": 4096, @@ -67078,13 +68515,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1094, + "line": 1083, "character": 4 } ], "parameters": [ { - "id": 2030, + "id": 2032, "name": "params", "variant": "param", "kind": 32768, @@ -67109,7 +68546,7 @@ "typeArguments": [ { "type": "reference", - "target": 2127, + "target": 2129, "name": "AuthMFAEnrollWebauthnResponse", "package": "@supabase/auth-js" } @@ -67119,7 +68556,7 @@ } }, { - "id": 2031, + "id": 2033, "name": "enroll", "variant": "signature", "kind": 4096, @@ -67127,20 +68564,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1095, + "line": 1084, "character": 4 } ], "parameters": [ { - "id": 2032, + "id": 2034, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1975, + "target": 1977, "name": "MFAEnrollParams", "package": "@supabase/auth-js" } @@ -67155,7 +68592,7 @@ "typeArguments": [ { "type": "reference", - "target": 2002, + "target": 2004, "name": "AuthMFAEnrollResponse", "package": "@supabase/auth-js" } @@ -67167,7 +68604,7 @@ ] }, { - "id": 2077, + "id": 2079, "name": "getAuthenticatorAssuranceLevel", "variant": "declaration", "kind": 2048, @@ -67175,13 +68612,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1422, + "line": 1411, "character": 4 } ], "signatures": [ { - "id": 2078, + "id": 2080, "name": "getAuthenticatorAssuranceLevel", "variant": "signature", "kind": 4096, @@ -67331,13 +68768,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1422, + "line": 1411, "character": 4 } ], "parameters": [ { - "id": 2079, + "id": 2081, "name": "jwt", "variant": "param", "kind": 32768, @@ -67367,7 +68804,7 @@ "typeArguments": [ { "type": "reference", - "target": 2018, + "target": 2020, "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse", "package": "@supabase/auth-js" } @@ -67379,7 +68816,7 @@ ] }, { - "id": 2075, + "id": 2077, "name": "listFactors", "variant": "declaration", "kind": 2048, @@ -67387,13 +68824,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1369, + "line": 1358, "character": 4 } ], "signatures": [ { - "id": 2076, + "id": 2078, "name": "listFactors", "variant": "signature", "kind": 4096, @@ -67417,7 +68854,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#enroll", - "target": 2024 + "target": 2026 }, { "kind": "text", @@ -67431,7 +68868,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel", - "target": 2077 + "target": 2079 }, { "kind": "text", @@ -67476,7 +68913,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1369, + "line": 1358, "character": 4 } ], @@ -67489,7 +68926,7 @@ "typeArguments": [ { "type": "reference", - "target": 2012, + "target": 2014, "typeArguments": [ { "type": "typeOperator", @@ -67524,7 +68961,7 @@ ] }, { - "id": 2069, + "id": 2071, "name": "unenroll", "variant": "declaration", "kind": 2048, @@ -67532,13 +68969,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1276, + "line": 1265, "character": 4 } ], "signatures": [ { - "id": 2070, + "id": 2072, "name": "unenroll", "variant": "signature", "kind": 4096, @@ -67613,20 +69050,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1276, + "line": 1265, "character": 4 } ], "parameters": [ { - "id": 2071, + "id": 2073, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1976, + "target": 1978, "name": "MFAUnenrollParams", "package": "@supabase/auth-js" } @@ -67641,7 +69078,7 @@ "typeArguments": [ { "type": "reference", - "target": 2003, + "target": 2005, "name": "AuthMFAUnenrollResponse", "package": "@supabase/auth-js" } @@ -67653,7 +69090,7 @@ ] }, { - "id": 2060, + "id": 2062, "name": "verify", "variant": "declaration", "kind": 2048, @@ -67661,28 +69098,28 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1248, + "line": 1237, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1249, + "line": 1238, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1250, + "line": 1239, "character": 4 }, { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1251, + "line": 1240, "character": 4 } ], "signatures": [ { - "id": 2061, + "id": 2063, "name": "verify", "variant": "signature", "kind": 4096, @@ -67750,20 +69187,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1248, + "line": 1237, "character": 4 } ], "parameters": [ { - "id": 2062, + "id": 2064, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1979, + "target": 1981, "name": "MFAVerifyTOTPParams", "package": "@supabase/auth-js" } @@ -67778,7 +69215,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67788,7 +69225,7 @@ } }, { - "id": 2063, + "id": 2065, "name": "verify", "variant": "signature", "kind": 4096, @@ -67796,20 +69233,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1249, + "line": 1238, "character": 4 } ], "parameters": [ { - "id": 2064, + "id": 2066, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1980, + "target": 1982, "name": "MFAVerifyPhoneParams", "package": "@supabase/auth-js" } @@ -67824,7 +69261,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67834,7 +69271,7 @@ } }, { - "id": 2065, + "id": 2067, "name": "verify", "variant": "signature", "kind": 4096, @@ -67842,20 +69279,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1250, + "line": 1239, "character": 4 } ], "parameters": [ { - "id": 2066, + "id": 2068, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1985, + "target": 1987, "name": "MFAVerifyWebauthnParams", "package": "@supabase/auth-js" } @@ -67870,7 +69307,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67880,7 +69317,7 @@ } }, { - "id": 2067, + "id": 2069, "name": "verify", "variant": "signature", "kind": 4096, @@ -67888,20 +69325,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1251, + "line": 1240, "character": 4 } ], "parameters": [ { - "id": 2068, + "id": 2070, "name": "params", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1987, + "target": 1989, "name": "MFAVerifyParams", "package": "@supabase/auth-js" } @@ -67916,7 +69353,7 @@ "typeArguments": [ { "type": "reference", - "target": 2001, + "target": 2003, "name": "AuthMFAVerifyResponse", "package": "@supabase/auth-js" } @@ -67931,40 +69368,40 @@ "groups": [ { "title": "Properties", - "children": [2080] + "children": [2082] }, { "title": "Methods", - "children": [2033, 2072, 2024, 2077, 2075, 2069, 2060] + "children": [2035, 2074, 2026, 2079, 2077, 2071, 2062] } ], "categories": [ { "title": "Auth", - "children": [2033, 2072, 2024, 2077, 2075, 2069, 2060] + "children": [2035, 2074, 2026, 2079, 2077, 2071, 2062] }, { "title": "Other", - "children": [2080] + "children": [2082] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1010, + "line": 999, "character": 17 } ] }, { - "id": 2164, + "id": 2166, "name": "JWK", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2168, + "id": 2170, "name": "alg", "variant": "declaration", "kind": 1024, @@ -67974,7 +69411,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1672, + "line": 1661, "character": 4 } ], @@ -67984,7 +69421,7 @@ } }, { - "id": 2167, + "id": 2169, "name": "key_ops", "variant": "declaration", "kind": 1024, @@ -67992,7 +69429,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1671, + "line": 1660, "character": 4 } ], @@ -68005,7 +69442,7 @@ } }, { - "id": 2169, + "id": 2171, "name": "kid", "variant": "declaration", "kind": 1024, @@ -68015,7 +69452,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1673, + "line": 1662, "character": 4 } ], @@ -68025,7 +69462,7 @@ } }, { - "id": 2165, + "id": 2167, "name": "kty", "variant": "declaration", "kind": 1024, @@ -68033,7 +69470,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1670, + "line": 1659, "character": 4 } ], @@ -68050,7 +69487,7 @@ { "type": "reflection", "declaration": { - "id": 2166, + "id": 2168, "name": "__type", "variant": "declaration", "kind": 65536, @@ -68078,19 +69515,19 @@ "groups": [ { "title": "Properties", - "children": [2168, 2167, 2169, 2165] + "children": [2170, 2169, 2171, 2167] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1669, + "line": 1658, "character": 17 } ], "indexSignatures": [ { - "id": 2170, + "id": 2172, "name": "__index", "variant": "signature", "kind": 8192, @@ -68098,13 +69535,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1674, + "line": 1663, "character": 4 } ], "parameters": [ { - "id": 2171, + "id": 2173, "name": "key", "variant": "param", "kind": 32768, @@ -68123,7 +69560,7 @@ ] }, { - "id": 2144, + "id": 2146, "name": "JwtPayload", "variant": "declaration", "kind": 256, @@ -68149,7 +69586,7 @@ }, "children": [ { - "id": 2160, + "id": 2162, "name": "aal", "variant": "declaration", "kind": 1024, @@ -68159,13 +69596,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1640, + "line": 1629, "character": 4 } ], "type": { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" }, @@ -68176,7 +69613,7 @@ } }, { - "id": 2152, + "id": 2154, "name": "amr", "variant": "declaration", "kind": 1024, @@ -68194,7 +69631,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1665, + "line": 1654, "character": 4 } ], @@ -68212,7 +69649,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1705, + "target": 1707, "name": "AMREntry", "package": "@supabase/auth-js" } @@ -68221,7 +69658,7 @@ } }, { - "id": 2150, + "id": 2152, "name": "app_metadata", "variant": "declaration", "kind": 1024, @@ -68231,19 +69668,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1657, + "line": 1646, "character": 4 } ], "type": { "type": "reference", - "target": 1732, + "target": 1734, "name": "UserAppMetadata", "package": "@supabase/auth-js" } }, { - "id": 2156, + "id": 2158, "name": "aud", "variant": "declaration", "kind": 1024, @@ -68253,7 +69690,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1636, + "line": 1625, "character": 4 } ], @@ -68280,7 +69717,7 @@ } }, { - "id": 2145, + "id": 2147, "name": "email", "variant": "declaration", "kind": 1024, @@ -68290,7 +69727,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1652, + "line": 1641, "character": 4 } ], @@ -68300,7 +69737,7 @@ } }, { - "id": 2157, + "id": 2159, "name": "exp", "variant": "declaration", "kind": 1024, @@ -68310,7 +69747,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1637, + "line": 1626, "character": 4 } ], @@ -68325,7 +69762,7 @@ } }, { - "id": 2158, + "id": 2160, "name": "iat", "variant": "declaration", "kind": 1024, @@ -68335,7 +69772,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1638, + "line": 1627, "character": 4 } ], @@ -68350,7 +69787,7 @@ } }, { - "id": 2147, + "id": 2149, "name": "is_anonymous", "variant": "declaration", "kind": 1024, @@ -68360,7 +69797,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1654, + "line": 1643, "character": 4 } ], @@ -68370,7 +69807,7 @@ } }, { - "id": 2154, + "id": 2156, "name": "iss", "variant": "declaration", "kind": 1024, @@ -68380,7 +69817,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1634, + "line": 1623, "character": 4 } ], @@ -68395,7 +69832,7 @@ } }, { - "id": 2148, + "id": 2150, "name": "jti", "variant": "declaration", "kind": 1024, @@ -68405,7 +69842,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1655, + "line": 1644, "character": 4 } ], @@ -68415,7 +69852,7 @@ } }, { - "id": 2149, + "id": 2151, "name": "nbf", "variant": "declaration", "kind": 1024, @@ -68425,7 +69862,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1656, + "line": 1645, "character": 4 } ], @@ -68435,7 +69872,7 @@ } }, { - "id": 2146, + "id": 2148, "name": "phone", "variant": "declaration", "kind": 1024, @@ -68445,7 +69882,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1653, + "line": 1642, "character": 4 } ], @@ -68455,7 +69892,7 @@ } }, { - "id": 2153, + "id": 2155, "name": "ref", "variant": "declaration", "kind": 1024, @@ -68465,7 +69902,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1666, + "line": 1655, "character": 4 } ], @@ -68475,7 +69912,7 @@ } }, { - "id": 2159, + "id": 2161, "name": "role", "variant": "declaration", "kind": 1024, @@ -68485,7 +69922,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1639, + "line": 1628, "character": 4 } ], @@ -68500,7 +69937,7 @@ } }, { - "id": 2161, + "id": 2163, "name": "session_id", "variant": "declaration", "kind": 1024, @@ -68510,7 +69947,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1641, + "line": 1630, "character": 4 } ], @@ -68525,7 +69962,7 @@ } }, { - "id": 2155, + "id": 2157, "name": "sub", "variant": "declaration", "kind": 1024, @@ -68535,7 +69972,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1635, + "line": 1624, "character": 4 } ], @@ -68550,7 +69987,7 @@ } }, { - "id": 2151, + "id": 2153, "name": "user_metadata", "variant": "declaration", "kind": 1024, @@ -68560,13 +69997,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1658, + "line": 1647, "character": 4 } ], "type": { "type": "reference", - "target": 1737, + "target": 1739, "name": "UserMetadata", "package": "@supabase/auth-js" } @@ -68576,21 +70013,21 @@ { "title": "Properties", "children": [ - 2160, 2152, 2150, 2156, 2145, 2157, 2158, 2147, 2154, 2148, 2149, 2146, 2153, 2159, - 2161, 2155, 2151 + 2162, 2154, 2152, 2158, 2147, 2159, 2160, 2149, 2156, 2150, 2151, 2148, 2155, 2161, + 2163, 2157, 2153 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1651, + "line": 1640, "character": 17 } ], "indexSignatures": [ { - "id": 2162, + "id": 2164, "name": "__index", "variant": "signature", "kind": 8192, @@ -68598,13 +70035,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1667, + "line": 1656, "character": 4 } ], "parameters": [ { - "id": 2163, + "id": 2165, "name": "key", "variant": "param", "kind": 32768, @@ -68624,21 +70061,21 @@ "extendedTypes": [ { "type": "reference", - "target": 2134, + "target": 2136, "name": "RequiredClaims", "package": "@supabase/auth-js" } ] }, { - "id": 1762, + "id": 1764, "name": "Subscription", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1764, + "id": 1766, "name": "callback", "variant": "declaration", "kind": 1024, @@ -68654,14 +70091,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 500, + "line": 489, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1765, + "id": 1767, "name": "__type", "variant": "declaration", "kind": 65536, @@ -68669,13 +70106,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 500, + "line": 489, "character": 14 } ], "signatures": [ { - "id": 1766, + "id": 1768, "name": "__type", "variant": "signature", "kind": 4096, @@ -68683,26 +70120,26 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 500, + "line": 489, "character": 14 } ], "parameters": [ { - "id": 1767, + "id": 1769, "name": "event", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 1587, + "target": 1589, "name": "AuthChangeEvent", "package": "@supabase/auth-js" } }, { - "id": 1768, + "id": 1770, "name": "session", "variant": "param", "kind": 32768, @@ -68734,7 +70171,7 @@ } }, { - "id": 1763, + "id": 1765, "name": "id", "variant": "declaration", "kind": 1024, @@ -68750,7 +70187,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 496, + "line": 485, "character": 4 } ], @@ -68769,7 +70206,7 @@ } }, { - "id": 1769, + "id": 1771, "name": "unsubscribe", "variant": "declaration", "kind": 1024, @@ -68785,14 +70222,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 504, + "line": 493, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1770, + "id": 1772, "name": "__type", "variant": "declaration", "kind": 65536, @@ -68800,13 +70237,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 504, + "line": 493, "character": 17 } ], "signatures": [ { - "id": 1771, + "id": 1773, "name": "__type", "variant": "signature", "kind": 4096, @@ -68814,7 +70251,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 504, + "line": 493, "character": 17 } ], @@ -68831,13 +70268,13 @@ "groups": [ { "title": "Properties", - "children": [1764, 1763, 1769] + "children": [1766, 1765, 1771] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 490, + "line": 479, "character": 17 } ] @@ -69015,7 +70452,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L71" } ], "type": { @@ -69097,7 +70534,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L93" } ], "type": { @@ -69117,19 +70554,19 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 53, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L53" } ] }, { - "id": 1732, + "id": 1734, "name": "UserAppMetadata", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1733, + "id": 1735, "name": "provider", "variant": "declaration", "kind": 1024, @@ -69147,7 +70584,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 350, + "line": 339, "character": 4 } ], @@ -69157,7 +70594,7 @@ } }, { - "id": 1734, + "id": 1736, "name": "providers", "variant": "declaration", "kind": 1024, @@ -69175,7 +70612,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 354, + "line": 343, "character": 4 } ], @@ -69191,19 +70628,19 @@ "groups": [ { "title": "Properties", - "children": [1733, 1734] + "children": [1735, 1736] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 346, + "line": 335, "character": 17 } ], "indexSignatures": [ { - "id": 1735, + "id": 1737, "name": "__index", "variant": "signature", "kind": 8192, @@ -69211,13 +70648,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 355, + "line": 344, "character": 4 } ], "parameters": [ { - "id": 1736, + "id": 1738, "name": "key", "variant": "param", "kind": 32768, @@ -69236,14 +70673,14 @@ ] }, { - "id": 1741, + "id": 1743, "name": "UserAttributes", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1742, + "id": 1744, "name": "current_password", "variant": "declaration", "kind": 1024, @@ -69261,7 +70698,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 396, + "line": 385, "character": 4 } ], @@ -69271,7 +70708,7 @@ } }, { - "id": 1747, + "id": 1749, "name": "data", "variant": "declaration", "kind": 1024, @@ -69305,7 +70742,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 421, + "line": 410, "character": 4 } ], @@ -69315,7 +70752,7 @@ } }, { - "id": 1743, + "id": 1745, "name": "email", "variant": "declaration", "kind": 1024, @@ -69333,7 +70770,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 400, + "line": 389, "character": 4 } ], @@ -69343,7 +70780,7 @@ } }, { - "id": 1746, + "id": 1748, "name": "nonce", "variant": "declaration", "kind": 1024, @@ -69361,7 +70798,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 414, + "line": 403, "character": 4 } ], @@ -69371,7 +70808,7 @@ } }, { - "id": 1745, + "id": 1747, "name": "password", "variant": "declaration", "kind": 1024, @@ -69389,7 +70826,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 408, + "line": 397, "character": 4 } ], @@ -69399,7 +70836,7 @@ } }, { - "id": 1744, + "id": 1746, "name": "phone", "variant": "declaration", "kind": 1024, @@ -69417,7 +70854,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 404, + "line": 393, "character": 4 } ], @@ -69430,26 +70867,26 @@ "groups": [ { "title": "Properties", - "children": [1742, 1747, 1743, 1746, 1745, 1744] + "children": [1744, 1749, 1745, 1748, 1747, 1746] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 388, + "line": 377, "character": 17 } ] }, { - "id": 1708, + "id": 1710, "name": "UserIdentity", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1717, + "id": 1719, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -69459,7 +70896,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 308, + "line": 297, "character": 4 } ], @@ -69469,7 +70906,7 @@ } }, { - "id": 1709, + "id": 1711, "name": "id", "variant": "declaration", "kind": 1024, @@ -69477,7 +70914,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 301, + "line": 290, "character": 4 } ], @@ -69487,7 +70924,7 @@ } }, { - "id": 1711, + "id": 1713, "name": "identity_data", "variant": "declaration", "kind": 1024, @@ -69497,14 +70934,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 303, + "line": 292, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1712, + "id": 1714, "name": "__type", "variant": "declaration", "kind": 65536, @@ -69512,13 +70949,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 303, + "line": 292, "character": 20 } ], "indexSignatures": [ { - "id": 1713, + "id": 1715, "name": "__index", "variant": "signature", "kind": 8192, @@ -69526,13 +70963,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 304, + "line": 293, "character": 8 } ], "parameters": [ { - "id": 1714, + "id": 1716, "name": "key", "variant": "param", "kind": 32768, @@ -69553,7 +70990,7 @@ } }, { - "id": 1715, + "id": 1717, "name": "identity_id", "variant": "declaration", "kind": 1024, @@ -69561,7 +70998,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 306, + "line": 295, "character": 4 } ], @@ -69571,7 +71008,7 @@ } }, { - "id": 1718, + "id": 1720, "name": "last_sign_in_at", "variant": "declaration", "kind": 1024, @@ -69581,7 +71018,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 309, + "line": 298, "character": 4 } ], @@ -69591,7 +71028,7 @@ } }, { - "id": 1716, + "id": 1718, "name": "provider", "variant": "declaration", "kind": 1024, @@ -69599,7 +71036,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 307, + "line": 296, "character": 4 } ], @@ -69609,7 +71046,7 @@ } }, { - "id": 1719, + "id": 1721, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -69619,7 +71056,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 310, + "line": 299, "character": 4 } ], @@ -69629,7 +71066,7 @@ } }, { - "id": 1710, + "id": 1712, "name": "user_id", "variant": "declaration", "kind": 1024, @@ -69637,7 +71074,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 302, + "line": 291, "character": 4 } ], @@ -69650,19 +71087,19 @@ "groups": [ { "title": "Properties", - "children": [1717, 1709, 1711, 1715, 1718, 1716, 1719, 1710] + "children": [1719, 1711, 1713, 1717, 1720, 1718, 1721, 1712] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 300, + "line": 289, "character": 17 } ] }, { - "id": 1737, + "id": 1739, "name": "UserMetadata", "variant": "declaration", "kind": 256, @@ -69670,13 +71107,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 357, + "line": 346, "character": 17 } ], "indexSignatures": [ { - "id": 1738, + "id": 1740, "name": "__index", "variant": "signature", "kind": 8192, @@ -69684,13 +71121,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 358, + "line": 347, "character": 4 } ], "parameters": [ { - "id": 1739, + "id": 1741, "name": "key", "variant": "param", "kind": 32768, @@ -69709,14 +71146,14 @@ ] }, { - "id": 1893, + "id": 1895, "name": "VerifyEmailOtpParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1894, + "id": 1896, "name": "email", "variant": "declaration", "kind": 1024, @@ -69732,7 +71169,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 682, + "line": 671, "character": 4 } ], @@ -69742,7 +71179,7 @@ } }, { - "id": 1897, + "id": 1899, "name": "options", "variant": "declaration", "kind": 1024, @@ -69752,21 +71189,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 687, + "line": 676, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1898, + "id": 1900, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1900, + "id": 1902, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -69790,7 +71227,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 694, + "line": 683, "character": 8 } ], @@ -69800,7 +71237,7 @@ } }, { - "id": 1899, + "id": 1901, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -69818,7 +71255,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 689, + "line": 678, "character": 8 } ], @@ -69831,13 +71268,13 @@ "groups": [ { "title": "Properties", - "children": [1900, 1899] + "children": [1902, 1901] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 687, + "line": 676, "character": 14 } ] @@ -69845,7 +71282,7 @@ } }, { - "id": 1895, + "id": 1897, "name": "token", "variant": "declaration", "kind": 1024, @@ -69861,7 +71298,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 684, + "line": 673, "character": 4 } ], @@ -69871,7 +71308,7 @@ } }, { - "id": 1896, + "id": 1898, "name": "type", "variant": "declaration", "kind": 1024, @@ -69887,13 +71324,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 686, + "line": 675, "character": 4 } ], "type": { "type": "reference", - "target": 1906, + "target": 1908, "name": "EmailOtpType", "package": "@supabase/auth-js" } @@ -69902,26 +71339,26 @@ "groups": [ { "title": "Properties", - "children": [1894, 1897, 1895, 1896] + "children": [1896, 1899, 1897, 1898] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 680, + "line": 669, "character": 17 } ] }, { - "id": 1885, + "id": 1887, "name": "VerifyMobileOtpParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1889, + "id": 1891, "name": "options", "variant": "declaration", "kind": 1024, @@ -69931,21 +71368,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 669, + "line": 658, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1890, + "id": 1892, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1892, + "id": 1894, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -69969,7 +71406,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 677, + "line": 666, "character": 8 } ], @@ -69979,7 +71416,7 @@ } }, { - "id": 1891, + "id": 1893, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -69997,7 +71434,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 671, + "line": 660, "character": 8 } ], @@ -70010,13 +71447,13 @@ "groups": [ { "title": "Properties", - "children": [1892, 1891] + "children": [1894, 1893] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 669, + "line": 658, "character": 14 } ] @@ -70024,7 +71461,7 @@ } }, { - "id": 1886, + "id": 1888, "name": "phone", "variant": "declaration", "kind": 1024, @@ -70040,7 +71477,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 664, + "line": 653, "character": 4 } ], @@ -70050,7 +71487,7 @@ } }, { - "id": 1887, + "id": 1889, "name": "token", "variant": "declaration", "kind": 1024, @@ -70066,7 +71503,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 666, + "line": 655, "character": 4 } ], @@ -70076,7 +71513,7 @@ } }, { - "id": 1888, + "id": 1890, "name": "type", "variant": "declaration", "kind": 1024, @@ -70092,13 +71529,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 668, + "line": 657, "character": 4 } ], "type": { "type": "reference", - "target": 1904, + "target": 1906, "name": "MobileOtpType", "package": "@supabase/auth-js" } @@ -70107,26 +71544,26 @@ "groups": [ { "title": "Properties", - "children": [1889, 1886, 1887, 1888] + "children": [1891, 1888, 1889, 1890] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 662, + "line": 651, "character": 17 } ] }, { - "id": 1901, + "id": 1903, "name": "VerifyTokenHashParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1902, + "id": 1904, "name": "token_hash", "variant": "declaration", "kind": 1024, @@ -70142,7 +71579,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 699, + "line": 688, "character": 4 } ], @@ -70152,7 +71589,7 @@ } }, { - "id": 1903, + "id": 1905, "name": "type", "variant": "declaration", "kind": 1024, @@ -70168,13 +71605,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 701, + "line": 690, "character": 4 } ], "type": { "type": "reference", - "target": 1906, + "target": 1908, "name": "EmailOtpType", "package": "@supabase/auth-js" } @@ -70183,26 +71620,26 @@ "groups": [ { "title": "Properties", - "children": [1902, 1903] + "children": [1904, 1905] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 697, + "line": 686, "character": 17 } ] }, { - "id": 3409, + "id": 3431, "name": "WebSocketLike", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3452, + "id": 3474, "name": "binaryType", "variant": "declaration", "kind": 1024, @@ -70222,7 +71659,7 @@ } }, { - "id": 3453, + "id": 3475, "name": "bufferedAmount", "variant": "declaration", "kind": 1024, @@ -70242,7 +71679,7 @@ } }, { - "id": 3413, + "id": 3435, "name": "CLOSED", "variant": "declaration", "kind": 1024, @@ -70262,7 +71699,7 @@ } }, { - "id": 3412, + "id": 3434, "name": "CLOSING", "variant": "declaration", "kind": 1024, @@ -70282,7 +71719,7 @@ } }, { - "id": 3410, + "id": 3432, "name": "CONNECTING", "variant": "declaration", "kind": 1024, @@ -70302,7 +71739,7 @@ } }, { - "id": 3455, + "id": 3477, "name": "dispatchEvent", "variant": "declaration", "kind": 1024, @@ -70319,7 +71756,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3456, + "id": 3478, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70333,7 +71770,7 @@ ], "signatures": [ { - "id": 3457, + "id": 3479, "name": "__type", "variant": "signature", "kind": 4096, @@ -70347,7 +71784,7 @@ ], "parameters": [ { - "id": 3458, + "id": 3480, "name": "event", "variant": "param", "kind": 32768, @@ -70373,7 +71810,7 @@ } }, { - "id": 3454, + "id": 3476, "name": "extensions", "variant": "declaration", "kind": 1024, @@ -70393,7 +71830,7 @@ } }, { - "id": 3434, + "id": 3456, "name": "onclose", "variant": "declaration", "kind": 1024, @@ -70415,7 +71852,7 @@ { "type": "reflection", "declaration": { - "id": 3435, + "id": 3457, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70429,7 +71866,7 @@ ], "signatures": [ { - "id": 3436, + "id": 3458, "name": "__type", "variant": "signature", "kind": 4096, @@ -70443,7 +71880,7 @@ ], "parameters": [ { - "id": 3437, + "id": 3459, "name": "this", "variant": "param", "kind": 32768, @@ -70454,7 +71891,7 @@ } }, { - "id": 3438, + "id": 3460, "name": "ev", "variant": "param", "kind": 32768, @@ -70482,7 +71919,7 @@ } }, { - "id": 3439, + "id": 3461, "name": "onerror", "variant": "declaration", "kind": 1024, @@ -70504,7 +71941,7 @@ { "type": "reflection", "declaration": { - "id": 3440, + "id": 3462, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70518,7 +71955,7 @@ ], "signatures": [ { - "id": 3441, + "id": 3463, "name": "__type", "variant": "signature", "kind": 4096, @@ -70532,7 +71969,7 @@ ], "parameters": [ { - "id": 3442, + "id": 3464, "name": "this", "variant": "param", "kind": 32768, @@ -70543,7 +71980,7 @@ } }, { - "id": 3443, + "id": 3465, "name": "ev", "variant": "param", "kind": 32768, @@ -70571,7 +72008,7 @@ } }, { - "id": 3429, + "id": 3451, "name": "onmessage", "variant": "declaration", "kind": 1024, @@ -70593,7 +72030,7 @@ { "type": "reflection", "declaration": { - "id": 3430, + "id": 3452, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70607,7 +72044,7 @@ ], "signatures": [ { - "id": 3431, + "id": 3453, "name": "__type", "variant": "signature", "kind": 4096, @@ -70621,7 +72058,7 @@ ], "parameters": [ { - "id": 3432, + "id": 3454, "name": "this", "variant": "param", "kind": 32768, @@ -70632,7 +72069,7 @@ } }, { - "id": 3433, + "id": 3455, "name": "ev", "variant": "param", "kind": 32768, @@ -70660,7 +72097,7 @@ } }, { - "id": 3424, + "id": 3446, "name": "onopen", "variant": "declaration", "kind": 1024, @@ -70682,7 +72119,7 @@ { "type": "reflection", "declaration": { - "id": 3425, + "id": 3447, "name": "__type", "variant": "declaration", "kind": 65536, @@ -70696,7 +72133,7 @@ ], "signatures": [ { - "id": 3426, + "id": 3448, "name": "__type", "variant": "signature", "kind": 4096, @@ -70710,7 +72147,7 @@ ], "parameters": [ { - "id": 3427, + "id": 3449, "name": "this", "variant": "param", "kind": 32768, @@ -70721,7 +72158,7 @@ } }, { - "id": 3428, + "id": 3450, "name": "ev", "variant": "param", "kind": 32768, @@ -70749,7 +72186,7 @@ } }, { - "id": 3411, + "id": 3433, "name": "OPEN", "variant": "declaration", "kind": 1024, @@ -70769,7 +72206,7 @@ } }, { - "id": 3416, + "id": 3438, "name": "protocol", "variant": "declaration", "kind": 1024, @@ -70789,7 +72226,7 @@ } }, { - "id": 3414, + "id": 3436, "name": "readyState", "variant": "declaration", "kind": 1024, @@ -70809,7 +72246,7 @@ } }, { - "id": 3415, + "id": 3437, "name": "url", "variant": "declaration", "kind": 1024, @@ -70829,7 +72266,7 @@ } }, { - "id": 3444, + "id": 3466, "name": "addEventListener", "variant": "declaration", "kind": 2048, @@ -70843,7 +72280,7 @@ ], "signatures": [ { - "id": 3445, + "id": 3467, "name": "addEventListener", "variant": "signature", "kind": 4096, @@ -70865,7 +72302,7 @@ ], "parameters": [ { - "id": 3446, + "id": 3468, "name": "type", "variant": "param", "kind": 32768, @@ -70876,7 +72313,7 @@ } }, { - "id": 3447, + "id": 3469, "name": "listener", "variant": "param", "kind": 32768, @@ -70900,7 +72337,7 @@ ] }, { - "id": 3417, + "id": 3439, "name": "close", "variant": "declaration", "kind": 2048, @@ -70914,7 +72351,7 @@ ], "signatures": [ { - "id": 3418, + "id": 3440, "name": "close", "variant": "signature", "kind": 4096, @@ -70936,7 +72373,7 @@ ], "parameters": [ { - "id": 3419, + "id": 3441, "name": "code", "variant": "param", "kind": 32768, @@ -70949,7 +72386,7 @@ } }, { - "id": 3420, + "id": 3442, "name": "reason", "variant": "param", "kind": 32768, @@ -70970,7 +72407,7 @@ ] }, { - "id": 3448, + "id": 3470, "name": "removeEventListener", "variant": "declaration", "kind": 2048, @@ -70984,7 +72421,7 @@ ], "signatures": [ { - "id": 3449, + "id": 3471, "name": "removeEventListener", "variant": "signature", "kind": 4096, @@ -71006,7 +72443,7 @@ ], "parameters": [ { - "id": 3450, + "id": 3472, "name": "type", "variant": "param", "kind": 32768, @@ -71017,7 +72454,7 @@ } }, { - "id": 3451, + "id": 3473, "name": "listener", "variant": "param", "kind": 32768, @@ -71041,7 +72478,7 @@ ] }, { - "id": 3421, + "id": 3443, "name": "send", "variant": "declaration", "kind": 2048, @@ -71055,7 +72492,7 @@ ], "signatures": [ { - "id": 3422, + "id": 3444, "name": "send", "variant": "signature", "kind": 4096, @@ -71077,7 +72514,7 @@ ], "parameters": [ { - "id": 3423, + "id": 3445, "name": "data", "variant": "param", "kind": 32768, @@ -71143,13 +72580,13 @@ { "title": "Properties", "children": [ - 3452, 3453, 3413, 3412, 3410, 3455, 3454, 3434, 3439, 3429, 3424, 3411, 3416, 3414, - 3415 + 3474, 3475, 3435, 3434, 3432, 3477, 3476, 3456, 3461, 3451, 3446, 3433, 3438, 3436, + 3437 ] }, { "title": "Methods", - "children": [3444, 3417, 3448, 3421] + "children": [3466, 3439, 3470, 3443] } ], "sources": [ @@ -71161,7 +72598,7 @@ ] }, { - "id": 3459, + "id": 3481, "name": "WebSocketLikeConstructor", "variant": "declaration", "kind": 256, @@ -71184,7 +72621,7 @@ }, "children": [ { - "id": 3460, + "id": 3482, "name": "constructor", "variant": "declaration", "kind": 512, @@ -71198,7 +72635,7 @@ ], "signatures": [ { - "id": 3461, + "id": 3483, "name": "WebSocketLikeConstructor", "variant": "signature", "kind": 16384, @@ -71212,7 +72649,7 @@ ], "parameters": [ { - "id": 3462, + "id": 3484, "name": "address", "variant": "param", "kind": 32768, @@ -71237,7 +72674,7 @@ } }, { - "id": 3463, + "id": 3485, "name": "subprotocols", "variant": "param", "kind": 32768, @@ -71264,7 +72701,7 @@ ], "type": { "type": "reference", - "target": 3409, + "target": 3431, "name": "WebSocketLike", "package": "@supabase/realtime-js" } @@ -71275,7 +72712,7 @@ "groups": [ { "title": "Constructors", - "children": [3460] + "children": [3482] } ], "sources": [ @@ -71287,7 +72724,7 @@ ], "indexSignatures": [ { - "id": 3464, + "id": 3486, "name": "__index", "variant": "signature", "kind": 8192, @@ -71301,7 +72738,7 @@ ], "parameters": [ { - "id": 3465, + "id": 3487, "name": "key", "variant": "param", "kind": 32768, @@ -71320,7 +72757,7 @@ ] }, { - "id": 1703, + "id": 1705, "name": "AMRMethod", "variant": "declaration", "kind": 2097152, @@ -71328,7 +72765,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 278, + "line": 267, "character": 12 } ], @@ -71365,7 +72802,7 @@ { "type": "reflection", "declaration": { - "id": 1704, + "id": 1706, "name": "__type", "variant": "declaration", "kind": 65536, @@ -71373,7 +72810,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 278, + "line": 267, "character": 64 } ] @@ -71385,7 +72822,7 @@ } }, { - "id": 1587, + "id": 1589, "name": "AuthChangeEvent", "variant": "declaration", "kind": 2097152, @@ -71426,7 +72863,7 @@ }, { "type": "reference", - "target": 1586, + "target": 1588, "name": "AuthChangeEventMFA", "package": "@supabase/auth-js" } @@ -71434,7 +72871,7 @@ } }, { - "id": 1586, + "id": 1588, "name": "AuthChangeEventMFA", "variant": "declaration", "kind": 2097152, @@ -71452,7 +72889,7 @@ } }, { - "id": 2016, + "id": 2018, "name": "AuthenticatorAssuranceLevels", "variant": "declaration", "kind": 2097152, @@ -71460,7 +72897,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 984, + "line": 973, "character": 12 } ], @@ -71485,7 +72922,7 @@ { "type": "reflection", "declaration": { - "id": 2017, + "id": 2019, "name": "__type", "variant": "declaration", "kind": 65536, @@ -71493,7 +72930,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 984, + "line": 973, "character": 71 } ] @@ -71505,7 +72942,7 @@ } }, { - "id": 1808, + "id": 1810, "name": "AuthFlowType", "variant": "declaration", "kind": 2097152, @@ -71513,7 +72950,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 573, + "line": 562, "character": 12 } ], @@ -71538,7 +72975,7 @@ { "type": "reflection", "declaration": { - "id": 1809, + "id": 1811, "name": "__type", "variant": "declaration", "kind": 65536, @@ -71546,7 +72983,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 573, + "line": 562, "character": 59 } ] @@ -71558,7 +72995,7 @@ } }, { - "id": 2084, + "id": 2086, "name": "AuthMFAAdminDeleteFactorParams", "variant": "declaration", "kind": 2097152, @@ -71575,21 +73012,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1435, + "line": 1424, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2085, + "id": 2087, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2086, + "id": 2088, "name": "id", "variant": "declaration", "kind": 1024, @@ -71605,7 +73042,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1437, + "line": 1426, "character": 4 } ], @@ -71615,7 +73052,7 @@ } }, { - "id": 2087, + "id": 2089, "name": "userId", "variant": "declaration", "kind": 1024, @@ -71631,7 +73068,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1439, + "line": 1428, "character": 4 } ], @@ -71644,13 +73081,13 @@ "groups": [ { "title": "Properties", - "children": [2086, 2087] + "children": [2088, 2089] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1435, + "line": 1424, "character": 45 } ] @@ -71658,7 +73095,7 @@ } }, { - "id": 2081, + "id": 2083, "name": "AuthMFAAdminDeleteFactorResponse", "variant": "declaration", "kind": 2097152, @@ -71675,25 +73112,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1428, + "line": 1417, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2082, + "id": 2084, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2083, + "id": 2085, "name": "id", "variant": "declaration", "kind": 1024, @@ -71709,7 +73146,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1430, + "line": 1419, "character": 4 } ], @@ -71722,13 +73159,13 @@ "groups": [ { "title": "Properties", - "children": [2083] + "children": [2085] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1428, + "line": 1417, "character": 61 } ] @@ -71740,7 +73177,7 @@ } }, { - "id": 2091, + "id": 2093, "name": "AuthMFAAdminListFactorsParams", "variant": "declaration", "kind": 2097152, @@ -71757,21 +73194,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1451, + "line": 1440, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2092, + "id": 2094, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2093, + "id": 2095, "name": "userId", "variant": "declaration", "kind": 1024, @@ -71787,7 +73224,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1453, + "line": 1442, "character": 4 } ], @@ -71800,13 +73237,13 @@ "groups": [ { "title": "Properties", - "children": [2093] + "children": [2095] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1451, + "line": 1440, "character": 44 } ] @@ -71814,7 +73251,7 @@ } }, { - "id": 2088, + "id": 2090, "name": "AuthMFAAdminListFactorsResponse", "variant": "declaration", "kind": 2097152, @@ -71831,25 +73268,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1444, + "line": 1433, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2089, + "id": 2091, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2090, + "id": 2092, "name": "factors", "variant": "declaration", "kind": 1024, @@ -71865,7 +73302,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1446, + "line": 1435, "character": 4 } ], @@ -71873,7 +73310,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1721, + "target": 1723, "name": "Factor", "package": "@supabase/auth-js" } @@ -71883,13 +73320,13 @@ "groups": [ { "title": "Properties", - "children": [2090] + "children": [2092] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1444, + "line": 1433, "character": 60 } ] @@ -71901,7 +73338,7 @@ } }, { - "id": 2007, + "id": 2009, "name": "AuthMFAChallengePhoneResponse", "variant": "declaration", "kind": 2097152, @@ -71909,13 +73346,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 933, + "line": 922, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -71952,7 +73389,7 @@ } }, { - "id": 2011, + "id": 2013, "name": "AuthMFAChallengeResponse", "variant": "declaration", "kind": 2097152, @@ -71960,7 +73397,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 976, + "line": 965, "character": 12 } ], @@ -71969,19 +73406,19 @@ "types": [ { "type": "reference", - "target": 2006, + "target": 2008, "name": "AuthMFAChallengeTOTPResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2007, + "target": 2009, "name": "AuthMFAChallengePhoneResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2008, + "target": 2010, "name": "AuthMFAChallengeWebauthnResponse", "package": "@supabase/auth-js" } @@ -71989,7 +73426,7 @@ } }, { - "id": 2006, + "id": 2008, "name": "AuthMFAChallengeTOTPResponse", "variant": "declaration", "kind": 2097152, @@ -71997,13 +73434,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 931, + "line": 920, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72040,7 +73477,7 @@ } }, { - "id": 2008, + "id": 2010, "name": "AuthMFAChallengeWebauthnResponse", "variant": "declaration", "kind": 2097152, @@ -72069,13 +73506,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 952, + "line": 941, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72112,7 +73549,7 @@ } }, { - "id": 2009, + "id": 2011, "name": "AuthMFAChallengeWebauthnResponseDataJSON", "variant": "declaration", "kind": 2097152, @@ -72128,7 +73565,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 970, + "line": 959, "character": 12 } ], @@ -72163,7 +73600,7 @@ } }, { - "id": 2010, + "id": 2012, "name": "AuthMFAChallengeWebauthnServerResponse", "variant": "declaration", "kind": 2097152, @@ -72179,17 +73616,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 975, + "line": 964, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2009, + "target": 2011, "name": "AuthMFAChallengeWebauthnResponseDataJSON", "package": "@supabase/auth-js" } @@ -72199,7 +73636,7 @@ } }, { - "id": 2126, + "id": 2128, "name": "AuthMFAEnrollPhoneResponse", "variant": "declaration", "kind": 2097152, @@ -72207,13 +73644,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1620, + "line": 1609, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72250,7 +73687,7 @@ } }, { - "id": 2002, + "id": 2004, "name": "AuthMFAEnrollResponse", "variant": "declaration", "kind": 2097152, @@ -72258,7 +73695,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 917, + "line": 906, "character": 12 } ], @@ -72267,19 +73704,19 @@ "types": [ { "type": "reference", - "target": 2125, + "target": 2127, "name": "AuthMFAEnrollTOTPResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2126, + "target": 2128, "name": "AuthMFAEnrollPhoneResponse", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2127, + "target": 2129, "name": "AuthMFAEnrollWebauthnResponse", "package": "@supabase/auth-js" } @@ -72287,7 +73724,7 @@ } }, { - "id": 2125, + "id": 2127, "name": "AuthMFAEnrollTOTPResponse", "variant": "declaration", "kind": 2097152, @@ -72295,13 +73732,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1615, + "line": 1604, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72338,7 +73775,7 @@ } }, { - "id": 2127, + "id": 2129, "name": "AuthMFAEnrollWebauthnResponse", "variant": "declaration", "kind": 2097152, @@ -72367,13 +73804,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1627, + "line": 1616, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72410,7 +73847,7 @@ } }, { - "id": 2018, + "id": 2020, "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse", "variant": "declaration", "kind": 2097152, @@ -72418,25 +73855,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 985, + "line": 974, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2019, + "id": 2021, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2022, + "id": 2024, "name": "currentAuthenticationMethods", "variant": "declaration", "kind": 1024, @@ -72452,7 +73889,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1004, + "line": 993, "character": 4 } ], @@ -72463,7 +73900,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1705, + "target": 1707, "name": "AMREntry", "package": "@supabase/auth-js" } @@ -72479,7 +73916,7 @@ } }, { - "id": 2020, + "id": 2022, "name": "currentLevel", "variant": "declaration", "kind": 1024, @@ -72495,7 +73932,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 987, + "line": 976, "character": 4 } ], @@ -72504,7 +73941,7 @@ "types": [ { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" }, @@ -72516,7 +73953,7 @@ } }, { - "id": 2021, + "id": 2023, "name": "nextLevel", "variant": "declaration", "kind": 1024, @@ -72536,7 +73973,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#challenge", - "target": 2033 + "target": 2035 } ] } @@ -72545,7 +73982,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 994, + "line": 983, "character": 4 } ], @@ -72554,7 +73991,7 @@ "types": [ { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" }, @@ -72569,13 +74006,13 @@ "groups": [ { "title": "Properties", - "children": [2022, 2020, 2021] + "children": [2024, 2022, 2023] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 985, + "line": 974, "character": 74 } ] @@ -72587,7 +74024,7 @@ } }, { - "id": 2012, + "id": 2014, "name": "AuthMFAListFactorsResponse", "variant": "declaration", "kind": 2097152, @@ -72603,13 +74040,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 978, + "line": 967, "character": 12 } ], "typeParameters": [ { - "id": 2015, + "id": 2017, "name": "T", "variant": "typeParam", "kind": 131072, @@ -72644,7 +74081,7 @@ ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "intersection", @@ -72652,14 +74089,14 @@ { "type": "reflection", "declaration": { - "id": 2013, + "id": 2015, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2014, + "id": 2016, "name": "all", "variant": "declaration", "kind": 1024, @@ -72675,7 +74112,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 980, + "line": 969, "character": 4 } ], @@ -72683,7 +74120,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1721, + "target": 1723, "name": "Factor", "package": "@supabase/auth-js" } @@ -72693,13 +74130,13 @@ "groups": [ { "title": "Properties", - "children": [2014] + "children": [2016] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 978, + "line": 967, "character": 106 } ] @@ -72716,7 +74153,7 @@ }, "objectType": { "type": "reference", - "target": 2015, + "target": 2017, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -72726,7 +74163,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1721, + "target": 1723, "typeArguments": [ { "type": "reference", @@ -72756,7 +74193,7 @@ } }, { - "id": 2003, + "id": 2005, "name": "AuthMFAUnenrollResponse", "variant": "declaration", "kind": 2097152, @@ -72764,25 +74201,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 918, + "line": 907, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2004, + "id": 2006, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2005, + "id": 2007, "name": "id", "variant": "declaration", "kind": 1024, @@ -72798,7 +74235,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 920, + "line": 909, "character": 4 } ], @@ -72811,13 +74248,13 @@ "groups": [ { "title": "Properties", - "children": [2005] + "children": [2007] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 918, + "line": 907, "character": 52 } ] @@ -72829,7 +74266,7 @@ } }, { - "id": 2001, + "id": 2003, "name": "AuthMFAVerifyResponse", "variant": "declaration", "kind": 2097152, @@ -72845,17 +74282,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 916, + "line": 905, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 1994, + "target": 1996, "name": "AuthMFAVerifyResponseData", "package": "@supabase/auth-js" } @@ -72865,7 +74302,7 @@ } }, { - "id": 1994, + "id": 1996, "name": "AuthMFAVerifyResponseData", "variant": "declaration", "kind": 2097152, @@ -72881,21 +74318,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 900, + "line": 889, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1995, + "id": 1997, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1996, + "id": 1998, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -72911,7 +74348,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 902, + "line": 891, "character": 4 } ], @@ -72921,7 +74358,7 @@ } }, { - "id": 1998, + "id": 2000, "name": "expires_in", "variant": "declaration", "kind": 1024, @@ -72937,7 +74374,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 906, + "line": 895, "character": 4 } ], @@ -72947,7 +74384,7 @@ } }, { - "id": 1999, + "id": 2001, "name": "refresh_token", "variant": "declaration", "kind": 1024, @@ -72963,7 +74400,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 908, + "line": 897, "character": 4 } ], @@ -72973,7 +74410,7 @@ } }, { - "id": 1997, + "id": 1999, "name": "token_type", "variant": "declaration", "kind": 1024, @@ -72997,7 +74434,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 904, + "line": 893, "character": 4 } ], @@ -73007,7 +74444,7 @@ } }, { - "id": 2000, + "id": 2002, "name": "user", "variant": "declaration", "kind": 1024, @@ -73023,7 +74460,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 910, + "line": 899, "character": 4 } ], @@ -73038,13 +74475,13 @@ "groups": [ { "title": "Properties", - "children": [1996, 1998, 1999, 1997, 2000] + "children": [1998, 2000, 2001, 1999, 2002] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 900, + "line": 889, "character": 40 } ] @@ -73052,7 +74489,7 @@ } }, { - "id": 2380, + "id": 2382, "name": "AuthOAuthAuthorizationDetailsResponse", "variant": "declaration", "kind": 2097152, @@ -73079,26 +74516,26 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2200, + "line": 2189, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "union", "types": [ { "type": "reference", - "target": 2367, + "target": 2369, "name": "OAuthAuthorizationDetails", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2377, + "target": 2379, "name": "OAuthRedirect", "package": "@supabase/auth-js" } @@ -73110,7 +74547,7 @@ } }, { - "id": 2381, + "id": 2383, "name": "AuthOAuthConsentResponse", "variant": "declaration", "kind": 2097152, @@ -73126,17 +74563,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2205, + "line": 2194, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2377, + "target": 2379, "name": "OAuthRedirect", "package": "@supabase/auth-js" } @@ -73146,7 +74583,7 @@ } }, { - "id": 2387, + "id": 2389, "name": "AuthOAuthGrantsResponse", "variant": "declaration", "kind": 2097152, @@ -73162,19 +74599,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2222, + "line": 2211, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "array", "elementType": { "type": "reference", - "target": 2382, + "target": 2384, "name": "OAuthGrant", "package": "@supabase/auth-js" } @@ -73185,7 +74622,7 @@ } }, { - "id": 2388, + "id": 2390, "name": "AuthOAuthRevokeGrantResponse", "variant": "declaration", "kind": 2097152, @@ -73201,18 +74638,18 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2227, + "line": 2216, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2389, + "id": 2391, "name": "__type", "variant": "declaration", "kind": 65536, @@ -73220,7 +74657,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2227, + "line": 2216, "character": 57 } ] @@ -73232,7 +74669,7 @@ } }, { - "id": 1669, + "id": 1671, "name": "AuthOtpResponse", "variant": "declaration", "kind": 2097152, @@ -73253,25 +74690,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 205, + "line": 194, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1670, + "id": 1672, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1673, + "id": 1675, "name": "messageId", "variant": "declaration", "kind": 1024, @@ -73281,7 +74718,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 208, + "line": 197, "character": 4 } ], @@ -73300,7 +74737,7 @@ } }, { - "id": 1672, + "id": 1674, "name": "session", "variant": "declaration", "kind": 1024, @@ -73308,7 +74745,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 207, + "line": 196, "character": 4 } ], @@ -73318,7 +74755,7 @@ } }, { - "id": 1671, + "id": 1673, "name": "user", "variant": "declaration", "kind": 1024, @@ -73326,7 +74763,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 206, + "line": 195, "character": 4 } ], @@ -73339,13 +74776,13 @@ "groups": [ { "title": "Properties", - "children": [1673, 1672, 1671] + "children": [1675, 1674, 1673] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 205, + "line": 194, "character": 59 } ] @@ -73357,7 +74794,7 @@ } }, { - "id": 2486, + "id": 2488, "name": "AuthPasskeyAdminDeleteParams", "variant": "declaration", "kind": 2097152, @@ -73365,21 +74802,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2410, + "line": 2399, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2487, + "id": 2489, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2489, + "id": 2491, "name": "passkeyId", "variant": "declaration", "kind": 1024, @@ -73387,7 +74824,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2412, + "line": 2401, "character": 4 } ], @@ -73397,7 +74834,7 @@ } }, { - "id": 2488, + "id": 2490, "name": "userId", "variant": "declaration", "kind": 1024, @@ -73405,7 +74842,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2411, + "line": 2400, "character": 4 } ], @@ -73418,13 +74855,13 @@ "groups": [ { "title": "Properties", - "children": [2489, 2488] + "children": [2491, 2490] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2410, + "line": 2399, "character": 43 } ] @@ -73432,7 +74869,7 @@ } }, { - "id": 2483, + "id": 2485, "name": "AuthPasskeyAdminListParams", "variant": "declaration", "kind": 2097152, @@ -73440,21 +74877,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2407, + "line": 2396, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2484, + "id": 2486, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2485, + "id": 2487, "name": "userId", "variant": "declaration", "kind": 1024, @@ -73462,7 +74899,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2408, + "line": 2397, "character": 4 } ], @@ -73475,13 +74912,13 @@ "groups": [ { "title": "Properties", - "children": [2485] + "children": [2487] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2407, + "line": 2396, "character": 41 } ] @@ -73489,7 +74926,7 @@ } }, { - "id": 2475, + "id": 2477, "name": "AuthPasskeyAuthenticationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -73497,17 +74934,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2399, + "line": 2388, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2427, + "target": 2429, "name": "PasskeyAuthenticationOptionsResponse", "package": "@supabase/auth-js" } @@ -73517,7 +74954,7 @@ } }, { - "id": 2476, + "id": 2478, "name": "AuthPasskeyAuthenticationVerifyResponse", "variant": "declaration", "kind": 2097152, @@ -73525,25 +74962,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2400, + "line": 2389, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 2477, + "id": 2479, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2478, + "id": 2480, "name": "session", "variant": "declaration", "kind": 1024, @@ -73551,7 +74988,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2401, + "line": 2390, "character": 4 } ], @@ -73572,7 +75009,7 @@ } }, { - "id": 2479, + "id": 2481, "name": "user", "variant": "declaration", "kind": 1024, @@ -73580,7 +75017,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2402, + "line": 2391, "character": 4 } ], @@ -73604,13 +75041,13 @@ "groups": [ { "title": "Properties", - "children": [2478, 2479] + "children": [2480, 2481] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2400, + "line": 2389, "character": 68 } ] @@ -73630,7 +75067,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -73642,7 +75079,7 @@ } }, { - "id": 2482, + "id": 2484, "name": "AuthPasskeyDeleteResponse", "variant": "declaration", "kind": 2097152, @@ -73650,13 +75087,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2406, + "line": 2395, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "literal", @@ -73668,7 +75105,7 @@ } }, { - "id": 2480, + "id": 2482, "name": "AuthPasskeyListResponse", "variant": "declaration", "kind": 2097152, @@ -73676,19 +75113,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2404, + "line": 2393, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "array", "elementType": { "type": "reference", - "target": 2436, + "target": 2438, "name": "PasskeyListItem", "package": "@supabase/auth-js" } @@ -73699,7 +75136,7 @@ } }, { - "id": 2473, + "id": 2475, "name": "AuthPasskeyRegistrationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -73707,17 +75144,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2397, + "line": 2386, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2413, + "target": 2415, "name": "PasskeyRegistrationOptionsResponse", "package": "@supabase/auth-js" } @@ -73727,7 +75164,7 @@ } }, { - "id": 2474, + "id": 2476, "name": "AuthPasskeyRegistrationVerifyResponse", "variant": "declaration", "kind": 2097152, @@ -73735,17 +75172,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2398, + "line": 2387, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2422, + "target": 2424, "name": "PasskeyMetadata", "package": "@supabase/auth-js" }, @@ -73763,7 +75200,7 @@ }, { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -73775,7 +75212,7 @@ } }, { - "id": 2481, + "id": 2483, "name": "AuthPasskeyUpdateResponse", "variant": "declaration", "kind": 2097152, @@ -73783,17 +75220,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2405, + "line": 2394, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2436, + "target": 2438, "name": "PasskeyListItem", "package": "@supabase/auth-js" } @@ -73803,7 +75240,7 @@ } }, { - "id": 1660, + "id": 1662, "name": "AuthResponse", "variant": "declaration", "kind": 2097152, @@ -73811,25 +75248,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 191, + "line": 180, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1661, + "id": 1663, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1663, + "id": 1665, "name": "session", "variant": "declaration", "kind": 1024, @@ -73837,7 +75274,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 193, + "line": 182, "character": 4 } ], @@ -73858,7 +75295,7 @@ } }, { - "id": 1662, + "id": 1664, "name": "user", "variant": "declaration", "kind": 1024, @@ -73866,7 +75303,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 192, + "line": 181, "character": 4 } ], @@ -73890,13 +75327,13 @@ "groups": [ { "title": "Properties", - "children": [1663, 1662] + "children": [1665, 1664] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 191, + "line": 180, "character": 56 } ] @@ -73908,7 +75345,7 @@ } }, { - "id": 1664, + "id": 1666, "name": "AuthResponsePassword", "variant": "declaration", "kind": 2097152, @@ -73916,25 +75353,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 195, + "line": 184, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1665, + "id": 1667, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1667, + "id": 1669, "name": "session", "variant": "declaration", "kind": 1024, @@ -73942,7 +75379,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 197, + "line": 186, "character": 4 } ], @@ -73963,7 +75400,7 @@ } }, { - "id": 1666, + "id": 1668, "name": "user", "variant": "declaration", "kind": 1024, @@ -73971,7 +75408,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 196, + "line": 185, "character": 4 } ], @@ -73992,7 +75429,7 @@ } }, { - "id": 1668, + "id": 1670, "name": "weak_password", "variant": "declaration", "kind": 1024, @@ -74002,7 +75439,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 198, + "line": 187, "character": 4 } ], @@ -74011,7 +75448,7 @@ "types": [ { "type": "reference", - "target": 1634, + "target": 1636, "name": "WeakPassword", "package": "@supabase/auth-js" }, @@ -74026,13 +75463,13 @@ "groups": [ { "title": "Properties", - "children": [1667, 1666, 1668] + "children": [1669, 1668, 1670] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 195, + "line": 184, "character": 64 } ] @@ -74044,7 +75481,7 @@ } }, { - "id": 1674, + "id": 1676, "name": "AuthTokenResponse", "variant": "declaration", "kind": 2097152, @@ -74052,25 +75489,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 210, + "line": 199, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1675, + "id": 1677, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1677, + "id": 1679, "name": "session", "variant": "declaration", "kind": 1024, @@ -74078,7 +75515,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 212, + "line": 201, "character": 4 } ], @@ -74090,7 +75527,7 @@ } }, { - "id": 1676, + "id": 1678, "name": "user", "variant": "declaration", "kind": 1024, @@ -74098,7 +75535,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 211, + "line": 200, "character": 4 } ], @@ -74113,13 +75550,13 @@ "groups": [ { "title": "Properties", - "children": [1677, 1676] + "children": [1679, 1678] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 210, + "line": 199, "character": 61 } ] @@ -74131,7 +75568,7 @@ } }, { - "id": 1678, + "id": 1680, "name": "AuthTokenResponsePassword", "variant": "declaration", "kind": 2097152, @@ -74139,25 +75576,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 214, + "line": 203, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1679, + "id": 1681, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1681, + "id": 1683, "name": "session", "variant": "declaration", "kind": 1024, @@ -74165,7 +75602,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 216, + "line": 205, "character": 4 } ], @@ -74177,7 +75614,7 @@ } }, { - "id": 1680, + "id": 1682, "name": "user", "variant": "declaration", "kind": 1024, @@ -74185,7 +75622,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 215, + "line": 204, "character": 4 } ], @@ -74197,7 +75634,7 @@ } }, { - "id": 1682, + "id": 1684, "name": "weakPassword", "variant": "declaration", "kind": 1024, @@ -74207,13 +75644,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 217, + "line": 206, "character": 4 } ], "type": { "type": "reference", - "target": 1634, + "target": 1636, "name": "WeakPassword", "package": "@supabase/auth-js" } @@ -74222,13 +75659,13 @@ "groups": [ { "title": "Properties", - "children": [1681, 1680, 1682] + "children": [1683, 1682, 1684] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 214, + "line": 203, "character": 69 } ] @@ -74240,7 +75677,7 @@ } }, { - "id": 2107, + "id": 2109, "name": "CallRefreshTokenResult", "variant": "declaration", "kind": 2097152, @@ -74248,13 +75685,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1542, + "line": 1531, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", @@ -74268,7 +75705,7 @@ } }, { - "id": 2286, + "id": 2288, "name": "CreateCustomProviderParams", "variant": "declaration", "kind": 2097152, @@ -74284,21 +75721,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1949, + "line": 1938, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2287, + "id": 2289, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2293, + "id": 2295, "name": "acceptable_client_ids", "variant": "declaration", "kind": 1024, @@ -74316,7 +75753,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1961, + "line": 1950, "character": 4 } ], @@ -74329,7 +75766,7 @@ } }, { - "id": 2296, + "id": 2298, "name": "attribute_mapping", "variant": "declaration", "kind": 1024, @@ -74347,7 +75784,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1967, + "line": 1956, "character": 4 } ], @@ -74372,7 +75809,7 @@ } }, { - "id": 2297, + "id": 2299, "name": "authorization_params", "variant": "declaration", "kind": 1024, @@ -74390,7 +75827,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1969, + "line": 1958, "character": 4 } ], @@ -74415,7 +75852,7 @@ } }, { - "id": 2303, + "id": 2305, "name": "authorization_url", "variant": "declaration", "kind": 1024, @@ -74433,7 +75870,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1981, + "line": 1970, "character": 4 } ], @@ -74443,7 +75880,7 @@ } }, { - "id": 2291, + "id": 2293, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -74459,7 +75896,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1957, + "line": 1946, "character": 4 } ], @@ -74469,7 +75906,7 @@ } }, { - "id": 2292, + "id": 2294, "name": "client_secret", "variant": "declaration", "kind": 1024, @@ -74485,7 +75922,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1959, + "line": 1948, "character": 4 } ], @@ -74495,7 +75932,7 @@ } }, { - "id": 2301, + "id": 2303, "name": "discovery_url", "variant": "declaration", "kind": 1024, @@ -74513,7 +75950,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1977, + "line": 1966, "character": 4 } ], @@ -74523,7 +75960,7 @@ } }, { - "id": 2299, + "id": 2301, "name": "email_optional", "variant": "declaration", "kind": 1024, @@ -74541,7 +75978,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1973, + "line": 1962, "character": 4 } ], @@ -74551,7 +75988,7 @@ } }, { - "id": 2298, + "id": 2300, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -74569,7 +76006,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1971, + "line": 1960, "character": 4 } ], @@ -74579,7 +76016,7 @@ } }, { - "id": 2289, + "id": 2291, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -74603,7 +76040,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1953, + "line": 1942, "character": 4 } ], @@ -74613,7 +76050,7 @@ } }, { - "id": 2300, + "id": 2302, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -74631,7 +76068,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1975, + "line": 1964, "character": 4 } ], @@ -74641,7 +76078,7 @@ } }, { - "id": 2306, + "id": 2308, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -74659,7 +76096,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1987, + "line": 1976, "character": 4 } ], @@ -74669,7 +76106,7 @@ } }, { - "id": 2290, + "id": 2292, "name": "name", "variant": "declaration", "kind": 1024, @@ -74685,7 +76122,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1955, + "line": 1944, "character": 4 } ], @@ -74695,7 +76132,7 @@ } }, { - "id": 2295, + "id": 2297, "name": "pkce_enabled", "variant": "declaration", "kind": 1024, @@ -74713,7 +76150,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1965, + "line": 1954, "character": 4 } ], @@ -74723,7 +76160,7 @@ } }, { - "id": 2288, + "id": 2290, "name": "provider_type", "variant": "declaration", "kind": 1024, @@ -74739,19 +76176,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1951, + "line": 1940, "character": 4 } ], "type": { "type": "reference", - "target": 2249, + "target": 2251, "name": "CustomProviderType", "package": "@supabase/auth-js" } }, { - "id": 2294, + "id": 2296, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -74769,7 +76206,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1963, + "line": 1952, "character": 4 } ], @@ -74782,7 +76219,7 @@ } }, { - "id": 2302, + "id": 2304, "name": "skip_nonce_check", "variant": "declaration", "kind": 1024, @@ -74800,7 +76237,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1979, + "line": 1968, "character": 4 } ], @@ -74810,7 +76247,7 @@ } }, { - "id": 2304, + "id": 2306, "name": "token_url", "variant": "declaration", "kind": 1024, @@ -74828,7 +76265,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1983, + "line": 1972, "character": 4 } ], @@ -74838,7 +76275,7 @@ } }, { - "id": 2305, + "id": 2307, "name": "userinfo_url", "variant": "declaration", "kind": 1024, @@ -74856,7 +76293,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1985, + "line": 1974, "character": 4 } ], @@ -74870,15 +76307,15 @@ { "title": "Properties", "children": [ - 2293, 2296, 2297, 2303, 2291, 2292, 2301, 2299, 2298, 2289, 2300, 2306, 2290, - 2295, 2288, 2294, 2302, 2304, 2305 + 2295, 2298, 2299, 2305, 2293, 2294, 2303, 2301, 2300, 2291, 2302, 2308, 2292, + 2297, 2290, 2296, 2304, 2306, 2307 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1949, + "line": 1938, "character": 41 } ] @@ -74886,7 +76323,7 @@ } }, { - "id": 2196, + "id": 2198, "name": "CreateOAuthClientParams", "variant": "declaration", "kind": 2097152, @@ -74902,21 +76339,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1741, + "line": 1730, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2197, + "id": 2199, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2198, + "id": 2200, "name": "client_name", "variant": "declaration", "kind": 1024, @@ -74932,7 +76369,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1743, + "line": 1732, "character": 4 } ], @@ -74942,7 +76379,7 @@ } }, { - "id": 2199, + "id": 2201, "name": "client_uri", "variant": "declaration", "kind": 1024, @@ -74960,7 +76397,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1745, + "line": 1734, "character": 4 } ], @@ -74970,7 +76407,7 @@ } }, { - "id": 2201, + "id": 2203, "name": "grant_types", "variant": "declaration", "kind": 1024, @@ -74988,7 +76425,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1749, + "line": 1738, "character": 4 } ], @@ -74996,14 +76433,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2174, + "target": 2176, "name": "OAuthClientGrantType", "package": "@supabase/auth-js" } } }, { - "id": 2200, + "id": 2202, "name": "redirect_uris", "variant": "declaration", "kind": 1024, @@ -75019,7 +76456,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1747, + "line": 1736, "character": 4 } ], @@ -75032,7 +76469,7 @@ } }, { - "id": 2202, + "id": 2204, "name": "response_types", "variant": "declaration", "kind": 1024, @@ -75050,7 +76487,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1751, + "line": 1740, "character": 4 } ], @@ -75058,14 +76495,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2176, + "target": 2178, "name": "OAuthClientResponseType", "package": "@supabase/auth-js" } } }, { - "id": 2203, + "id": 2205, "name": "scope", "variant": "declaration", "kind": 1024, @@ -75083,7 +76520,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1753, + "line": 1742, "character": 4 } ], @@ -75093,7 +76530,7 @@ } }, { - "id": 2204, + "id": 2206, "name": "token_endpoint_auth_method", "variant": "declaration", "kind": 1024, @@ -75111,13 +76548,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1755, + "line": 1744, "character": 4 } ], "type": { "type": "reference", - "target": 2179, + "target": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "package": "@supabase/auth-js" } @@ -75126,13 +76563,13 @@ "groups": [ { "title": "Properties", - "children": [2198, 2199, 2201, 2200, 2202, 2203, 2204] + "children": [2200, 2201, 2203, 2202, 2204, 2205, 2206] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1741, + "line": 1730, "character": 38 } ] @@ -75140,7 +76577,7 @@ } }, { - "id": 2262, + "id": 2264, "name": "CustomOAuthProvider", "variant": "declaration", "kind": 2097152, @@ -75156,21 +76593,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1900, + "line": 1889, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2263, + "id": 2265, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2269, + "id": 2271, "name": "acceptable_client_ids", "variant": "declaration", "kind": 1024, @@ -75188,7 +76625,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1912, + "line": 1901, "character": 4 } ], @@ -75201,7 +76638,7 @@ } }, { - "id": 2272, + "id": 2274, "name": "attribute_mapping", "variant": "declaration", "kind": 1024, @@ -75219,7 +76656,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1918, + "line": 1907, "character": 4 } ], @@ -75244,7 +76681,7 @@ } }, { - "id": 2273, + "id": 2275, "name": "authorization_params", "variant": "declaration", "kind": 1024, @@ -75262,7 +76699,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1920, + "line": 1909, "character": 4 } ], @@ -75287,7 +76724,7 @@ } }, { - "id": 2279, + "id": 2281, "name": "authorization_url", "variant": "declaration", "kind": 1024, @@ -75305,7 +76742,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1932, + "line": 1921, "character": 4 } ], @@ -75315,7 +76752,7 @@ } }, { - "id": 2268, + "id": 2270, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -75331,7 +76768,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1910, + "line": 1899, "character": 4 } ], @@ -75341,7 +76778,7 @@ } }, { - "id": 2284, + "id": 2286, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -75357,7 +76794,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1942, + "line": 1931, "character": 4 } ], @@ -75367,7 +76804,7 @@ } }, { - "id": 2283, + "id": 2285, "name": "discovery_document", "variant": "declaration", "kind": 1024, @@ -75385,7 +76822,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1940, + "line": 1929, "character": 4 } ], @@ -75394,7 +76831,7 @@ "types": [ { "type": "reference", - "target": 2250, + "target": 2252, "name": "OIDCDiscoveryDocument", "package": "@supabase/auth-js" }, @@ -75406,7 +76843,7 @@ } }, { - "id": 2277, + "id": 2279, "name": "discovery_url", "variant": "declaration", "kind": 1024, @@ -75424,7 +76861,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1928, + "line": 1917, "character": 4 } ], @@ -75434,7 +76871,7 @@ } }, { - "id": 2275, + "id": 2277, "name": "email_optional", "variant": "declaration", "kind": 1024, @@ -75452,7 +76889,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1924, + "line": 1913, "character": 4 } ], @@ -75462,7 +76899,7 @@ } }, { - "id": 2274, + "id": 2276, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -75480,7 +76917,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1922, + "line": 1911, "character": 4 } ], @@ -75490,7 +76927,7 @@ } }, { - "id": 2264, + "id": 2266, "name": "id", "variant": "declaration", "kind": 1024, @@ -75506,7 +76943,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1902, + "line": 1891, "character": 4 } ], @@ -75516,7 +76953,7 @@ } }, { - "id": 2266, + "id": 2268, "name": "identifier", "variant": "declaration", "kind": 1024, @@ -75540,7 +76977,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1906, + "line": 1895, "character": 4 } ], @@ -75550,7 +76987,7 @@ } }, { - "id": 2276, + "id": 2278, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -75568,7 +77005,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1926, + "line": 1915, "character": 4 } ], @@ -75578,7 +77015,7 @@ } }, { - "id": 2282, + "id": 2284, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -75596,7 +77033,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1938, + "line": 1927, "character": 4 } ], @@ -75606,7 +77043,7 @@ } }, { - "id": 2267, + "id": 2269, "name": "name", "variant": "declaration", "kind": 1024, @@ -75622,7 +77059,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1908, + "line": 1897, "character": 4 } ], @@ -75632,7 +77069,7 @@ } }, { - "id": 2271, + "id": 2273, "name": "pkce_enabled", "variant": "declaration", "kind": 1024, @@ -75650,7 +77087,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1916, + "line": 1905, "character": 4 } ], @@ -75660,7 +77097,7 @@ } }, { - "id": 2265, + "id": 2267, "name": "provider_type", "variant": "declaration", "kind": 1024, @@ -75676,19 +77113,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1904, + "line": 1893, "character": 4 } ], "type": { "type": "reference", - "target": 2249, + "target": 2251, "name": "CustomProviderType", "package": "@supabase/auth-js" } }, { - "id": 2270, + "id": 2272, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -75706,7 +77143,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1914, + "line": 1903, "character": 4 } ], @@ -75719,7 +77156,7 @@ } }, { - "id": 2278, + "id": 2280, "name": "skip_nonce_check", "variant": "declaration", "kind": 1024, @@ -75737,7 +77174,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1930, + "line": 1919, "character": 4 } ], @@ -75747,7 +77184,7 @@ } }, { - "id": 2280, + "id": 2282, "name": "token_url", "variant": "declaration", "kind": 1024, @@ -75765,7 +77202,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1934, + "line": 1923, "character": 4 } ], @@ -75775,7 +77212,7 @@ } }, { - "id": 2285, + "id": 2287, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -75791,7 +77228,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1944, + "line": 1933, "character": 4 } ], @@ -75801,7 +77238,7 @@ } }, { - "id": 2281, + "id": 2283, "name": "userinfo_url", "variant": "declaration", "kind": 1024, @@ -75819,7 +77256,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1936, + "line": 1925, "character": 4 } ], @@ -75833,15 +77270,15 @@ { "title": "Properties", "children": [ - 2269, 2272, 2273, 2279, 2268, 2284, 2283, 2277, 2275, 2274, 2264, 2266, 2276, - 2282, 2267, 2271, 2265, 2270, 2278, 2280, 2285, 2281 + 2271, 2274, 2275, 2281, 2270, 2286, 2285, 2279, 2277, 2276, 2266, 2268, 2278, + 2284, 2269, 2273, 2267, 2272, 2280, 2282, 2287, 2283 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1900, + "line": 1889, "character": 34 } ] @@ -75849,7 +77286,7 @@ } }, { - "id": 2330, + "id": 2332, "name": "CustomProviderListResponse", "variant": "declaration", "kind": 2097152, @@ -75865,7 +77302,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2044, + "line": 2033, "character": 12 } ], @@ -75875,14 +77312,14 @@ { "type": "reflection", "declaration": { - "id": 2331, + "id": 2333, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2332, + "id": 2334, "name": "data", "variant": "declaration", "kind": 1024, @@ -75890,21 +77327,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2045, + "line": 2034, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2333, + "id": 2335, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2334, + "id": 2336, "name": "providers", "variant": "declaration", "kind": 1024, @@ -75912,7 +77349,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2046, + "line": 2035, "character": 8 } ], @@ -75920,7 +77357,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2262, + "target": 2264, "name": "CustomOAuthProvider", "package": "@supabase/auth-js" } @@ -75930,13 +77367,13 @@ "groups": [ { "title": "Properties", - "children": [2334] + "children": [2336] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2045, + "line": 2034, "character": 10 } ] @@ -75944,7 +77381,7 @@ } }, { - "id": 2335, + "id": 2337, "name": "error", "variant": "declaration", "kind": 1024, @@ -75952,7 +77389,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2048, + "line": 2037, "character": 4 } ], @@ -75965,13 +77402,13 @@ "groups": [ { "title": "Properties", - "children": [2332, 2335] + "children": [2334, 2337] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2044, + "line": 2033, "character": 41 } ] @@ -75980,14 +77417,14 @@ { "type": "reflection", "declaration": { - "id": 2336, + "id": 2338, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2337, + "id": 2339, "name": "data", "variant": "declaration", "kind": 1024, @@ -75995,21 +77432,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2050, + "line": 2039, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2338, + "id": 2340, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2339, + "id": 2341, "name": "providers", "variant": "declaration", "kind": 1024, @@ -76017,7 +77454,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2051, + "line": 2040, "character": 8 } ], @@ -76029,13 +77466,13 @@ "groups": [ { "title": "Properties", - "children": [2339] + "children": [2341] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2050, + "line": 2039, "character": 10 } ] @@ -76043,7 +77480,7 @@ } }, { - "id": 2340, + "id": 2342, "name": "error", "variant": "declaration", "kind": 1024, @@ -76051,13 +77488,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2053, + "line": 2042, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -76066,13 +77503,13 @@ "groups": [ { "title": "Properties", - "children": [2337, 2340] + "children": [2339, 2342] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2049, + "line": 2038, "character": 4 } ] @@ -76082,7 +77519,7 @@ } }, { - "id": 2329, + "id": 2331, "name": "CustomProviderResponse", "variant": "declaration", "kind": 2097152, @@ -76098,17 +77535,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2040, + "line": 2029, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2262, + "target": 2264, "name": "CustomOAuthProvider", "package": "@supabase/auth-js" } @@ -76118,7 +77555,7 @@ } }, { - "id": 2249, + "id": 2251, "name": "CustomProviderType", "variant": "declaration", "kind": 2097152, @@ -76134,7 +77571,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1869, + "line": 1858, "character": 12 } ], @@ -76181,9 +77618,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 313, + "line": 320, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L313" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L320" } ], "typeParameters": [ @@ -76219,7 +77656,7 @@ } }, { - "id": 1906, + "id": 1908, "name": "EmailOtpType", "variant": "declaration", "kind": 2097152, @@ -76227,7 +77664,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 704, + "line": 693, "character": 12 } ], @@ -76268,7 +77705,7 @@ { "type": "reflection", "declaration": { - "id": 1907, + "id": 1909, "name": "__type", "variant": "declaration", "kind": 65536, @@ -76276,7 +77713,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 704, + "line": 693, "character": 113 } ] @@ -76288,7 +77725,7 @@ } }, { - "id": 1865, + "id": 1867, "name": "EthereumWallet", "variant": "declaration", "kind": 2097152, @@ -76296,7 +77733,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 635, + "line": 624, "character": 12 } ], @@ -76311,7 +77748,7 @@ } }, { - "id": 1866, + "id": 1868, "name": "EthereumWeb3Credentials", "variant": "declaration", "kind": 2097152, @@ -76319,7 +77756,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 636, + "line": 625, "character": 12 } ], @@ -76329,14 +77766,14 @@ { "type": "reflection", "declaration": { - "id": 1867, + "id": 1869, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1868, + "id": 1870, "name": "chain", "variant": "declaration", "kind": 1024, @@ -76344,7 +77781,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 637, + "line": 626, "character": 4 } ], @@ -76354,7 +77791,7 @@ } }, { - "id": 1871, + "id": 1873, "name": "options", "variant": "declaration", "kind": 1024, @@ -76364,21 +77801,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 642, + "line": 631, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1872, + "id": 1874, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1874, + "id": 1876, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -76396,7 +77833,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 646, + "line": 635, "character": 8 } ], @@ -76406,7 +77843,7 @@ } }, { - "id": 1875, + "id": 1877, "name": "signInWithEthereum", "variant": "declaration", "kind": 1024, @@ -76416,7 +77853,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 647, + "line": 636, "character": 8 } ], @@ -76474,7 +77911,7 @@ } }, { - "id": 1873, + "id": 1875, "name": "url", "variant": "declaration", "kind": 1024, @@ -76492,7 +77929,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 644, + "line": 633, "character": 8 } ], @@ -76505,13 +77942,13 @@ "groups": [ { "title": "Properties", - "children": [1874, 1875, 1873] + "children": [1876, 1877, 1875] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 642, + "line": 631, "character": 14 } ] @@ -76519,7 +77956,7 @@ } }, { - "id": 1870, + "id": 1872, "name": "statement", "variant": "declaration", "kind": 1024, @@ -76537,7 +77974,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 641, + "line": 630, "character": 4 } ], @@ -76547,7 +77984,7 @@ } }, { - "id": 1869, + "id": 1871, "name": "wallet", "variant": "declaration", "kind": 1024, @@ -76573,13 +78010,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 639, + "line": 628, "character": 4 } ], "type": { "type": "reference", - "target": 1865, + "target": 1867, "name": "EthereumWallet", "package": "@supabase/auth-js" } @@ -76588,13 +78025,13 @@ "groups": [ { "title": "Properties", - "children": [1868, 1871, 1870, 1869] + "children": [1870, 1873, 1872, 1871] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 636, + "line": 625, "character": 38 } ] @@ -76603,14 +78040,14 @@ { "type": "reflection", "declaration": { - "id": 1876, + "id": 1878, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1877, + "id": 1879, "name": "chain", "variant": "declaration", "kind": 1024, @@ -76618,7 +78055,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 650, + "line": 639, "character": 4 } ], @@ -76628,7 +78065,7 @@ } }, { - "id": 1878, + "id": 1880, "name": "message", "variant": "declaration", "kind": 1024, @@ -76668,7 +78105,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 652, + "line": 641, "character": 4 } ], @@ -76678,7 +78115,7 @@ } }, { - "id": 1880, + "id": 1882, "name": "options", "variant": "declaration", "kind": 1024, @@ -76688,21 +78125,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 655, + "line": 644, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1881, + "id": 1883, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1882, + "id": 1884, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -76720,7 +78157,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 657, + "line": 646, "character": 8 } ], @@ -76733,13 +78170,13 @@ "groups": [ { "title": "Properties", - "children": [1882] + "children": [1884] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 655, + "line": 644, "character": 14 } ] @@ -76747,7 +78184,7 @@ } }, { - "id": 1879, + "id": 1881, "name": "signature", "variant": "declaration", "kind": 1024, @@ -76763,7 +78200,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 654, + "line": 643, "character": 4 } ], @@ -76781,13 +78218,13 @@ "groups": [ { "title": "Properties", - "children": [1877, 1878, 1880, 1879] + "children": [1879, 1880, 1882, 1881] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 649, + "line": 638, "character": 4 } ] @@ -76797,7 +78234,7 @@ } }, { - "id": 1630, + "id": 1632, "name": "ExperimentalFeatureFlags", "variant": "declaration", "kind": 2097152, @@ -76805,21 +78242,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 137, + "line": 126, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1631, + "id": 1633, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1632, + "id": 1634, "name": "passkey", "variant": "declaration", "kind": 1024, @@ -76877,7 +78314,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 147, + "line": 136, "character": 4 } ], @@ -76890,13 +78327,13 @@ "groups": [ { "title": "Properties", - "children": [1632] + "children": [1634] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 137, + "line": 126, "character": 39 } ] @@ -76904,7 +78341,7 @@ } }, { - "id": 1721, + "id": 1723, "name": "Factor", "variant": "declaration", "kind": 2097152, @@ -76928,7 +78365,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#enroll", - "target": 2024 + "target": 2026 }, { "kind": "text", @@ -76942,7 +78379,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueMFAApi#listFactors", - "target": 2075 + "target": 2077 }, { "kind": "text", @@ -76968,32 +78405,32 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 329, + "line": 318, "character": 12 } ], "typeParameters": [ { - "id": 1730, + "id": 1732, "name": "Type", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 1720, + "target": 1722, "name": "FactorType", "package": "@supabase/auth-js" }, "default": { "type": "reference", - "target": 1720, + "target": 1722, "name": "FactorType", "package": "@supabase/auth-js" } }, { - "id": 1731, + "id": 1733, "name": "Status", "variant": "typeParam", "kind": 131072, @@ -77032,14 +78469,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1722, + "id": 1724, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1727, + "id": 1729, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -77047,7 +78484,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 342, + "line": 331, "character": 4 } ], @@ -77057,7 +78494,7 @@ } }, { - "id": 1725, + "id": 1727, "name": "factor_type", "variant": "declaration", "kind": 1024, @@ -77089,20 +78526,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 337, + "line": 326, "character": 4 } ], "type": { "type": "reference", - "target": 1730, + "target": 1732, "name": "Type", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1724, + "id": 1726, "name": "friendly_name", "variant": "declaration", "kind": 1024, @@ -77120,7 +78557,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 333, + "line": 322, "character": 4 } ], @@ -77130,7 +78567,7 @@ } }, { - "id": 1723, + "id": 1725, "name": "id", "variant": "declaration", "kind": 1024, @@ -77146,7 +78583,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 331, + "line": 320, "character": 4 } ], @@ -77156,7 +78593,7 @@ } }, { - "id": 1729, + "id": 1731, "name": "last_challenged_at", "variant": "declaration", "kind": 1024, @@ -77166,7 +78603,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 344, + "line": 333, "character": 4 } ], @@ -77176,7 +78613,7 @@ } }, { - "id": 1726, + "id": 1728, "name": "status", "variant": "declaration", "kind": 1024, @@ -77220,20 +78657,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 341, + "line": 330, "character": 4 } ], "type": { "type": "reference", - "target": 1731, + "target": 1733, "name": "Status", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1728, + "id": 1730, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -77241,7 +78678,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 343, + "line": 332, "character": 4 } ], @@ -77254,13 +78691,13 @@ "groups": [ { "title": "Properties", - "children": [1727, 1725, 1724, 1723, 1729, 1726, 1728] + "children": [1729, 1727, 1726, 1725, 1731, 1728, 1730] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 329, + "line": 318, "character": 146 } ] @@ -77268,7 +78705,7 @@ } }, { - "id": 1720, + "id": 1722, "name": "FactorType", "variant": "declaration", "kind": 2097152, @@ -77300,7 +78737,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 316, + "line": 305, "character": 12 } ], @@ -77687,7 +79124,7 @@ } }, { - "id": 1953, + "id": 1955, "name": "GenerateEmailChangeLinkParams", "variant": "declaration", "kind": 2097152, @@ -77695,21 +79132,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 771, + "line": 760, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1954, + "id": 1956, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1956, + "id": 1958, "name": "email", "variant": "declaration", "kind": 1024, @@ -77725,7 +79162,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 774, + "line": 763, "character": 4 } ], @@ -77735,7 +79172,7 @@ } }, { - "id": 1957, + "id": 1959, "name": "newEmail", "variant": "declaration", "kind": 1024, @@ -77751,7 +79188,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 778, + "line": 767, "character": 4 } ], @@ -77761,7 +79198,7 @@ } }, { - "id": 1958, + "id": 1960, "name": "options", "variant": "declaration", "kind": 1024, @@ -77771,7 +79208,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 779, + "line": 768, "character": 4 } ], @@ -77784,7 +79221,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -77798,7 +79235,7 @@ } }, { - "id": 1955, + "id": 1957, "name": "type", "variant": "declaration", "kind": 1024, @@ -77806,7 +79243,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 772, + "line": 761, "character": 4 } ], @@ -77828,13 +79265,13 @@ "groups": [ { "title": "Properties", - "children": [1956, 1957, 1958, 1955] + "children": [1958, 1959, 1960, 1957] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 771, + "line": 760, "character": 44 } ] @@ -77842,7 +79279,7 @@ } }, { - "id": 1943, + "id": 1945, "name": "GenerateInviteOrMagiclinkParams", "variant": "declaration", "kind": 2097152, @@ -77850,21 +79287,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 759, + "line": 748, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1944, + "id": 1946, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1946, + "id": 1948, "name": "email", "variant": "declaration", "kind": 1024, @@ -77880,7 +79317,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 762, + "line": 751, "character": 4 } ], @@ -77890,7 +79327,7 @@ } }, { - "id": 1947, + "id": 1949, "name": "options", "variant": "declaration", "kind": 1024, @@ -77900,7 +79337,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 763, + "line": 752, "character": 4 } ], @@ -77913,7 +79350,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -77936,7 +79373,7 @@ } }, { - "id": 1945, + "id": 1947, "name": "type", "variant": "declaration", "kind": 1024, @@ -77944,7 +79381,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 760, + "line": 749, "character": 4 } ], @@ -77966,13 +79403,13 @@ "groups": [ { "title": "Properties", - "children": [1946, 1947, 1945] + "children": [1948, 1949, 1947] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 759, + "line": 748, "character": 46 } ] @@ -77980,7 +79417,7 @@ } }, { - "id": 1962, + "id": 1964, "name": "GenerateLinkParams", "variant": "declaration", "kind": 2097152, @@ -77988,7 +79425,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 791, + "line": 780, "character": 12 } ], @@ -77997,25 +79434,25 @@ "types": [ { "type": "reference", - "target": 1937, + "target": 1939, "name": "GenerateSignupLinkParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1943, + "target": 1945, "name": "GenerateInviteOrMagiclinkParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1948, + "target": 1950, "name": "GenerateRecoveryLinkParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1953, + "target": 1955, "name": "GenerateEmailChangeLinkParams", "package": "@supabase/auth-js" } @@ -78023,7 +79460,7 @@ } }, { - "id": 1967, + "id": 1969, "name": "GenerateLinkProperties", "variant": "declaration", "kind": 2097152, @@ -78039,21 +79476,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 797, + "line": 786, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1968, + "id": 1970, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1969, + "id": 1971, "name": "action_link", "variant": "declaration", "kind": 1024, @@ -78069,7 +79506,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 802, + "line": 791, "character": 4 } ], @@ -78079,7 +79516,7 @@ } }, { - "id": 1970, + "id": 1972, "name": "email_otp", "variant": "declaration", "kind": 1024, @@ -78095,7 +79532,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 807, + "line": 796, "character": 4 } ], @@ -78105,7 +79542,7 @@ } }, { - "id": 1971, + "id": 1973, "name": "hashed_token", "variant": "declaration", "kind": 1024, @@ -78121,7 +79558,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 811, + "line": 800, "character": 4 } ], @@ -78131,7 +79568,7 @@ } }, { - "id": 1972, + "id": 1974, "name": "redirect_to", "variant": "declaration", "kind": 1024, @@ -78147,7 +79584,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 813, + "line": 802, "character": 4 } ], @@ -78157,7 +79594,7 @@ } }, { - "id": 1973, + "id": 1975, "name": "verification_type", "variant": "declaration", "kind": 1024, @@ -78173,13 +79610,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 815, + "line": 804, "character": 4 } ], "type": { "type": "reference", - "target": 1974, + "target": 1976, "name": "GenerateLinkType", "package": "@supabase/auth-js" } @@ -78188,13 +79625,13 @@ "groups": [ { "title": "Properties", - "children": [1969, 1970, 1971, 1972, 1973] + "children": [1971, 1972, 1973, 1974, 1975] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 797, + "line": 786, "character": 37 } ] @@ -78202,7 +79639,7 @@ } }, { - "id": 1963, + "id": 1965, "name": "GenerateLinkResponse", "variant": "declaration", "kind": 2097152, @@ -78210,25 +79647,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 792, + "line": 781, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1964, + "id": 1966, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1965, + "id": 1967, "name": "properties", "variant": "declaration", "kind": 1024, @@ -78236,19 +79673,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 793, + "line": 782, "character": 4 } ], "type": { "type": "reference", - "target": 1967, + "target": 1969, "name": "GenerateLinkProperties", "package": "@supabase/auth-js" } }, { - "id": 1966, + "id": 1968, "name": "user", "variant": "declaration", "kind": 1024, @@ -78256,7 +79693,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 794, + "line": 783, "character": 4 } ], @@ -78271,13 +79708,13 @@ "groups": [ { "title": "Properties", - "children": [1965, 1966] + "children": [1967, 1968] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 792, + "line": 781, "character": 64 } ] @@ -78289,7 +79726,7 @@ } }, { - "id": 1974, + "id": 1976, "name": "GenerateLinkType", "variant": "declaration", "kind": 2097152, @@ -78297,7 +79734,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 817, + "line": 806, "character": 12 } ], @@ -78332,7 +79769,7 @@ } }, { - "id": 1948, + "id": 1950, "name": "GenerateRecoveryLinkParams", "variant": "declaration", "kind": 2097152, @@ -78340,21 +79777,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 765, + "line": 754, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1949, + "id": 1951, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1951, + "id": 1953, "name": "email", "variant": "declaration", "kind": 1024, @@ -78370,7 +79807,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 768, + "line": 757, "character": 4 } ], @@ -78380,7 +79817,7 @@ } }, { - "id": 1952, + "id": 1954, "name": "options", "variant": "declaration", "kind": 1024, @@ -78390,7 +79827,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 769, + "line": 758, "character": 4 } ], @@ -78403,7 +79840,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -78417,7 +79854,7 @@ } }, { - "id": 1950, + "id": 1952, "name": "type", "variant": "declaration", "kind": 1024, @@ -78425,7 +79862,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 766, + "line": 755, "character": 4 } ], @@ -78438,13 +79875,13 @@ "groups": [ { "title": "Properties", - "children": [1951, 1952, 1950] + "children": [1953, 1954, 1952] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 765, + "line": 754, "character": 41 } ] @@ -78452,7 +79889,7 @@ } }, { - "id": 1937, + "id": 1939, "name": "GenerateSignupLinkParams", "variant": "declaration", "kind": 2097152, @@ -78460,21 +79897,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 753, + "line": 742, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1938, + "id": 1940, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1940, + "id": 1942, "name": "email", "variant": "declaration", "kind": 1024, @@ -78482,7 +79919,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 755, + "line": 744, "character": 4 } ], @@ -78492,7 +79929,7 @@ } }, { - "id": 1942, + "id": 1944, "name": "options", "variant": "declaration", "kind": 1024, @@ -78502,7 +79939,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 757, + "line": 746, "character": 4 } ], @@ -78515,7 +79952,7 @@ "typeArguments": [ { "type": "reference", - "target": 1959, + "target": 1961, "name": "GenerateLinkOptions", "package": "@supabase/auth-js" }, @@ -78538,7 +79975,7 @@ } }, { - "id": 1941, + "id": 1943, "name": "password", "variant": "declaration", "kind": 1024, @@ -78546,7 +79983,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 756, + "line": 745, "character": 4 } ], @@ -78556,7 +79993,7 @@ } }, { - "id": 1939, + "id": 1941, "name": "type", "variant": "declaration", "kind": 1024, @@ -78564,7 +80001,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 754, + "line": 743, "character": 4 } ], @@ -78577,13 +80014,13 @@ "groups": [ { "title": "Properties", - "children": [1940, 1942, 1941, 1939] + "children": [1942, 1944, 1943, 1941] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 753, + "line": 742, "character": 39 } ] @@ -78591,7 +80028,7 @@ } }, { - "id": 1597, + "id": 1599, "name": "GoTrueClientOptions", "variant": "declaration", "kind": 2097152, @@ -78606,14 +80043,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1598, + "id": 1600, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1613, + "id": 1615, "name": "autoRefreshToken", "variant": "declaration", "kind": 1024, @@ -78633,7 +80070,7 @@ } }, { - "id": 1619, + "id": 1621, "name": "debug", "variant": "declaration", "kind": 1024, @@ -78657,7 +80094,7 @@ { "type": "reflection", "declaration": { - "id": 1620, + "id": 1622, "name": "__type", "variant": "declaration", "kind": 65536, @@ -78671,14 +80108,14 @@ ], "signatures": [ { - "id": 1621, + "id": 1623, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1622, + "id": 1624, "name": "message", "variant": "param", "kind": 32768, @@ -78689,7 +80126,7 @@ } }, { - "id": 1623, + "id": 1625, "name": "args", "variant": "param", "kind": 32768, @@ -78717,7 +80154,7 @@ } }, { - "id": 1605, + "id": 1607, "name": "detectSessionInUrl", "variant": "declaration", "kind": 1024, @@ -78760,7 +80197,7 @@ { "type": "reflection", "declaration": { - "id": 1606, + "id": 1608, "name": "__type", "variant": "declaration", "kind": 65536, @@ -78774,14 +80211,14 @@ ], "signatures": [ { - "id": 1607, + "id": 1609, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1608, + "id": 1610, "name": "url", "variant": "param", "kind": 32768, @@ -78797,7 +80234,7 @@ } }, { - "id": 1609, + "id": 1611, "name": "params", "variant": "param", "kind": 32768, @@ -78805,7 +80242,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1610, + "id": 1612, "name": "__type", "variant": "declaration", "kind": 65536, @@ -78819,7 +80256,7 @@ ], "indexSignatures": [ { - "id": 1611, + "id": 1613, "name": "__index", "variant": "signature", "kind": 8192, @@ -78833,7 +80270,7 @@ ], "parameters": [ { - "id": 1612, + "id": 1614, "name": "parameter", "variant": "param", "kind": 32768, @@ -78866,7 +80303,7 @@ } }, { - "id": 1629, + "id": 1631, "name": "experimental", "variant": "declaration", "kind": 1024, @@ -78885,19 +80322,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 135, + "line": 124, "character": 4 } ], "type": { "type": "reference", - "target": 1630, + "target": 1632, "name": "ExperimentalFeatureFlags", "package": "@supabase/auth-js" } }, { - "id": 1617, + "id": 1619, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -78922,7 +80359,7 @@ } }, { - "id": 1618, + "id": 1620, "name": "flowType", "variant": "declaration", "kind": 1024, @@ -78938,13 +80375,13 @@ ], "type": { "type": "reference", - "target": 1808, + "target": 1810, "name": "AuthFlowType", "package": "@supabase/auth-js" } }, { - "id": 1625, + "id": 1627, "name": "hasCustomAuthorizationHeader", "variant": "declaration", "kind": 1024, @@ -78963,7 +80400,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 88, + "line": 93, "character": 4 } ], @@ -78973,7 +80410,7 @@ } }, { - "id": 1600, + "id": 1602, "name": "headers", "variant": "declaration", "kind": 1024, @@ -78990,7 +80427,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1601, + "id": 1603, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79004,7 +80441,7 @@ ], "indexSignatures": [ { - "id": 1602, + "id": 1604, "name": "__index", "variant": "signature", "kind": 8192, @@ -79018,7 +80455,7 @@ ], "parameters": [ { - "id": 1603, + "id": 1605, "name": "key", "variant": "param", "kind": 32768, @@ -79039,7 +80476,7 @@ } }, { - "id": 1624, + "id": 1626, "name": "lock", "variant": "declaration", "kind": 1024, @@ -79050,43 +80487,53 @@ "summary": [ { "kind": "text", - "text": "Provide your own locking mechanism based on the environment. By default,\n" + "text": "Provide your own locking mechanism based on the environment. By default\nthe client coordinates refreshes itself (single-flight via\n" }, { "kind": "code", - "text": "`navigatorLock`" + "text": "`refreshingDeferred`" }, { "kind": "text", - "text": " (Web Locks API) is used in browser environments when\n" + "text": " + commit guard) and relies on the GoTrue server to\nresolve cross-tab refresh races. Passing a custom lock opts into a\nlegacy path that wraps every auth operation in your supplied lock — this\npath is preserved for backwards compatibility (typically React Native\n" }, { "kind": "code", - "text": "`persistSession`" + "text": "`processLock`" }, { "kind": "text", - "text": " is true. Falls back to an in-process lock for non-browser\nenvironments (e.g. React Native)." + "text": " or Node multi-process setups)." } ], - "modifierTags": ["@experimental"] + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Custom locks still work in v2.x for backwards compatibility.\nThe legacy lock path will be removed in v3 — drop this option from your\nconstructor options before upgrading." + } + ] + } + ] }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 83, + "line": 88, "character": 4 } ], "type": { "type": "reference", - "target": 1588, + "target": 1590, "name": "LockFunc", "package": "@supabase/auth-js" } }, { - "id": 1627, + "id": 1629, "name": "lockAcquireTimeout", "variant": "declaration", "kind": 1024, @@ -79097,23 +80544,23 @@ "summary": [ { "kind": "text", - "text": "The maximum time in milliseconds to wait for acquiring a cross-tab synchronization lock.\n\nWhen multiple browser tabs or windows use the auth client simultaneously, they coordinate\nvia the Web Locks API to prevent race conditions during session refresh and other operations.\nThis timeout controls how long to wait before attempting lock recovery.\n\n- **Positive value**: Wait up to this many milliseconds. If the lock is still held, attempt\n automatic recovery by stealing it (the previous holder is evicted, its callback continues\n to completion without exclusive access). This recovers from orphaned locks caused by\n React Strict Mode double-mount, storage API hangs, or aborted operations.\n- **Zero (0)**: Fail immediately if the lock is unavailable; throws " + "text": "The maximum time in milliseconds to wait for acquiring the custom lock\nsupplied via the " }, { "kind": "code", - "text": "`LockAcquireTimeoutError`" + "text": "`lock`" }, { "kind": "text", - "text": "\n (check " + "text": " option. Only consulted when a custom " }, { "kind": "code", - "text": "`error.isAcquireTimeout === true`" + "text": "`lock`" }, { "kind": "text", - "text": ").\n- **Negative value**: Wait indefinitely — can cause permanent deadlocks if the lock is orphaned." + "text": " is\npassed — the default lockless path doesn't use this timeout." } ], "blockTags": [ @@ -79127,11 +80574,19 @@ ] }, { - "tag": "@example", + "tag": "@deprecated", "content": [ + { + "kind": "text", + "text": "Only used by the legacy lock path. Will be removed in v3\nalong with the " + }, { "kind": "code", - "text": "```ts\nconst client = createClient(url, key, {\n auth: {\n lockAcquireTimeout: 5000, // 5 seconds, then steal orphaned lock\n },\n})\n```" + "text": "`lock`" + }, + { + "kind": "text", + "text": " option." } ] } @@ -79140,7 +80595,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 120, + "line": 109, "character": 4 } ], @@ -79150,7 +80605,7 @@ } }, { - "id": 1614, + "id": 1616, "name": "persistSession", "variant": "declaration", "kind": 1024, @@ -79170,7 +80625,7 @@ } }, { - "id": 1628, + "id": 1630, "name": "skipAutoInitialize", "variant": "declaration", "kind": 1024, @@ -79199,7 +80654,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 128, + "line": 117, "character": 4 } ], @@ -79209,7 +80664,7 @@ } }, { - "id": 1615, + "id": 1617, "name": "storage", "variant": "declaration", "kind": 1024, @@ -79225,13 +80680,13 @@ ], "type": { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } }, { - "id": 1604, + "id": 1606, "name": "storageKey", "variant": "declaration", "kind": 1024, @@ -79251,7 +80706,7 @@ } }, { - "id": 1626, + "id": 1628, "name": "throwOnError", "variant": "declaration", "kind": 1024, @@ -79269,7 +80724,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 93, + "line": 98, "character": 4 } ], @@ -79279,7 +80734,7 @@ } }, { - "id": 1599, + "id": 1601, "name": "url", "variant": "declaration", "kind": 1024, @@ -79299,7 +80754,7 @@ } }, { - "id": 1616, + "id": 1618, "name": "userStorage", "variant": "declaration", "kind": 1024, @@ -79364,7 +80819,7 @@ ], "type": { "type": "reference", - "target": 2101, + "target": 2103, "name": "SupportedStorage", "package": "@supabase/auth-js" } @@ -79374,8 +80829,8 @@ { "title": "Properties", "children": [ - 1613, 1619, 1605, 1629, 1617, 1618, 1625, 1600, 1624, 1627, 1614, 1628, 1615, - 1604, 1626, 1599, 1616 + 1615, 1621, 1607, 1631, 1619, 1620, 1627, 1602, 1626, 1629, 1616, 1630, 1617, + 1606, 1628, 1601, 1618 ] } ], @@ -79390,7 +80845,7 @@ } }, { - "id": 2104, + "id": 2106, "name": "InitializeResult", "variant": "declaration", "kind": 2097152, @@ -79398,21 +80853,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1539, + "line": 1528, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2105, + "id": 2107, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2106, + "id": 2108, "name": "error", "variant": "declaration", "kind": 1024, @@ -79420,7 +80875,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1540, + "line": 1529, "character": 4 } ], @@ -79429,7 +80884,7 @@ "types": [ { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, @@ -79444,13 +80899,13 @@ "groups": [ { "title": "Properties", - "children": [2106] + "children": [2108] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1539, + "line": 1528, "character": 31 } ] @@ -79458,7 +80913,7 @@ } }, { - "id": 2128, + "id": 2130, "name": "JwtHeader", "variant": "declaration", "kind": 2097152, @@ -79466,21 +80921,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1628, + "line": 1617, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2129, + "id": 2131, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2130, + "id": 2132, "name": "alg", "variant": "declaration", "kind": 1024, @@ -79488,7 +80943,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1629, + "line": 1618, "character": 4 } ], @@ -79517,7 +80972,7 @@ { "type": "reflection", "declaration": { - "id": 2131, + "id": 2133, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79525,7 +80980,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1629, + "line": 1618, "character": 49 } ] @@ -79537,7 +80992,7 @@ } }, { - "id": 2132, + "id": 2134, "name": "kid", "variant": "declaration", "kind": 1024, @@ -79545,7 +81000,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1630, + "line": 1619, "character": 4 } ], @@ -79555,7 +81010,7 @@ } }, { - "id": 2133, + "id": 2135, "name": "typ", "variant": "declaration", "kind": 1024, @@ -79563,7 +81018,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1631, + "line": 1620, "character": 4 } ], @@ -79576,13 +81031,13 @@ "groups": [ { "title": "Properties", - "children": [2130, 2132, 2133] + "children": [2132, 2134, 2135] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1628, + "line": 1617, "character": 24 } ] @@ -79590,7 +81045,7 @@ } }, { - "id": 2326, + "id": 2328, "name": "ListCustomProvidersParams", "variant": "declaration", "kind": 2097152, @@ -79606,21 +81061,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2033, + "line": 2022, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2327, + "id": 2329, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2328, + "id": 2330, "name": "type", "variant": "declaration", "kind": 1024, @@ -79638,13 +81093,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2035, + "line": 2024, "character": 4 } ], "type": { "type": "reference", - "target": 2249, + "target": 2251, "name": "CustomProviderType", "package": "@supabase/auth-js" } @@ -79653,13 +81108,13 @@ "groups": [ { "title": "Properties", - "children": [2328] + "children": [2330] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2033, + "line": 2022, "character": 40 } ] @@ -79667,7 +81122,7 @@ } }, { - "id": 1588, + "id": 1590, "name": "LockFunc", "variant": "declaration", "kind": 2097152, @@ -79699,7 +81154,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1589, + "id": 1591, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79713,14 +81168,14 @@ ], "signatures": [ { - "id": 1590, + "id": 1592, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 1596, + "id": 1598, "name": "R", "variant": "typeParam", "kind": 131072, @@ -79729,7 +81184,7 @@ ], "parameters": [ { - "id": 1591, + "id": 1593, "name": "name", "variant": "param", "kind": 32768, @@ -79748,7 +81203,7 @@ } }, { - "id": 1592, + "id": 1594, "name": "acquireTimeout", "variant": "param", "kind": 32768, @@ -79775,7 +81230,7 @@ } }, { - "id": 1593, + "id": 1595, "name": "fn", "variant": "param", "kind": 32768, @@ -79791,7 +81246,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1594, + "id": 1596, "name": "__type", "variant": "declaration", "kind": 65536, @@ -79805,7 +81260,7 @@ ], "signatures": [ { - "id": 1595, + "id": 1597, "name": "__type", "variant": "signature", "kind": 4096, @@ -79819,7 +81274,7 @@ "typeArguments": [ { "type": "reference", - "target": 1596, + "target": 1598, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -79843,7 +81298,7 @@ "typeArguments": [ { "type": "reference", - "target": 1596, + "target": 1598, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -79858,7 +81313,7 @@ } }, { - "id": 1993, + "id": 1995, "name": "MFAChallengeAndVerifyParams", "variant": "declaration", "kind": 2097152, @@ -79866,7 +81321,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 895, + "line": 884, "character": 12 } ], @@ -79881,7 +81336,7 @@ } }, { - "id": 1992, + "id": 1994, "name": "MFAChallengeParams", "variant": "declaration", "kind": 2097152, @@ -79889,7 +81344,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 891, + "line": 880, "character": 12 } ], @@ -79898,19 +81353,19 @@ "types": [ { "type": "reference", - "target": 1989, + "target": 1991, "name": "MFAChallengeTOTPParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1990, + "target": 1992, "name": "MFAChallengePhoneParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1991, + "target": 1993, "name": "MFAChallengeWebauthnParams", "package": "@supabase/auth-js" } @@ -79918,7 +81373,7 @@ } }, { - "id": 1990, + "id": 1992, "name": "MFAChallengePhoneParams", "variant": "declaration", "kind": 2097152, @@ -79926,7 +81381,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 875, + "line": 864, "character": 12 } ], @@ -79955,7 +81410,7 @@ } }, { - "id": 1989, + "id": 1991, "name": "MFAChallengeTOTPParams", "variant": "declaration", "kind": 2097152, @@ -79963,7 +81418,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 870, + "line": 859, "character": 12 } ], @@ -79978,7 +81433,7 @@ } }, { - "id": 1991, + "id": 1993, "name": "MFAChallengeWebauthnParams", "variant": "declaration", "kind": 2097152, @@ -80007,7 +81462,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 890, + "line": 879, "character": 12 } ], @@ -80036,7 +81491,7 @@ } }, { - "id": 1975, + "id": 1977, "name": "MFAEnrollParams", "variant": "declaration", "kind": 2097152, @@ -80044,7 +81499,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 818, + "line": 807, "character": 12 } ], @@ -80053,19 +81508,19 @@ "types": [ { "type": "reference", - "target": 2122, + "target": 2124, "name": "MFAEnrollTOTPParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2123, + "target": 2125, "name": "MFAEnrollPhoneParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 2124, + "target": 2126, "name": "MFAEnrollWebauthnParams", "package": "@supabase/auth-js" } @@ -80073,7 +81528,7 @@ } }, { - "id": 2123, + "id": 2125, "name": "MFAEnrollPhoneParams", "variant": "declaration", "kind": 2097152, @@ -80081,7 +81536,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1583, + "line": 1572, "character": 12 } ], @@ -80116,7 +81571,7 @@ } }, { - "id": 2122, + "id": 2124, "name": "MFAEnrollTOTPParams", "variant": "declaration", "kind": 2097152, @@ -80124,7 +81579,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1578, + "line": 1567, "character": 12 } ], @@ -80159,7 +81614,7 @@ } }, { - "id": 2124, + "id": 2126, "name": "MFAEnrollWebauthnParams", "variant": "declaration", "kind": 2097152, @@ -80188,7 +81643,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1590, + "line": 1579, "character": 12 } ], @@ -80223,7 +81678,7 @@ } }, { - "id": 1988, + "id": 1990, "name": "MFATOTPChannel", "variant": "declaration", "kind": 2097152, @@ -80231,7 +81686,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 869, + "line": 858, "character": 12 } ], @@ -80257,7 +81712,7 @@ } }, { - "id": 1976, + "id": 1978, "name": "MFAUnenrollParams", "variant": "declaration", "kind": 2097152, @@ -80265,21 +81720,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 819, + "line": 808, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1977, + "id": 1979, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1978, + "id": 1980, "name": "factorId", "variant": "declaration", "kind": 1024, @@ -80295,7 +81750,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 821, + "line": 810, "character": 4 } ], @@ -80308,13 +81763,13 @@ "groups": [ { "title": "Properties", - "children": [1978] + "children": [1980] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 819, + "line": 808, "character": 32 } ] @@ -80322,7 +81777,7 @@ } }, { - "id": 1987, + "id": 1989, "name": "MFAVerifyParams", "variant": "declaration", "kind": 2097152, @@ -80330,7 +81785,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 863, + "line": 852, "character": 12 } ], @@ -80339,19 +81794,19 @@ "types": [ { "type": "reference", - "target": 1979, + "target": 1981, "name": "MFAVerifyTOTPParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1980, + "target": 1982, "name": "MFAVerifyPhoneParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1985, + "target": 1987, "name": "MFAVerifyWebauthnParams", "package": "@supabase/auth-js" } @@ -80359,7 +81814,7 @@ } }, { - "id": 1980, + "id": 1982, "name": "MFAVerifyPhoneParams", "variant": "declaration", "kind": 2097152, @@ -80367,7 +81822,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 835, + "line": 824, "character": 12 } ], @@ -80396,7 +81851,7 @@ } }, { - "id": 1979, + "id": 1981, "name": "MFAVerifyTOTPParams", "variant": "declaration", "kind": 2097152, @@ -80404,7 +81859,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 833, + "line": 822, "character": 12 } ], @@ -80433,7 +81888,7 @@ } }, { - "id": 1981, + "id": 1983, "name": "MFAVerifyWebauthnParamFields", "variant": "declaration", "kind": 2097152, @@ -80449,13 +81904,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 853, + "line": 842, "character": 12 } ], "typeParameters": [ { - "id": 1984, + "id": 1986, "name": "T", "variant": "typeParam", "kind": 131072, @@ -80499,14 +81954,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1982, + "id": 1984, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1983, + "id": 1985, "name": "webauthn", "variant": "declaration", "kind": 1024, @@ -80514,7 +81969,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 854, + "line": 843, "character": 4 } ], @@ -80539,7 +81994,7 @@ "typeArguments": [ { "type": "reference", - "target": 1984, + "target": 1986, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -80555,13 +82010,13 @@ "groups": [ { "title": "Properties", - "children": [1983] + "children": [1985] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 853, + "line": 842, "character": 98 } ] @@ -80569,7 +82024,7 @@ } }, { - "id": 1985, + "id": 1987, "name": "MFAVerifyWebauthnParams", "variant": "declaration", "kind": 2097152, @@ -80598,13 +82053,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 862, + "line": 851, "character": 12 } ], "typeParameters": [ { - "id": 1986, + "id": 1988, "name": "T", "variant": "typeParam", "kind": 131072, @@ -80659,11 +82114,11 @@ }, { "type": "reference", - "target": 1981, + "target": 1983, "typeArguments": [ { "type": "reference", - "target": 1986, + "target": 1988, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -80676,7 +82131,7 @@ } }, { - "id": 1904, + "id": 1906, "name": "MobileOtpType", "variant": "declaration", "kind": 2097152, @@ -80684,7 +82139,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 703, + "line": 692, "character": 12 } ], @@ -80709,7 +82164,7 @@ { "type": "reflection", "declaration": { - "id": 1905, + "id": 1907, "name": "__type", "variant": "declaration", "kind": 65536, @@ -80717,7 +82172,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 703, + "line": 692, "character": 63 } ] @@ -80729,7 +82184,7 @@ } }, { - "id": 2361, + "id": 2363, "name": "OAuthAuthorizationClient", "variant": "declaration", "kind": 2097152, @@ -80745,21 +82200,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2123, + "line": 2112, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2362, + "id": 2364, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2363, + "id": 2365, "name": "id", "variant": "declaration", "kind": 1024, @@ -80775,7 +82230,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2125, + "line": 2114, "character": 4 } ], @@ -80785,7 +82240,7 @@ } }, { - "id": 2366, + "id": 2368, "name": "logo_uri", "variant": "declaration", "kind": 1024, @@ -80801,7 +82256,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2131, + "line": 2120, "character": 4 } ], @@ -80811,7 +82266,7 @@ } }, { - "id": 2364, + "id": 2366, "name": "name", "variant": "declaration", "kind": 1024, @@ -80827,7 +82282,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2127, + "line": 2116, "character": 4 } ], @@ -80837,7 +82292,7 @@ } }, { - "id": 2365, + "id": 2367, "name": "uri", "variant": "declaration", "kind": 1024, @@ -80853,7 +82308,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2129, + "line": 2118, "character": 4 } ], @@ -80866,13 +82321,13 @@ "groups": [ { "title": "Properties", - "children": [2363, 2366, 2364, 2365] + "children": [2365, 2368, 2366, 2367] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2123, + "line": 2112, "character": 39 } ] @@ -80880,7 +82335,7 @@ } }, { - "id": 2367, + "id": 2369, "name": "OAuthAuthorizationDetails", "variant": "declaration", "kind": 2097152, @@ -80912,21 +82367,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2144, + "line": 2133, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2368, + "id": 2370, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2369, + "id": 2371, "name": "authorization_id", "variant": "declaration", "kind": 1024, @@ -80942,7 +82397,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2146, + "line": 2135, "character": 4 } ], @@ -80952,7 +82407,7 @@ } }, { - "id": 2371, + "id": 2373, "name": "client", "variant": "declaration", "kind": 1024, @@ -80968,19 +82423,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2150, + "line": 2139, "character": 4 } ], "type": { "type": "reference", - "target": 2361, + "target": 2363, "name": "OAuthAuthorizationClient", "package": "@supabase/auth-js" } }, { - "id": 2370, + "id": 2372, "name": "redirect_uri", "variant": "declaration", "kind": 1024, @@ -80996,7 +82451,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2148, + "line": 2137, "character": 4 } ], @@ -81006,7 +82461,7 @@ } }, { - "id": 2376, + "id": 2378, "name": "scope", "variant": "declaration", "kind": 1024, @@ -81022,7 +82477,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2159, + "line": 2148, "character": 4 } ], @@ -81032,7 +82487,7 @@ } }, { - "id": 2372, + "id": 2374, "name": "user", "variant": "declaration", "kind": 1024, @@ -81048,21 +82503,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2152, + "line": 2141, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2373, + "id": 2375, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2375, + "id": 2377, "name": "email", "variant": "declaration", "kind": 1024, @@ -81078,7 +82533,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2156, + "line": 2145, "character": 8 } ], @@ -81088,7 +82543,7 @@ } }, { - "id": 2374, + "id": 2376, "name": "id", "variant": "declaration", "kind": 1024, @@ -81104,7 +82559,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2154, + "line": 2143, "character": 8 } ], @@ -81117,13 +82572,13 @@ "groups": [ { "title": "Properties", - "children": [2375, 2374] + "children": [2377, 2376] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2152, + "line": 2141, "character": 10 } ] @@ -81134,13 +82589,13 @@ "groups": [ { "title": "Properties", - "children": [2369, 2371, 2370, 2376, 2372] + "children": [2371, 2373, 2372, 2378, 2374] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2144, + "line": 2133, "character": 40 } ] @@ -81148,7 +82603,7 @@ } }, { - "id": 2180, + "id": 2182, "name": "OAuthClient", "variant": "declaration", "kind": 2097152, @@ -81164,21 +82619,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1707, + "line": 1696, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2181, + "id": 2183, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2182, + "id": 2184, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -81194,7 +82649,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1709, + "line": 1698, "character": 4 } ], @@ -81204,7 +82659,7 @@ } }, { - "id": 2183, + "id": 2185, "name": "client_name", "variant": "declaration", "kind": 1024, @@ -81220,7 +82675,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1711, + "line": 1700, "character": 4 } ], @@ -81230,7 +82685,7 @@ } }, { - "id": 2184, + "id": 2186, "name": "client_secret", "variant": "declaration", "kind": 1024, @@ -81248,7 +82703,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1713, + "line": 1702, "character": 4 } ], @@ -81258,7 +82713,7 @@ } }, { - "id": 2185, + "id": 2187, "name": "client_type", "variant": "declaration", "kind": 1024, @@ -81274,19 +82729,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1715, + "line": 1704, "character": 4 } ], "type": { "type": "reference", - "target": 2177, + "target": 2179, "name": "OAuthClientType", "package": "@supabase/auth-js" } }, { - "id": 2188, + "id": 2190, "name": "client_uri", "variant": "declaration", "kind": 1024, @@ -81304,7 +82759,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1721, + "line": 1710, "character": 4 } ], @@ -81314,7 +82769,7 @@ } }, { - "id": 2194, + "id": 2196, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -81330,7 +82785,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1733, + "line": 1722, "character": 4 } ], @@ -81340,7 +82795,7 @@ } }, { - "id": 2191, + "id": 2193, "name": "grant_types", "variant": "declaration", "kind": 1024, @@ -81356,7 +82811,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1727, + "line": 1716, "character": 4 } ], @@ -81364,14 +82819,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2174, + "target": 2176, "name": "OAuthClientGrantType", "package": "@supabase/auth-js" } } }, { - "id": 2189, + "id": 2191, "name": "logo_uri", "variant": "declaration", "kind": 1024, @@ -81389,7 +82844,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1723, + "line": 1712, "character": 4 } ], @@ -81399,7 +82854,7 @@ } }, { - "id": 2190, + "id": 2192, "name": "redirect_uris", "variant": "declaration", "kind": 1024, @@ -81415,7 +82870,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1725, + "line": 1714, "character": 4 } ], @@ -81428,7 +82883,7 @@ } }, { - "id": 2187, + "id": 2189, "name": "registration_type", "variant": "declaration", "kind": 1024, @@ -81444,19 +82899,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1719, + "line": 1708, "character": 4 } ], "type": { "type": "reference", - "target": 2178, + "target": 2180, "name": "OAuthClientRegistrationType", "package": "@supabase/auth-js" } }, { - "id": 2192, + "id": 2194, "name": "response_types", "variant": "declaration", "kind": 1024, @@ -81472,7 +82927,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1729, + "line": 1718, "character": 4 } ], @@ -81480,14 +82935,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2176, + "target": 2178, "name": "OAuthClientResponseType", "package": "@supabase/auth-js" } } }, { - "id": 2193, + "id": 2195, "name": "scope", "variant": "declaration", "kind": 1024, @@ -81505,7 +82960,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1731, + "line": 1720, "character": 4 } ], @@ -81515,7 +82970,7 @@ } }, { - "id": 2186, + "id": 2188, "name": "token_endpoint_auth_method", "variant": "declaration", "kind": 1024, @@ -81531,19 +82986,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1717, + "line": 1706, "character": 4 } ], "type": { "type": "reference", - "target": 2179, + "target": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "package": "@supabase/auth-js" } }, { - "id": 2195, + "id": 2197, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -81559,7 +83014,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1735, + "line": 1724, "character": 4 } ], @@ -81573,15 +83028,15 @@ { "title": "Properties", "children": [ - 2182, 2183, 2184, 2185, 2188, 2194, 2191, 2189, 2190, 2187, 2192, 2193, 2186, - 2195 + 2184, 2185, 2186, 2187, 2190, 2196, 2193, 2191, 2192, 2189, 2194, 2195, 2188, + 2197 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1707, + "line": 1696, "character": 26 } ] @@ -81589,7 +83044,7 @@ } }, { - "id": 2174, + "id": 2176, "name": "OAuthClientGrantType", "variant": "declaration", "kind": 2097152, @@ -81605,7 +83060,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1682, + "line": 1671, "character": 12 } ], @@ -81630,7 +83085,7 @@ { "type": "reflection", "declaration": { - "id": 2175, + "id": 2177, "name": "__type", "variant": "declaration", "kind": 65536, @@ -81638,7 +83093,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1682, + "line": 1671, "character": 86 } ] @@ -81650,7 +83105,7 @@ } }, { - "id": 2214, + "id": 2216, "name": "OAuthClientListResponse", "variant": "declaration", "kind": 2097152, @@ -81666,7 +83121,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1785, + "line": 1774, "character": 12 } ], @@ -81676,14 +83131,14 @@ { "type": "reflection", "declaration": { - "id": 2215, + "id": 2217, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2216, + "id": 2218, "name": "data", "variant": "declaration", "kind": 1024, @@ -81691,7 +83146,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1786, + "line": 1775, "character": 4 } ], @@ -81701,14 +83156,14 @@ { "type": "reflection", "declaration": { - "id": 2217, + "id": 2219, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2219, + "id": 2221, "name": "aud", "variant": "declaration", "kind": 1024, @@ -81716,7 +83171,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1788, + "line": 1777, "character": 8 } ], @@ -81726,7 +83181,7 @@ } }, { - "id": 2218, + "id": 2220, "name": "clients", "variant": "declaration", "kind": 1024, @@ -81734,7 +83189,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1787, + "line": 1776, "character": 8 } ], @@ -81742,7 +83197,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2180, + "target": 2182, "name": "OAuthClient", "package": "@supabase/auth-js" } @@ -81752,13 +83207,13 @@ "groups": [ { "title": "Properties", - "children": [2219, 2218] + "children": [2221, 2220] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1786, + "line": 1775, "character": 10 } ] @@ -81766,7 +83221,7 @@ }, { "type": "reference", - "target": 2108, + "target": 2110, "name": "Pagination", "package": "@supabase/auth-js" } @@ -81774,7 +83229,7 @@ } }, { - "id": 2220, + "id": 2222, "name": "error", "variant": "declaration", "kind": 1024, @@ -81782,7 +83237,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1790, + "line": 1779, "character": 4 } ], @@ -81795,13 +83250,13 @@ "groups": [ { "title": "Properties", - "children": [2216, 2220] + "children": [2218, 2222] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1785, + "line": 1774, "character": 38 } ] @@ -81810,14 +83265,14 @@ { "type": "reflection", "declaration": { - "id": 2221, + "id": 2223, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2222, + "id": 2224, "name": "data", "variant": "declaration", "kind": 1024, @@ -81825,21 +83280,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1792, + "line": 1781, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2223, + "id": 2225, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2224, + "id": 2226, "name": "clients", "variant": "declaration", "kind": 1024, @@ -81847,7 +83302,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1793, + "line": 1782, "character": 8 } ], @@ -81859,13 +83314,13 @@ "groups": [ { "title": "Properties", - "children": [2224] + "children": [2226] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1792, + "line": 1781, "character": 10 } ] @@ -81873,7 +83328,7 @@ } }, { - "id": 2225, + "id": 2227, "name": "error", "variant": "declaration", "kind": 1024, @@ -81881,13 +83336,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1795, + "line": 1784, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -81896,13 +83351,13 @@ "groups": [ { "title": "Properties", - "children": [2222, 2225] + "children": [2224, 2227] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1791, + "line": 1780, "character": 4 } ] @@ -81912,7 +83367,7 @@ } }, { - "id": 2178, + "id": 2180, "name": "OAuthClientRegistrationType", "variant": "declaration", "kind": 2097152, @@ -81928,7 +83383,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1697, + "line": 1686, "character": 12 } ], @@ -81947,7 +83402,7 @@ } }, { - "id": 2213, + "id": 2215, "name": "OAuthClientResponse", "variant": "declaration", "kind": 2097152, @@ -81963,17 +83418,17 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1780, + "line": 1769, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reference", - "target": 2180, + "target": 2182, "name": "OAuthClient", "package": "@supabase/auth-js" } @@ -81983,7 +83438,7 @@ } }, { - "id": 2176, + "id": 2178, "name": "OAuthClientResponseType", "variant": "declaration", "kind": 2097152, @@ -81999,7 +83454,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1687, + "line": 1676, "character": 12 } ], @@ -82009,7 +83464,7 @@ } }, { - "id": 2179, + "id": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "variant": "declaration", "kind": 2097152, @@ -82025,7 +83480,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1702, + "line": 1691, "character": 12 } ], @@ -82048,7 +83503,7 @@ } }, { - "id": 2177, + "id": 2179, "name": "OAuthClientType", "variant": "declaration", "kind": 2097152, @@ -82064,7 +83519,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1692, + "line": 1681, "character": 12 } ], @@ -82083,7 +83538,7 @@ } }, { - "id": 2382, + "id": 2384, "name": "OAuthGrant", "variant": "declaration", "kind": 2097152, @@ -82099,21 +83554,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2210, + "line": 2199, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2383, + "id": 2385, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2384, + "id": 2386, "name": "client", "variant": "declaration", "kind": 1024, @@ -82129,19 +83584,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2212, + "line": 2201, "character": 4 } ], "type": { "type": "reference", - "target": 2361, + "target": 2363, "name": "OAuthAuthorizationClient", "package": "@supabase/auth-js" } }, { - "id": 2386, + "id": 2388, "name": "granted_at", "variant": "declaration", "kind": 1024, @@ -82157,7 +83612,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2216, + "line": 2205, "character": 4 } ], @@ -82167,7 +83622,7 @@ } }, { - "id": 2385, + "id": 2387, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -82183,7 +83638,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2214, + "line": 2203, "character": 4 } ], @@ -82199,13 +83654,13 @@ "groups": [ { "title": "Properties", - "children": [2384, 2386, 2385] + "children": [2386, 2388, 2387] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2210, + "line": 2199, "character": 25 } ] @@ -82213,7 +83668,7 @@ } }, { - "id": 2377, + "id": 2379, "name": "OAuthRedirect", "variant": "declaration", "kind": 2097152, @@ -82237,21 +83692,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2174, + "line": 2163, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2378, + "id": 2380, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2379, + "id": 2381, "name": "redirect_url", "variant": "declaration", "kind": 1024, @@ -82267,7 +83722,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2176, + "line": 2165, "character": 4 } ], @@ -82280,13 +83735,13 @@ "groups": [ { "title": "Properties", - "children": [2379] + "children": [2381] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2174, + "line": 2163, "character": 28 } ] @@ -82294,7 +83749,7 @@ } }, { - "id": 1683, + "id": 1685, "name": "OAuthResponse", "variant": "declaration", "kind": 2097152, @@ -82302,7 +83757,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 219, + "line": 208, "character": 12 } ], @@ -82312,14 +83767,14 @@ { "type": "reflection", "declaration": { - "id": 1684, + "id": 1686, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1685, + "id": 1687, "name": "data", "variant": "declaration", "kind": 1024, @@ -82327,21 +83782,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 220, + "line": 209, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1686, + "id": 1688, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1687, + "id": 1689, "name": "provider", "variant": "declaration", "kind": 1024, @@ -82349,19 +83804,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 221, + "line": 210, "character": 8 } ], "type": { "type": "reference", - "target": 1585, + "target": 1587, "name": "Provider", "package": "@supabase/auth-js" } }, { - "id": 1688, + "id": 1690, "name": "url", "variant": "declaration", "kind": 1024, @@ -82369,7 +83824,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 222, + "line": 211, "character": 8 } ], @@ -82382,13 +83837,13 @@ "groups": [ { "title": "Properties", - "children": [1687, 1688] + "children": [1689, 1690] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 220, + "line": 209, "character": 10 } ] @@ -82396,7 +83851,7 @@ } }, { - "id": 1689, + "id": 1691, "name": "error", "variant": "declaration", "kind": 1024, @@ -82404,7 +83859,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 224, + "line": 213, "character": 4 } ], @@ -82417,13 +83872,13 @@ "groups": [ { "title": "Properties", - "children": [1685, 1689] + "children": [1687, 1691] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 219, + "line": 208, "character": 28 } ] @@ -82432,14 +83887,14 @@ { "type": "reflection", "declaration": { - "id": 1690, + "id": 1692, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1691, + "id": 1693, "name": "data", "variant": "declaration", "kind": 1024, @@ -82447,21 +83902,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 226, + "line": 215, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1692, + "id": 1694, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1693, + "id": 1695, "name": "provider", "variant": "declaration", "kind": 1024, @@ -82469,19 +83924,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 227, + "line": 216, "character": 8 } ], "type": { "type": "reference", - "target": 1585, + "target": 1587, "name": "Provider", "package": "@supabase/auth-js" } }, { - "id": 1694, + "id": 1696, "name": "url", "variant": "declaration", "kind": 1024, @@ -82489,7 +83944,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 228, + "line": 217, "character": 8 } ], @@ -82502,13 +83957,13 @@ "groups": [ { "title": "Properties", - "children": [1693, 1694] + "children": [1695, 1696] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 226, + "line": 215, "character": 10 } ] @@ -82516,7 +83971,7 @@ } }, { - "id": 1695, + "id": 1697, "name": "error", "variant": "declaration", "kind": 1024, @@ -82524,13 +83979,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 230, + "line": 219, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -82539,13 +83994,13 @@ "groups": [ { "title": "Properties", - "children": [1691, 1695] + "children": [1693, 1697] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 225, + "line": 214, "character": 4 } ] @@ -82555,7 +84010,7 @@ } }, { - "id": 2250, + "id": 2252, "name": "OIDCDiscoveryDocument", "variant": "declaration", "kind": 2097152, @@ -82571,21 +84026,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1875, + "line": 1864, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2251, + "id": 2253, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2253, + "id": 2255, "name": "authorization_endpoint", "variant": "declaration", "kind": 1024, @@ -82601,7 +84056,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1879, + "line": 1868, "character": 4 } ], @@ -82611,7 +84066,7 @@ } }, { - "id": 2252, + "id": 2254, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -82627,7 +84082,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1877, + "line": 1866, "character": 4 } ], @@ -82637,7 +84092,7 @@ } }, { - "id": 2255, + "id": 2257, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -82653,7 +84108,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1883, + "line": 1872, "character": 4 } ], @@ -82663,7 +84118,7 @@ } }, { - "id": 2257, + "id": 2259, "name": "revocation_endpoint", "variant": "declaration", "kind": 1024, @@ -82681,7 +84136,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1887, + "line": 1876, "character": 4 } ], @@ -82691,7 +84146,7 @@ } }, { - "id": 2261, + "id": 2263, "name": "supported_id_token_signing_algs", "variant": "declaration", "kind": 1024, @@ -82709,7 +84164,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1895, + "line": 1884, "character": 4 } ], @@ -82722,7 +84177,7 @@ } }, { - "id": 2259, + "id": 2261, "name": "supported_response_types", "variant": "declaration", "kind": 1024, @@ -82740,7 +84195,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1891, + "line": 1880, "character": 4 } ], @@ -82753,7 +84208,7 @@ } }, { - "id": 2258, + "id": 2260, "name": "supported_scopes", "variant": "declaration", "kind": 1024, @@ -82771,7 +84226,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1889, + "line": 1878, "character": 4 } ], @@ -82784,7 +84239,7 @@ } }, { - "id": 2260, + "id": 2262, "name": "supported_subject_types", "variant": "declaration", "kind": 1024, @@ -82802,7 +84257,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1893, + "line": 1882, "character": 4 } ], @@ -82815,7 +84270,7 @@ } }, { - "id": 2254, + "id": 2256, "name": "token_endpoint", "variant": "declaration", "kind": 1024, @@ -82831,7 +84286,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1881, + "line": 1870, "character": 4 } ], @@ -82841,7 +84296,7 @@ } }, { - "id": 2256, + "id": 2258, "name": "userinfo_endpoint", "variant": "declaration", "kind": 1024, @@ -82859,7 +84314,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1885, + "line": 1874, "character": 4 } ], @@ -82872,13 +84327,13 @@ "groups": [ { "title": "Properties", - "children": [2253, 2252, 2255, 2257, 2261, 2259, 2258, 2260, 2254, 2256] + "children": [2255, 2254, 2257, 2259, 2263, 2261, 2260, 2262, 2256, 2258] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1875, + "line": 1864, "character": 36 } ] @@ -82886,7 +84341,7 @@ } }, { - "id": 2115, + "id": 2117, "name": "PageParams", "variant": "declaration", "kind": 2097152, @@ -82894,21 +84349,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1549, + "line": 1538, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2116, + "id": 2118, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2117, + "id": 2119, "name": "page", "variant": "declaration", "kind": 1024, @@ -82926,7 +84381,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1551, + "line": 1540, "character": 4 } ], @@ -82936,7 +84391,7 @@ } }, { - "id": 2118, + "id": 2120, "name": "perPage", "variant": "declaration", "kind": 1024, @@ -82954,7 +84409,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1553, + "line": 1542, "character": 4 } ], @@ -82967,13 +84422,13 @@ "groups": [ { "title": "Properties", - "children": [2117, 2118] + "children": [2119, 2120] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1549, + "line": 1538, "character": 25 } ] @@ -82981,7 +84436,7 @@ } }, { - "id": 2108, + "id": 2110, "name": "Pagination", "variant": "declaration", "kind": 2097152, @@ -82989,21 +84444,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1543, + "line": 1532, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2109, + "id": 2111, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2111, + "id": 2113, "name": "lastPage", "variant": "declaration", "kind": 1024, @@ -83011,7 +84466,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1546, + "line": 1535, "character": 4 } ], @@ -83021,7 +84476,7 @@ } }, { - "id": 2110, + "id": 2112, "name": "nextPage", "variant": "declaration", "kind": 1024, @@ -83029,7 +84484,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1545, + "line": 1534, "character": 4 } ], @@ -83048,7 +84503,7 @@ } }, { - "id": 2112, + "id": 2114, "name": "total", "variant": "declaration", "kind": 1024, @@ -83056,7 +84511,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1547, + "line": 1536, "character": 4 } ], @@ -83069,19 +84524,19 @@ "groups": [ { "title": "Properties", - "children": [2111, 2110, 2112] + "children": [2113, 2112, 2114] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1543, + "line": 1532, "character": 25 } ], "indexSignatures": [ { - "id": 2113, + "id": 2115, "name": "__index", "variant": "signature", "kind": 8192, @@ -83089,13 +84544,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1544, + "line": 1533, "character": 4 } ], "parameters": [ { - "id": 2114, + "id": 2116, "name": "key", "variant": "param", "kind": 32768, @@ -83116,7 +84571,7 @@ } }, { - "id": 2427, + "id": 2429, "name": "PasskeyAuthenticationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -83132,21 +84587,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2342, + "line": 2331, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2428, + "id": 2430, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2429, + "id": 2431, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83154,7 +84609,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2343, + "line": 2332, "character": 4 } ], @@ -83164,7 +84619,7 @@ } }, { - "id": 2431, + "id": 2433, "name": "expires_at", "variant": "declaration", "kind": 1024, @@ -83172,7 +84627,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2345, + "line": 2334, "character": 4 } ], @@ -83182,7 +84637,7 @@ } }, { - "id": 2430, + "id": 2432, "name": "options", "variant": "declaration", "kind": 1024, @@ -83190,7 +84645,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2344, + "line": 2333, "character": 4 } ], @@ -83208,13 +84663,13 @@ "groups": [ { "title": "Properties", - "children": [2429, 2431, 2430] + "children": [2431, 2433, 2432] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2342, + "line": 2331, "character": 51 } ] @@ -83222,7 +84677,7 @@ } }, { - "id": 2432, + "id": 2434, "name": "PasskeyAuthenticationVerifyParams", "variant": "declaration", "kind": 2097152, @@ -83238,21 +84693,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2348, + "line": 2337, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2433, + "id": 2435, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2434, + "id": 2436, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83260,7 +84715,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2349, + "line": 2338, "character": 4 } ], @@ -83270,7 +84725,7 @@ } }, { - "id": 2435, + "id": 2437, "name": "credential", "variant": "declaration", "kind": 1024, @@ -83278,7 +84733,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2350, + "line": 2339, "character": 4 } ], @@ -83296,13 +84751,13 @@ "groups": [ { "title": "Properties", - "children": [2434, 2435] + "children": [2436, 2437] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2348, + "line": 2337, "character": 48 } ] @@ -83310,7 +84765,7 @@ } }, { - "id": 2470, + "id": 2472, "name": "PasskeyDeleteParams", "variant": "declaration", "kind": 2097152, @@ -83318,21 +84773,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2393, + "line": 2382, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2471, + "id": 2473, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2472, + "id": 2474, "name": "passkeyId", "variant": "declaration", "kind": 1024, @@ -83348,7 +84803,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2395, + "line": 2384, "character": 4 } ], @@ -83361,13 +84816,13 @@ "groups": [ { "title": "Properties", - "children": [2472] + "children": [2474] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2393, + "line": 2382, "character": 34 } ] @@ -83375,7 +84830,7 @@ } }, { - "id": 2436, + "id": 2438, "name": "PasskeyListItem", "variant": "declaration", "kind": 2097152, @@ -83391,21 +84846,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2353, + "line": 2342, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2437, + "id": 2439, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2440, + "id": 2442, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -83413,7 +84868,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2356, + "line": 2345, "character": 4 } ], @@ -83423,7 +84878,7 @@ } }, { - "id": 2439, + "id": 2441, "name": "friendly_name", "variant": "declaration", "kind": 1024, @@ -83433,7 +84888,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2355, + "line": 2344, "character": 4 } ], @@ -83443,7 +84898,7 @@ } }, { - "id": 2438, + "id": 2440, "name": "id", "variant": "declaration", "kind": 1024, @@ -83451,7 +84906,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2354, + "line": 2343, "character": 4 } ], @@ -83461,7 +84916,7 @@ } }, { - "id": 2441, + "id": 2443, "name": "last_used_at", "variant": "declaration", "kind": 1024, @@ -83471,7 +84926,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2357, + "line": 2346, "character": 4 } ], @@ -83484,13 +84939,13 @@ "groups": [ { "title": "Properties", - "children": [2440, 2439, 2438, 2441] + "children": [2442, 2441, 2440, 2443] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2353, + "line": 2342, "character": 30 } ] @@ -83498,7 +84953,7 @@ } }, { - "id": 2422, + "id": 2424, "name": "PasskeyMetadata", "variant": "declaration", "kind": 2097152, @@ -83514,21 +84969,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2336, + "line": 2325, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2423, + "id": 2425, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2426, + "id": 2428, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -83536,7 +84991,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2339, + "line": 2328, "character": 4 } ], @@ -83546,7 +85001,7 @@ } }, { - "id": 2425, + "id": 2427, "name": "friendly_name", "variant": "declaration", "kind": 1024, @@ -83556,7 +85011,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2338, + "line": 2327, "character": 4 } ], @@ -83566,7 +85021,7 @@ } }, { - "id": 2424, + "id": 2426, "name": "id", "variant": "declaration", "kind": 1024, @@ -83574,7 +85029,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2337, + "line": 2326, "character": 4 } ], @@ -83587,13 +85042,13 @@ "groups": [ { "title": "Properties", - "children": [2426, 2425, 2424] + "children": [2428, 2427, 2426] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2336, + "line": 2325, "character": 30 } ] @@ -83601,7 +85056,7 @@ } }, { - "id": 2413, + "id": 2415, "name": "PasskeyRegistrationOptionsResponse", "variant": "declaration", "kind": 2097152, @@ -83617,21 +85072,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2325, + "line": 2314, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2414, + "id": 2416, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2415, + "id": 2417, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83639,7 +85094,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2326, + "line": 2315, "character": 4 } ], @@ -83649,7 +85104,7 @@ } }, { - "id": 2417, + "id": 2419, "name": "expires_at", "variant": "declaration", "kind": 1024, @@ -83657,7 +85112,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2328, + "line": 2317, "character": 4 } ], @@ -83667,7 +85122,7 @@ } }, { - "id": 2416, + "id": 2418, "name": "options", "variant": "declaration", "kind": 1024, @@ -83675,7 +85130,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2327, + "line": 2316, "character": 4 } ], @@ -83693,13 +85148,13 @@ "groups": [ { "title": "Properties", - "children": [2415, 2417, 2416] + "children": [2417, 2419, 2418] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2325, + "line": 2314, "character": 49 } ] @@ -83707,7 +85162,7 @@ } }, { - "id": 2418, + "id": 2420, "name": "PasskeyRegistrationVerifyParams", "variant": "declaration", "kind": 2097152, @@ -83723,21 +85178,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2331, + "line": 2320, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2419, + "id": 2421, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2420, + "id": 2422, "name": "challenge_id", "variant": "declaration", "kind": 1024, @@ -83745,7 +85200,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2332, + "line": 2321, "character": 4 } ], @@ -83755,7 +85210,7 @@ } }, { - "id": 2421, + "id": 2423, "name": "credential", "variant": "declaration", "kind": 1024, @@ -83763,7 +85218,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2333, + "line": 2322, "character": 4 } ], @@ -83781,13 +85236,13 @@ "groups": [ { "title": "Properties", - "children": [2420, 2421] + "children": [2422, 2423] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2331, + "line": 2320, "character": 46 } ] @@ -83795,7 +85250,7 @@ } }, { - "id": 2466, + "id": 2468, "name": "PasskeyUpdateParams", "variant": "declaration", "kind": 2097152, @@ -83803,21 +85258,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2387, + "line": 2376, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2467, + "id": 2469, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2469, + "id": 2471, "name": "friendlyName", "variant": "declaration", "kind": 1024, @@ -83833,7 +85288,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2391, + "line": 2380, "character": 4 } ], @@ -83843,7 +85298,7 @@ } }, { - "id": 2468, + "id": 2470, "name": "passkeyId", "variant": "declaration", "kind": 1024, @@ -83859,7 +85314,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2389, + "line": 2378, "character": 4 } ], @@ -83872,13 +85327,13 @@ "groups": [ { "title": "Properties", - "children": [2469, 2468] + "children": [2471, 2470] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2387, + "line": 2376, "character": 34 } ] @@ -83894,7 +85349,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 622, + "line": 641, "character": 5 } ], @@ -83941,7 +85396,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 623, + "line": 642, "character": 5 } ], @@ -83982,7 +85437,7 @@ "sources": [ { "fileName": "packages/core/postgrest-js/dist/index.d.cts", - "line": 621, + "line": 640, "character": 5 } ], @@ -84029,7 +85484,7 @@ } }, { - "id": 1638, + "id": 1640, "name": "Prettify", "variant": "declaration", "kind": 2097152, @@ -84045,13 +85500,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 159, + "line": 148, "character": 12 } ], "typeParameters": [ { - "id": 1639, + "id": 1641, "name": "T", "variant": "typeParam", "kind": 131072, @@ -84062,7 +85517,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84078,7 +85533,7 @@ }, "trueType": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84091,7 +85546,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84111,7 +85566,7 @@ }, "objectType": { "type": "reference", - "target": 1639, + "target": 1641, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -84121,7 +85576,7 @@ } }, { - "id": 1585, + "id": 1587, "name": "Provider", "variant": "declaration", "kind": 2097152, @@ -84313,9 +85768,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 301, + "line": 308, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L308" } ], "typeParameters": [ @@ -84361,9 +85816,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 301, + "line": 308, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L308" } ], "type": { @@ -84381,9 +85836,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 301, + "line": 308, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L308" } ] } @@ -84432,9 +85887,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 302, + "line": 309, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L309" } ], "type": { @@ -84461,9 +85916,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 300, + "line": 307, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L300" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L307" } ], "typeParameters": [ @@ -84516,7 +85971,7 @@ } }, { - "id": 3114, + "id": 3136, "name": "RealtimeChannelOptions", "variant": "declaration", "kind": 2097152, @@ -84531,14 +85986,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3115, + "id": 3137, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3116, + "id": 3138, "name": "config", "variant": "declaration", "kind": 1024, @@ -84553,14 +86008,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3117, + "id": 3139, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3118, + "id": 3140, "name": "broadcast", "variant": "declaration", "kind": 1024, @@ -84585,14 +86040,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3119, + "id": 3141, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3121, + "id": 3143, "name": "ack", "variant": "declaration", "kind": 1024, @@ -84612,7 +86067,7 @@ } }, { - "id": 3122, + "id": 3144, "name": "replay", "variant": "declaration", "kind": 1024, @@ -84637,7 +86092,7 @@ } }, { - "id": 3120, + "id": 3142, "name": "self", "variant": "declaration", "kind": 1024, @@ -84660,7 +86115,7 @@ "groups": [ { "title": "Properties", - "children": [3121, 3122, 3120] + "children": [3143, 3144, 3142] } ], "sources": [ @@ -84674,7 +86129,7 @@ } }, { - "id": 3123, + "id": 3145, "name": "presence", "variant": "declaration", "kind": 1024, @@ -84699,14 +86154,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3124, + "id": 3146, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3126, + "id": 3148, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -84726,7 +86181,7 @@ } }, { - "id": 3125, + "id": 3147, "name": "key", "variant": "declaration", "kind": 1024, @@ -84749,7 +86204,7 @@ "groups": [ { "title": "Properties", - "children": [3126, 3125] + "children": [3148, 3147] } ], "sources": [ @@ -84763,7 +86218,7 @@ } }, { - "id": 3127, + "id": 3149, "name": "private", "variant": "declaration", "kind": 1024, @@ -84794,7 +86249,7 @@ "groups": [ { "title": "Properties", - "children": [3118, 3123, 3127] + "children": [3140, 3145, 3149] } ], "sources": [ @@ -84811,7 +86266,7 @@ "groups": [ { "title": "Properties", - "children": [3116] + "children": [3138] } ], "sources": [ @@ -84825,7 +86280,7 @@ } }, { - "id": 3128, + "id": 3150, "name": "RealtimeChannelSendResponse", "variant": "declaration", "kind": 2097152, @@ -84862,7 +86317,7 @@ { "type": "reflection", "declaration": { - "id": 3129, + "id": 3151, "name": "__type", "variant": "declaration", "kind": 65536, @@ -84882,7 +86337,7 @@ } }, { - "id": 3251, + "id": 3273, "name": "RealtimeClientOptions", "variant": "declaration", "kind": 2097152, @@ -84897,14 +86352,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3252, + "id": 3274, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3287, + "id": 3309, "name": "accessToken", "variant": "declaration", "kind": 1024, @@ -84921,7 +86376,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3288, + "id": 3310, "name": "__type", "variant": "declaration", "kind": 65536, @@ -84935,7 +86390,7 @@ ], "signatures": [ { - "id": 3289, + "id": 3311, "name": "__type", "variant": "signature", "kind": 4096, @@ -84970,7 +86425,7 @@ } }, { - "id": 3269, + "id": 3291, "name": "decode", "variant": "declaration", "kind": 1024, @@ -85001,7 +86456,7 @@ } }, { - "id": 3290, + "id": 3312, "name": "disconnectOnEmptyChannelsAfterMs", "variant": "declaration", "kind": 1024, @@ -85021,7 +86476,7 @@ } }, { - "id": 3268, + "id": 3290, "name": "encode", "variant": "declaration", "kind": 1024, @@ -85052,7 +86507,7 @@ } }, { - "id": 3284, + "id": 3306, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -85077,7 +86532,7 @@ } }, { - "id": 3274, + "id": 3296, "name": "headers", "variant": "declaration", "kind": 1024, @@ -85094,7 +86549,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3275, + "id": 3297, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85108,7 +86563,7 @@ ], "indexSignatures": [ { - "id": 3276, + "id": 3298, "name": "__index", "variant": "signature", "kind": 8192, @@ -85122,7 +86577,7 @@ ], "parameters": [ { - "id": 3277, + "id": 3299, "name": "key", "variant": "param", "kind": 32768, @@ -85143,7 +86598,7 @@ } }, { - "id": 3256, + "id": 3278, "name": "heartbeatCallback", "variant": "declaration", "kind": 1024, @@ -85160,7 +86615,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3257, + "id": 3279, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85174,14 +86629,14 @@ ], "signatures": [ { - "id": 3258, + "id": 3280, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3259, + "id": 3281, "name": "status", "variant": "param", "kind": 32768, @@ -85197,7 +86652,7 @@ } }, { - "id": 3260, + "id": 3282, "name": "latency", "variant": "param", "kind": 32768, @@ -85220,7 +86675,7 @@ } }, { - "id": 3255, + "id": 3277, "name": "heartbeatIntervalMs", "variant": "declaration", "kind": 1024, @@ -85240,7 +86695,7 @@ } }, { - "id": 3282, + "id": 3304, "name": "log_level", "variant": "declaration", "kind": 1024, @@ -85265,7 +86720,7 @@ } }, { - "id": 3262, + "id": 3284, "name": "logger", "variant": "declaration", "kind": 1024, @@ -85282,7 +86737,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3263, + "id": 3285, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85296,14 +86751,14 @@ ], "signatures": [ { - "id": 3264, + "id": 3286, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3265, + "id": 3287, "name": "kind", "variant": "param", "kind": 32768, @@ -85314,7 +86769,7 @@ } }, { - "id": 3266, + "id": 3288, "name": "msg", "variant": "param", "kind": 32768, @@ -85325,7 +86780,7 @@ } }, { - "id": 3267, + "id": 3289, "name": "data", "variant": "param", "kind": 32768, @@ -85348,7 +86803,7 @@ } }, { - "id": 3283, + "id": 3305, "name": "logLevel", "variant": "declaration", "kind": 1024, @@ -85373,7 +86828,7 @@ } }, { - "id": 3278, + "id": 3300, "name": "params", "variant": "declaration", "kind": 1024, @@ -85390,7 +86845,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3279, + "id": 3301, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85404,7 +86859,7 @@ ], "indexSignatures": [ { - "id": 3280, + "id": 3302, "name": "__index", "variant": "signature", "kind": 8192, @@ -85418,7 +86873,7 @@ ], "parameters": [ { - "id": 3281, + "id": 3303, "name": "key", "variant": "param", "kind": 32768, @@ -85439,7 +86894,7 @@ } }, { - "id": 3270, + "id": 3292, "name": "reconnectAfterMs", "variant": "declaration", "kind": 1024, @@ -85456,7 +86911,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3271, + "id": 3293, "name": "__type", "variant": "declaration", "kind": 65536, @@ -85470,14 +86925,14 @@ ], "signatures": [ { - "id": 3272, + "id": 3294, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3273, + "id": 3295, "name": "tries", "variant": "param", "kind": 32768, @@ -85498,7 +86953,7 @@ } }, { - "id": 3291, + "id": 3313, "name": "sessionStorage", "variant": "declaration", "kind": 1024, @@ -85547,7 +87002,7 @@ } }, { - "id": 3254, + "id": 3276, "name": "timeout", "variant": "declaration", "kind": 1024, @@ -85567,7 +87022,7 @@ } }, { - "id": 3253, + "id": 3275, "name": "transport", "variant": "declaration", "kind": 1024, @@ -85583,13 +87038,13 @@ ], "type": { "type": "reference", - "target": 3459, + "target": 3481, "name": "WebSocketLikeConstructor", "package": "@supabase/realtime-js" } }, { - "id": 3261, + "id": 3283, "name": "vsn", "variant": "declaration", "kind": 1024, @@ -85609,7 +87064,7 @@ } }, { - "id": 3285, + "id": 3307, "name": "worker", "variant": "declaration", "kind": 1024, @@ -85629,7 +87084,7 @@ } }, { - "id": 3286, + "id": 3308, "name": "workerUrl", "variant": "declaration", "kind": 1024, @@ -85653,8 +87108,8 @@ { "title": "Properties", "children": [ - 3287, 3269, 3290, 3268, 3284, 3274, 3256, 3255, 3282, 3262, 3283, 3278, 3270, - 3291, 3254, 3253, 3261, 3285, 3286 + 3309, 3291, 3312, 3290, 3306, 3296, 3278, 3277, 3304, 3284, 3305, 3300, 3292, + 3313, 3276, 3275, 3283, 3307, 3308 ] } ], @@ -85669,7 +87124,7 @@ } }, { - "id": 3292, + "id": 3314, "name": "RealtimeMessage", "variant": "declaration", "kind": 2097152, @@ -85684,14 +87139,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3293, + "id": 3315, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3295, + "id": 3317, "name": "event", "variant": "declaration", "kind": 1024, @@ -85709,7 +87164,7 @@ } }, { - "id": 3298, + "id": 3320, "name": "join_ref", "variant": "declaration", "kind": 1024, @@ -85729,7 +87184,7 @@ } }, { - "id": 3296, + "id": 3318, "name": "payload", "variant": "declaration", "kind": 1024, @@ -85747,7 +87202,7 @@ } }, { - "id": 3297, + "id": 3319, "name": "ref", "variant": "declaration", "kind": 1024, @@ -85765,7 +87220,7 @@ } }, { - "id": 3294, + "id": 3316, "name": "topic", "variant": "declaration", "kind": 1024, @@ -85786,7 +87241,7 @@ "groups": [ { "title": "Properties", - "children": [3295, 3298, 3296, 3297, 3294] + "children": [3317, 3320, 3318, 3319, 3316] } ], "sources": [ @@ -85800,7 +87255,7 @@ } }, { - "id": 3299, + "id": 3321, "name": "RealtimePostgresChangesFilter", "variant": "declaration", "kind": 2097152, @@ -85814,7 +87269,7 @@ ], "typeParameters": [ { - "id": 3305, + "id": 3327, "name": "T", "variant": "typeParam", "kind": 131072, @@ -85826,7 +87281,7 @@ [ { "type": "reference", - "target": 3376, + "target": 3398, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT", "package": "@supabase/realtime-js" }, @@ -85839,14 +87294,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3300, + "id": 3322, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3301, + "id": 3323, "name": "event", "variant": "declaration", "kind": 1024, @@ -85868,14 +87323,14 @@ ], "type": { "type": "reference", - "target": 3305, + "target": 3327, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 3304, + "id": 3326, "name": "filter", "variant": "declaration", "kind": 1024, @@ -85903,7 +87358,7 @@ } }, { - "id": 3302, + "id": 3324, "name": "schema", "variant": "declaration", "kind": 1024, @@ -85929,7 +87384,7 @@ } }, { - "id": 3303, + "id": 3325, "name": "table", "variant": "declaration", "kind": 1024, @@ -85960,7 +87415,7 @@ "groups": [ { "title": "Properties", - "children": [3301, 3304, 3302, 3303] + "children": [3323, 3326, 3324, 3325] } ], "sources": [ @@ -85974,7 +87429,7 @@ } }, { - "id": 3306, + "id": 3328, "name": "RealtimePostgresChangesPayload", "variant": "declaration", "kind": 2097152, @@ -85988,7 +87443,7 @@ ], "typeParameters": [ { - "id": 3307, + "id": 3329, "name": "T", "variant": "typeParam", "kind": 131072, @@ -85996,7 +87451,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3308, + "id": 3330, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86010,7 +87465,7 @@ ], "indexSignatures": [ { - "id": 3309, + "id": 3331, "name": "__index", "variant": "signature", "kind": 8192, @@ -86024,7 +87479,7 @@ ], "parameters": [ { - "id": 3310, + "id": 3332, "name": "key", "variant": "param", "kind": 32768, @@ -86050,11 +87505,11 @@ "types": [ { "type": "reference", - "target": 3311, + "target": 3333, "typeArguments": [ { "type": "reference", - "target": 3307, + "target": 3329, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86065,11 +87520,11 @@ }, { "type": "reference", - "target": 3321, + "target": 3343, "typeArguments": [ { "type": "reference", - "target": 3307, + "target": 3329, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86080,11 +87535,11 @@ }, { "type": "reference", - "target": 3330, + "target": 3352, "typeArguments": [ { "type": "reference", - "target": 3307, + "target": 3329, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86097,7 +87552,7 @@ } }, { - "id": 3330, + "id": 3352, "name": "RealtimePostgresDeletePayload", "variant": "declaration", "kind": 2097152, @@ -86111,7 +87566,7 @@ ], "typeParameters": [ { - "id": 3336, + "id": 3358, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86119,7 +87574,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3337, + "id": 3359, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86133,7 +87588,7 @@ ], "indexSignatures": [ { - "id": 3338, + "id": 3360, "name": "__index", "variant": "signature", "kind": 8192, @@ -86147,7 +87602,7 @@ ], "parameters": [ { - "id": 3339, + "id": 3361, "name": "key", "variant": "param", "kind": 32768, @@ -86183,14 +87638,14 @@ { "type": "reflection", "declaration": { - "id": 3331, + "id": 3353, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3332, + "id": 3354, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -86209,7 +87664,7 @@ [ { "type": "reference", - "target": 3380, + "target": 3402, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE", "package": "@supabase/realtime-js" }, @@ -86219,7 +87674,7 @@ } }, { - "id": 3333, + "id": 3355, "name": "new", "variant": "declaration", "kind": 1024, @@ -86234,7 +87689,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3334, + "id": 3356, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86250,7 +87705,7 @@ } }, { - "id": 3335, + "id": 3357, "name": "old", "variant": "declaration", "kind": 1024, @@ -86271,7 +87726,7 @@ "typeArguments": [ { "type": "reference", - "target": 3336, + "target": 3358, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86285,7 +87740,7 @@ "groups": [ { "title": "Properties", - "children": [3332, 3333, 3335] + "children": [3354, 3355, 3357] } ], "sources": [ @@ -86301,7 +87756,7 @@ } }, { - "id": 3311, + "id": 3333, "name": "RealtimePostgresInsertPayload", "variant": "declaration", "kind": 2097152, @@ -86315,7 +87770,7 @@ ], "typeParameters": [ { - "id": 3317, + "id": 3339, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86323,7 +87778,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3318, + "id": 3340, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86337,7 +87792,7 @@ ], "indexSignatures": [ { - "id": 3319, + "id": 3341, "name": "__index", "variant": "signature", "kind": 8192, @@ -86351,7 +87806,7 @@ ], "parameters": [ { - "id": 3320, + "id": 3342, "name": "key", "variant": "param", "kind": 32768, @@ -86387,14 +87842,14 @@ { "type": "reflection", "declaration": { - "id": 3312, + "id": 3334, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3313, + "id": 3335, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -86413,7 +87868,7 @@ [ { "type": "reference", - "target": 3378, + "target": 3400, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT", "package": "@supabase/realtime-js" }, @@ -86423,7 +87878,7 @@ } }, { - "id": 3314, + "id": 3336, "name": "new", "variant": "declaration", "kind": 1024, @@ -86437,14 +87892,14 @@ ], "type": { "type": "reference", - "target": 3317, + "target": 3339, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 3315, + "id": 3337, "name": "old", "variant": "declaration", "kind": 1024, @@ -86459,7 +87914,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3316, + "id": 3338, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86478,7 +87933,7 @@ "groups": [ { "title": "Properties", - "children": [3313, 3314, 3315] + "children": [3335, 3336, 3337] } ], "sources": [ @@ -86494,7 +87949,7 @@ } }, { - "id": 3321, + "id": 3343, "name": "RealtimePostgresUpdatePayload", "variant": "declaration", "kind": 2097152, @@ -86508,7 +87963,7 @@ ], "typeParameters": [ { - "id": 3326, + "id": 3348, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86516,7 +87971,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3327, + "id": 3349, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86530,7 +87985,7 @@ ], "indexSignatures": [ { - "id": 3328, + "id": 3350, "name": "__index", "variant": "signature", "kind": 8192, @@ -86544,7 +87999,7 @@ ], "parameters": [ { - "id": 3329, + "id": 3351, "name": "key", "variant": "param", "kind": 32768, @@ -86580,14 +88035,14 @@ { "type": "reflection", "declaration": { - "id": 3322, + "id": 3344, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3323, + "id": 3345, "name": "eventType", "variant": "declaration", "kind": 1024, @@ -86606,7 +88061,7 @@ [ { "type": "reference", - "target": 3379, + "target": 3401, "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE", "package": "@supabase/realtime-js" }, @@ -86616,7 +88071,7 @@ } }, { - "id": 3324, + "id": 3346, "name": "new", "variant": "declaration", "kind": 1024, @@ -86630,14 +88085,14 @@ ], "type": { "type": "reference", - "target": 3326, + "target": 3348, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true } }, { - "id": 3325, + "id": 3347, "name": "old", "variant": "declaration", "kind": 1024, @@ -86658,7 +88113,7 @@ "typeArguments": [ { "type": "reference", - "target": 3326, + "target": 3348, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86672,7 +88127,7 @@ "groups": [ { "title": "Properties", - "children": [3323, 3324, 3325] + "children": [3345, 3346, 3347] } ], "sources": [ @@ -86688,7 +88143,7 @@ } }, { - "id": 3340, + "id": 3362, "name": "RealtimePresenceJoinPayload", "variant": "declaration", "kind": 2097152, @@ -86702,7 +88157,7 @@ ], "typeParameters": [ { - "id": 3346, + "id": 3368, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86710,7 +88165,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3347, + "id": 3369, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86724,7 +88179,7 @@ ], "indexSignatures": [ { - "id": 3348, + "id": 3370, "name": "__index", "variant": "signature", "kind": 8192, @@ -86738,7 +88193,7 @@ ], "parameters": [ { - "id": 3349, + "id": 3371, "name": "key", "variant": "param", "kind": 32768, @@ -86762,14 +88217,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3341, + "id": 3363, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3344, + "id": 3366, "name": "currentPresences", "variant": "declaration", "kind": 1024, @@ -86792,7 +88247,7 @@ "typeArguments": [ { "type": "reference", - "target": 3346, + "target": 3368, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86804,7 +88259,7 @@ } }, { - "id": 3342, + "id": 3364, "name": "event", "variant": "declaration", "kind": 1024, @@ -86823,7 +88278,7 @@ [ { "type": "reference", - "target": 3383, + "target": 3405, "name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN", "package": "@supabase/realtime-js" }, @@ -86833,7 +88288,7 @@ } }, { - "id": 3343, + "id": 3365, "name": "key", "variant": "declaration", "kind": 1024, @@ -86851,7 +88306,7 @@ } }, { - "id": 3345, + "id": 3367, "name": "newPresences", "variant": "declaration", "kind": 1024, @@ -86874,7 +88329,7 @@ "typeArguments": [ { "type": "reference", - "target": 3346, + "target": 3368, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -86889,7 +88344,7 @@ "groups": [ { "title": "Properties", - "children": [3344, 3342, 3343, 3345] + "children": [3366, 3364, 3365, 3367] } ], "sources": [ @@ -86903,7 +88358,7 @@ } }, { - "id": 3350, + "id": 3372, "name": "RealtimePresenceLeavePayload", "variant": "declaration", "kind": 2097152, @@ -86917,7 +88372,7 @@ ], "typeParameters": [ { - "id": 3356, + "id": 3378, "name": "T", "variant": "typeParam", "kind": 131072, @@ -86925,7 +88380,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3357, + "id": 3379, "name": "__type", "variant": "declaration", "kind": 65536, @@ -86939,7 +88394,7 @@ ], "indexSignatures": [ { - "id": 3358, + "id": 3380, "name": "__index", "variant": "signature", "kind": 8192, @@ -86953,7 +88408,7 @@ ], "parameters": [ { - "id": 3359, + "id": 3381, "name": "key", "variant": "param", "kind": 32768, @@ -86977,14 +88432,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3351, + "id": 3373, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3354, + "id": 3376, "name": "currentPresences", "variant": "declaration", "kind": 1024, @@ -87007,7 +88462,7 @@ "typeArguments": [ { "type": "reference", - "target": 3356, + "target": 3378, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -87019,7 +88474,7 @@ } }, { - "id": 3352, + "id": 3374, "name": "event", "variant": "declaration", "kind": 1024, @@ -87038,7 +88493,7 @@ [ { "type": "reference", - "target": 3384, + "target": 3406, "name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE", "package": "@supabase/realtime-js" }, @@ -87048,7 +88503,7 @@ } }, { - "id": 3353, + "id": 3375, "name": "key", "variant": "declaration", "kind": 1024, @@ -87066,7 +88521,7 @@ } }, { - "id": 3355, + "id": 3377, "name": "leftPresences", "variant": "declaration", "kind": 1024, @@ -87089,7 +88544,7 @@ "typeArguments": [ { "type": "reference", - "target": 3356, + "target": 3378, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -87104,7 +88559,7 @@ "groups": [ { "title": "Properties", - "children": [3354, 3352, 3353, 3355] + "children": [3376, 3374, 3375, 3377] } ], "sources": [ @@ -87118,7 +88573,7 @@ } }, { - "id": 3360, + "id": 3382, "name": "RealtimePresenceState", "variant": "declaration", "kind": 2097152, @@ -87132,7 +88587,7 @@ ], "typeParameters": [ { - "id": 3364, + "id": 3386, "name": "T", "variant": "typeParam", "kind": 131072, @@ -87140,7 +88595,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3365, + "id": 3387, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87154,7 +88609,7 @@ ], "indexSignatures": [ { - "id": 3366, + "id": 3388, "name": "__index", "variant": "signature", "kind": 8192, @@ -87168,7 +88623,7 @@ ], "parameters": [ { - "id": 3367, + "id": 3389, "name": "key", "variant": "param", "kind": 32768, @@ -87190,7 +88645,7 @@ "default": { "type": "reflection", "declaration": { - "id": 3368, + "id": 3390, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87209,7 +88664,7 @@ "type": { "type": "reflection", "declaration": { - "id": 3361, + "id": 3383, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87223,7 +88678,7 @@ ], "indexSignatures": [ { - "id": 3362, + "id": 3384, "name": "__index", "variant": "signature", "kind": 8192, @@ -87237,7 +88692,7 @@ ], "parameters": [ { - "id": 3363, + "id": 3385, "name": "key", "variant": "param", "kind": 32768, @@ -87259,7 +88714,7 @@ "typeArguments": [ { "type": "reference", - "target": 3364, + "target": 3386, "name": "T", "package": "@supabase/realtime-js", "refersToTypeParameter": true @@ -87275,7 +88730,7 @@ } }, { - "id": 3369, + "id": 3391, "name": "RealtimeRemoveChannelResponse", "variant": "declaration", "kind": 2097152, @@ -87312,7 +88767,7 @@ { "type": "reflection", "declaration": { - "id": 3370, + "id": 3392, "name": "__type", "variant": "declaration", "kind": 65536, @@ -87332,7 +88787,7 @@ } }, { - "id": 2448, + "id": 2450, "name": "RegisterPasskeyCredentials", "variant": "declaration", "kind": 2097152, @@ -87340,21 +88795,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2365, + "line": 2354, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2449, + "id": 2451, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2450, + "id": 2452, "name": "options", "variant": "declaration", "kind": 1024, @@ -87364,21 +88819,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2366, + "line": 2355, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2451, + "id": 2453, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2452, + "id": 2454, "name": "signal", "variant": "declaration", "kind": 1024, @@ -87388,7 +88843,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2367, + "line": 2356, "character": 8 } ], @@ -87406,13 +88861,13 @@ "groups": [ { "title": "Properties", - "children": [2452] + "children": [2454] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2366, + "line": 2355, "character": 14 } ] @@ -87423,13 +88878,13 @@ "groups": [ { "title": "Properties", - "children": [2450] + "children": [2452] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2365, + "line": 2354, "character": 41 } ] @@ -87437,7 +88892,7 @@ } }, { - "id": 1643, + "id": 1645, "name": "RequestResult", "variant": "declaration", "kind": 2097152, @@ -87453,20 +88908,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 171, + "line": 160, "character": 12 } ], "typeParameters": [ { - "id": 1650, + "id": 1652, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 1651, + "id": 1653, "name": "ErrorType", "variant": "typeParam", "kind": 131072, @@ -87482,7 +88937,7 @@ }, "default": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -87494,14 +88949,14 @@ { "type": "reflection", "declaration": { - "id": 1644, + "id": 1646, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1645, + "id": 1647, "name": "data", "variant": "declaration", "kind": 1024, @@ -87509,20 +88964,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 172, + "line": 161, "character": 4 } ], "type": { "type": "reference", - "target": 1650, + "target": 1652, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1646, + "id": 1648, "name": "error", "variant": "declaration", "kind": 1024, @@ -87530,7 +88985,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 173, + "line": 162, "character": 4 } ], @@ -87543,13 +88998,13 @@ "groups": [ { "title": "Properties", - "children": [1645, 1646] + "children": [1647, 1648] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 171, + "line": 160, "character": 68 } ] @@ -87558,14 +89013,14 @@ { "type": "reflection", "declaration": { - "id": 1647, + "id": 1649, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1648, + "id": 1650, "name": "data", "variant": "declaration", "kind": 1024, @@ -87573,7 +89028,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 175, + "line": 164, "character": 4 } ], @@ -87583,7 +89038,7 @@ } }, { - "id": 1649, + "id": 1651, "name": "error", "variant": "declaration", "kind": 1024, @@ -87591,7 +89046,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 176, + "line": 165, "character": 4 } ], @@ -87608,19 +89063,19 @@ }, "extendsType": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, "trueType": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" }, "falseType": { "type": "reference", - "target": 1651, + "target": 1653, "name": "ErrorType", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -87631,13 +89086,13 @@ "groups": [ { "title": "Properties", - "children": [1648, 1649] + "children": [1650, 1651] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 174, + "line": 163, "character": 4 } ] @@ -87647,7 +89102,7 @@ } }, { - "id": 1652, + "id": 1654, "name": "RequestResultSafeDestructure", "variant": "declaration", "kind": 2097152, @@ -87668,13 +89123,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 182, + "line": 171, "character": 12 } ], "typeParameters": [ { - "id": 1659, + "id": 1661, "name": "T", "variant": "typeParam", "kind": 131072, @@ -87687,14 +89142,14 @@ { "type": "reflection", "declaration": { - "id": 1653, + "id": 1655, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1654, + "id": 1656, "name": "data", "variant": "declaration", "kind": 1024, @@ -87702,20 +89157,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 183, + "line": 172, "character": 4 } ], "type": { "type": "reference", - "target": 1659, + "target": 1661, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true } }, { - "id": 1655, + "id": 1657, "name": "error", "variant": "declaration", "kind": 1024, @@ -87723,7 +89178,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 184, + "line": 173, "character": 4 } ], @@ -87736,13 +89191,13 @@ "groups": [ { "title": "Properties", - "children": [1654, 1655] + "children": [1656, 1657] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 182, + "line": 171, "character": 46 } ] @@ -87751,14 +89206,14 @@ { "type": "reflection", "declaration": { - "id": 1656, + "id": 1658, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1657, + "id": 1659, "name": "data", "variant": "declaration", "kind": 1024, @@ -87766,7 +89221,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 186, + "line": 175, "character": 4 } ], @@ -87774,7 +89229,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 1659, + "target": 1661, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -87791,7 +89246,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1659, + "target": 1661, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -87809,7 +89264,7 @@ } }, { - "id": 1658, + "id": 1660, "name": "error", "variant": "declaration", "kind": 1024, @@ -87817,13 +89272,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 189, + "line": 178, "character": 4 } ], "type": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -87832,13 +89287,13 @@ "groups": [ { "title": "Properties", - "children": [1657, 1658] + "children": [1659, 1660] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 185, + "line": 174, "character": 4 } ] @@ -87848,7 +89303,7 @@ } }, { - "id": 2134, + "id": 2136, "name": "RequiredClaims", "variant": "declaration", "kind": 2097152, @@ -87856,21 +89311,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1633, + "line": 1622, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2135, + "id": 2137, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2142, + "id": 2144, "name": "aal", "variant": "declaration", "kind": 1024, @@ -87878,19 +89333,19 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1640, + "line": 1629, "character": 4 } ], "type": { "type": "reference", - "target": 2016, + "target": 2018, "name": "AuthenticatorAssuranceLevels", "package": "@supabase/auth-js" } }, { - "id": 2138, + "id": 2140, "name": "aud", "variant": "declaration", "kind": 1024, @@ -87898,7 +89353,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1636, + "line": 1625, "character": 4 } ], @@ -87920,7 +89375,7 @@ } }, { - "id": 2139, + "id": 2141, "name": "exp", "variant": "declaration", "kind": 1024, @@ -87928,7 +89383,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1637, + "line": 1626, "character": 4 } ], @@ -87938,7 +89393,7 @@ } }, { - "id": 2140, + "id": 2142, "name": "iat", "variant": "declaration", "kind": 1024, @@ -87946,7 +89401,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1638, + "line": 1627, "character": 4 } ], @@ -87956,7 +89411,7 @@ } }, { - "id": 2136, + "id": 2138, "name": "iss", "variant": "declaration", "kind": 1024, @@ -87964,7 +89419,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1634, + "line": 1623, "character": 4 } ], @@ -87974,7 +89429,7 @@ } }, { - "id": 2141, + "id": 2143, "name": "role", "variant": "declaration", "kind": 1024, @@ -87982,7 +89437,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1639, + "line": 1628, "character": 4 } ], @@ -87992,7 +89447,7 @@ } }, { - "id": 2143, + "id": 2145, "name": "session_id", "variant": "declaration", "kind": 1024, @@ -88000,7 +89455,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1641, + "line": 1630, "character": 4 } ], @@ -88010,7 +89465,7 @@ } }, { - "id": 2137, + "id": 2139, "name": "sub", "variant": "declaration", "kind": 1024, @@ -88018,7 +89473,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1635, + "line": 1624, "character": 4 } ], @@ -88031,13 +89486,13 @@ "groups": [ { "title": "Properties", - "children": [2142, 2138, 2139, 2140, 2136, 2141, 2143, 2137] + "children": [2144, 2140, 2141, 2142, 2138, 2143, 2145, 2139] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1633, + "line": 1622, "character": 29 } ] @@ -88046,13 +89501,13 @@ "extendedBy": [ { "type": "reference", - "target": 2144, + "target": 2146, "name": "JwtPayload" } ] }, { - "id": 1908, + "id": 1910, "name": "ResendParams", "variant": "declaration", "kind": 2097152, @@ -88060,7 +89515,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 705, + "line": 694, "character": 12 } ], @@ -88070,14 +89525,14 @@ { "type": "reflection", "declaration": { - "id": 1909, + "id": 1911, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1911, + "id": 1913, "name": "email", "variant": "declaration", "kind": 1024, @@ -88085,7 +89540,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 707, + "line": 696, "character": 4 } ], @@ -88095,7 +89550,7 @@ } }, { - "id": 1912, + "id": 1914, "name": "options", "variant": "declaration", "kind": 1024, @@ -88105,21 +89560,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 708, + "line": 697, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1913, + "id": 1915, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1915, + "id": 1917, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88137,7 +89592,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 712, + "line": 701, "character": 8 } ], @@ -88147,7 +89602,7 @@ } }, { - "id": 1914, + "id": 1916, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -88165,7 +89620,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 710, + "line": 699, "character": 8 } ], @@ -88178,13 +89633,13 @@ "groups": [ { "title": "Properties", - "children": [1915, 1914] + "children": [1917, 1916] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 708, + "line": 697, "character": 14 } ] @@ -88192,7 +89647,7 @@ } }, { - "id": 1910, + "id": 1912, "name": "type", "variant": "declaration", "kind": 1024, @@ -88200,7 +89655,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 706, + "line": 695, "character": 4 } ], @@ -88213,7 +89668,7 @@ "typeArguments": [ { "type": "reference", - "target": 1906, + "target": 1908, "name": "EmailOtpType", "package": "@supabase/auth-js" }, @@ -88239,13 +89694,13 @@ "groups": [ { "title": "Properties", - "children": [1911, 1912, 1910] + "children": [1913, 1914, 1912] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 705, + "line": 694, "character": 27 } ] @@ -88254,14 +89709,14 @@ { "type": "reflection", "declaration": { - "id": 1916, + "id": 1918, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1919, + "id": 1921, "name": "options", "variant": "declaration", "kind": 1024, @@ -88271,21 +89726,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 717, + "line": 706, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1920, + "id": 1922, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1921, + "id": 1923, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88303,7 +89758,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 719, + "line": 708, "character": 8 } ], @@ -88316,13 +89771,13 @@ "groups": [ { "title": "Properties", - "children": [1921] + "children": [1923] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 717, + "line": 706, "character": 14 } ] @@ -88330,7 +89785,7 @@ } }, { - "id": 1918, + "id": 1920, "name": "phone", "variant": "declaration", "kind": 1024, @@ -88338,7 +89793,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 716, + "line": 705, "character": 4 } ], @@ -88348,7 +89803,7 @@ } }, { - "id": 1917, + "id": 1919, "name": "type", "variant": "declaration", "kind": 1024, @@ -88356,7 +89811,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 715, + "line": 704, "character": 4 } ], @@ -88369,7 +89824,7 @@ "typeArguments": [ { "type": "reference", - "target": 1904, + "target": 1906, "name": "MobileOtpType", "package": "@supabase/auth-js" }, @@ -88395,13 +89850,13 @@ "groups": [ { "title": "Properties", - "children": [1919, 1918, 1917] + "children": [1921, 1920, 1919] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 714, + "line": 703, "character": 4 } ] @@ -88411,7 +89866,7 @@ } }, { - "id": 1772, + "id": 1774, "name": "SignInAnonymouslyCredentials", "variant": "declaration", "kind": 2097152, @@ -88419,21 +89874,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 506, + "line": 495, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1773, + "id": 1775, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1774, + "id": 1776, "name": "options", "variant": "declaration", "kind": 1024, @@ -88443,21 +89898,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 507, + "line": 496, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1775, + "id": 1777, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1777, + "id": 1779, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88475,7 +89930,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 515, + "line": 504, "character": 8 } ], @@ -88485,7 +89940,7 @@ } }, { - "id": 1776, + "id": 1778, "name": "data", "variant": "declaration", "kind": 1024, @@ -88519,7 +89974,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 513, + "line": 502, "character": 8 } ], @@ -88532,13 +89987,13 @@ "groups": [ { "title": "Properties", - "children": [1777, 1776] + "children": [1779, 1778] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 507, + "line": 496, "character": 14 } ] @@ -88549,13 +90004,13 @@ "groups": [ { "title": "Properties", - "children": [1774] + "children": [1776] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 506, + "line": 495, "character": 43 } ] @@ -88563,7 +90018,7 @@ } }, { - "id": 1822, + "id": 1824, "name": "SignInWithIdTokenCredentials", "variant": "declaration", "kind": 2097152, @@ -88571,21 +90026,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 590, + "line": 579, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1823, + "id": 1825, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1827, + "id": 1829, "name": "access_token", "variant": "declaration", "kind": 1024, @@ -88611,7 +90066,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 596, + "line": 585, "character": 4 } ], @@ -88621,7 +90076,7 @@ } }, { - "id": 1828, + "id": 1830, "name": "nonce", "variant": "declaration", "kind": 1024, @@ -88647,7 +90102,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 598, + "line": 587, "character": 4 } ], @@ -88657,7 +90112,7 @@ } }, { - "id": 1829, + "id": 1831, "name": "options", "variant": "declaration", "kind": 1024, @@ -88667,21 +90122,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 599, + "line": 588, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1830, + "id": 1832, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1831, + "id": 1833, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -88699,7 +90154,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 601, + "line": 590, "character": 8 } ], @@ -88712,13 +90167,13 @@ "groups": [ { "title": "Properties", - "children": [1831] + "children": [1833] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 599, + "line": 588, "character": 14 } ] @@ -88726,7 +90181,7 @@ } }, { - "id": 1824, + "id": 1826, "name": "provider", "variant": "declaration", "kind": 1024, @@ -88806,7 +90261,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 592, + "line": 581, "character": 4 } ], @@ -88856,7 +90311,7 @@ { "type": "reflection", "declaration": { - "id": 1825, + "id": 1827, "name": "__type", "variant": "declaration", "kind": 65536, @@ -88864,7 +90319,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 592, + "line": 581, "character": 99 } ] @@ -88876,7 +90331,7 @@ } }, { - "id": 1826, + "id": 1828, "name": "token", "variant": "declaration", "kind": 1024, @@ -88924,7 +90379,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 594, + "line": 583, "character": 4 } ], @@ -88937,13 +90392,13 @@ "groups": [ { "title": "Properties", - "children": [1827, 1828, 1829, 1824, 1826] + "children": [1829, 1830, 1831, 1826, 1828] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 590, + "line": 579, "character": 43 } ] @@ -88951,7 +90406,7 @@ } }, { - "id": 1810, + "id": 1812, "name": "SignInWithOAuthCredentials", "variant": "declaration", "kind": 2097152, @@ -88959,21 +90414,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 574, + "line": 563, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1811, + "id": 1813, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1813, + "id": 1815, "name": "options", "variant": "declaration", "kind": 1024, @@ -88983,21 +90438,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 577, + "line": 566, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1814, + "id": 1816, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1817, + "id": 1819, "name": "queryParams", "variant": "declaration", "kind": 1024, @@ -89015,14 +90470,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 583, + "line": 572, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1818, + "id": 1820, "name": "__type", "variant": "declaration", "kind": 65536, @@ -89030,13 +90485,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 583, + "line": 572, "character": 22 } ], "indexSignatures": [ { - "id": 1819, + "id": 1821, "name": "__index", "variant": "signature", "kind": 8192, @@ -89044,13 +90499,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 584, + "line": 573, "character": 12 } ], "parameters": [ { - "id": 1820, + "id": 1822, "name": "key", "variant": "param", "kind": 32768, @@ -89071,7 +90526,7 @@ } }, { - "id": 1815, + "id": 1817, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -89089,7 +90544,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 579, + "line": 568, "character": 8 } ], @@ -89099,7 +90554,7 @@ } }, { - "id": 1816, + "id": 1818, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -89117,7 +90572,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 581, + "line": 570, "character": 8 } ], @@ -89127,7 +90582,7 @@ } }, { - "id": 1821, + "id": 1823, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -89145,7 +90600,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 587, + "line": 576, "character": 8 } ], @@ -89158,13 +90613,13 @@ "groups": [ { "title": "Properties", - "children": [1817, 1815, 1816, 1821] + "children": [1819, 1817, 1818, 1823] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 577, + "line": 566, "character": 14 } ] @@ -89172,7 +90627,7 @@ } }, { - "id": 1812, + "id": 1814, "name": "provider", "variant": "declaration", "kind": 1024, @@ -89188,13 +90643,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 576, + "line": 565, "character": 4 } ], "type": { "type": "reference", - "target": 1585, + "target": 1587, "name": "Provider", "package": "@supabase/auth-js" } @@ -89203,13 +90658,13 @@ "groups": [ { "title": "Properties", - "children": [1813, 1812] + "children": [1815, 1814] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 574, + "line": 563, "character": 41 } ] @@ -89217,7 +90672,7 @@ } }, { - "id": 2442, + "id": 2444, "name": "SignInWithPasskeyCredentials", "variant": "declaration", "kind": 2097152, @@ -89225,21 +90680,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2359, + "line": 2348, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2443, + "id": 2445, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2444, + "id": 2446, "name": "options", "variant": "declaration", "kind": 1024, @@ -89249,21 +90704,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2360, + "line": 2349, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2445, + "id": 2447, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2446, + "id": 2448, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89273,7 +90728,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2361, + "line": 2350, "character": 8 } ], @@ -89283,7 +90738,7 @@ } }, { - "id": 2447, + "id": 2449, "name": "signal", "variant": "declaration", "kind": 1024, @@ -89293,7 +90748,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2362, + "line": 2351, "character": 8 } ], @@ -89311,13 +90766,13 @@ "groups": [ { "title": "Properties", - "children": [2446, 2447] + "children": [2448, 2449] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2360, + "line": 2349, "character": 14 } ] @@ -89328,13 +90783,13 @@ "groups": [ { "title": "Properties", - "children": [2444] + "children": [2446] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2359, + "line": 2348, "character": 43 } ] @@ -89342,7 +90797,7 @@ } }, { - "id": 1786, + "id": 1788, "name": "SignInWithPasswordCredentials", "variant": "declaration", "kind": 2097152, @@ -89350,7 +90805,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 533, + "line": 522, "character": 12 } ], @@ -89369,14 +90824,14 @@ { "type": "reflection", "declaration": { - "id": 1787, + "id": 1789, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1788, + "id": 1790, "name": "options", "variant": "declaration", "kind": 1024, @@ -89386,21 +90841,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 534, + "line": 523, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1789, + "id": 1791, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1790, + "id": 1792, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89410,7 +90865,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 535, + "line": 524, "character": 8 } ], @@ -89423,13 +90878,13 @@ "groups": [ { "title": "Properties", - "children": [1790] + "children": [1792] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 534, + "line": 523, "character": 14 } ] @@ -89440,13 +90895,13 @@ "groups": [ { "title": "Properties", - "children": [1788] + "children": [1790] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 533, + "line": 522, "character": 70 } ] @@ -89456,7 +90911,7 @@ } }, { - "id": 1791, + "id": 1793, "name": "SignInWithPasswordlessCredentials", "variant": "declaration", "kind": 2097152, @@ -89464,7 +90919,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 538, + "line": 527, "character": 12 } ], @@ -89474,14 +90929,14 @@ { "type": "reflection", "declaration": { - "id": 1792, + "id": 1794, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1793, + "id": 1795, "name": "email", "variant": "declaration", "kind": 1024, @@ -89497,7 +90952,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 540, + "line": 529, "character": 4 } ], @@ -89507,7 +90962,7 @@ } }, { - "id": 1794, + "id": 1796, "name": "options", "variant": "declaration", "kind": 1024, @@ -89517,21 +90972,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 541, + "line": 530, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1795, + "id": 1797, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1799, + "id": 1801, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89549,7 +91004,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 553, + "line": 542, "character": 8 } ], @@ -89559,7 +91014,7 @@ } }, { - "id": 1798, + "id": 1800, "name": "data", "variant": "declaration", "kind": 1024, @@ -89593,7 +91048,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 551, + "line": 540, "character": 8 } ], @@ -89603,7 +91058,7 @@ } }, { - "id": 1796, + "id": 1798, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -89621,7 +91076,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 543, + "line": 532, "character": 8 } ], @@ -89631,7 +91086,7 @@ } }, { - "id": 1797, + "id": 1799, "name": "shouldCreateUser", "variant": "declaration", "kind": 1024, @@ -89649,7 +91104,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 545, + "line": 534, "character": 8 } ], @@ -89662,13 +91117,13 @@ "groups": [ { "title": "Properties", - "children": [1799, 1798, 1796, 1797] + "children": [1801, 1800, 1798, 1799] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 541, + "line": 530, "character": 14 } ] @@ -89679,13 +91134,13 @@ "groups": [ { "title": "Properties", - "children": [1793, 1794] + "children": [1795, 1796] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 538, + "line": 527, "character": 48 } ] @@ -89694,14 +91149,14 @@ { "type": "reflection", "declaration": { - "id": 1800, + "id": 1802, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1802, + "id": 1804, "name": "options", "variant": "declaration", "kind": 1024, @@ -89711,21 +91166,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 558, + "line": 547, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1803, + "id": 1805, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1806, + "id": 1808, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89743,7 +91198,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 568, + "line": 557, "character": 8 } ], @@ -89753,7 +91208,7 @@ } }, { - "id": 1807, + "id": 1809, "name": "channel", "variant": "declaration", "kind": 1024, @@ -89771,7 +91226,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 570, + "line": 559, "character": 8 } ], @@ -89790,7 +91245,7 @@ } }, { - "id": 1805, + "id": 1807, "name": "data", "variant": "declaration", "kind": 1024, @@ -89824,7 +91279,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 566, + "line": 555, "character": 8 } ], @@ -89834,7 +91289,7 @@ } }, { - "id": 1804, + "id": 1806, "name": "shouldCreateUser", "variant": "declaration", "kind": 1024, @@ -89852,7 +91307,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 560, + "line": 549, "character": 8 } ], @@ -89865,13 +91320,13 @@ "groups": [ { "title": "Properties", - "children": [1806, 1807, 1805, 1804] + "children": [1808, 1809, 1807, 1806] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 558, + "line": 547, "character": 14 } ] @@ -89879,7 +91334,7 @@ } }, { - "id": 1801, + "id": 1803, "name": "phone", "variant": "declaration", "kind": 1024, @@ -89895,7 +91350,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 557, + "line": 546, "character": 4 } ], @@ -89908,13 +91363,13 @@ "groups": [ { "title": "Properties", - "children": [1802, 1801] + "children": [1804, 1803] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 555, + "line": 544, "character": 4 } ] @@ -89924,7 +91379,7 @@ } }, { - "id": 1922, + "id": 1924, "name": "SignInWithSSO", "variant": "declaration", "kind": 2097152, @@ -89932,7 +91387,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 722, + "line": 711, "character": 12 } ], @@ -89942,14 +91397,14 @@ { "type": "reflection", "declaration": { - "id": 1923, + "id": 1925, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1925, + "id": 1927, "name": "options", "variant": "declaration", "kind": 1024, @@ -89959,21 +91414,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 725, + "line": 714, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1926, + "id": 1928, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1928, + "id": 1930, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -89991,7 +91446,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 729, + "line": 718, "character": 8 } ], @@ -90001,7 +91456,7 @@ } }, { - "id": 1927, + "id": 1929, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -90019,7 +91474,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 727, + "line": 716, "character": 8 } ], @@ -90029,7 +91484,7 @@ } }, { - "id": 1929, + "id": 1931, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -90047,7 +91502,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 735, + "line": 724, "character": 8 } ], @@ -90060,13 +91515,13 @@ "groups": [ { "title": "Properties", - "children": [1928, 1927, 1929] + "children": [1930, 1929, 1931] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 725, + "line": 714, "character": 14 } ] @@ -90074,7 +91529,7 @@ } }, { - "id": 1924, + "id": 1926, "name": "providerId", "variant": "declaration", "kind": 1024, @@ -90090,7 +91545,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 724, + "line": 713, "character": 4 } ], @@ -90103,13 +91558,13 @@ "groups": [ { "title": "Properties", - "children": [1925, 1924] + "children": [1927, 1926] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 722, + "line": 711, "character": 28 } ] @@ -90118,14 +91573,14 @@ { "type": "reflection", "declaration": { - "id": 1930, + "id": 1932, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1931, + "id": 1933, "name": "domain", "variant": "declaration", "kind": 1024, @@ -90141,7 +91596,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 739, + "line": 728, "character": 4 } ], @@ -90151,7 +91606,7 @@ } }, { - "id": 1932, + "id": 1934, "name": "options", "variant": "declaration", "kind": 1024, @@ -90161,21 +91616,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 740, + "line": 729, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1933, + "id": 1935, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1935, + "id": 1937, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -90193,7 +91648,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 744, + "line": 733, "character": 8 } ], @@ -90203,7 +91658,7 @@ } }, { - "id": 1934, + "id": 1936, "name": "redirectTo", "variant": "declaration", "kind": 1024, @@ -90221,7 +91676,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 742, + "line": 731, "character": 8 } ], @@ -90231,7 +91686,7 @@ } }, { - "id": 1936, + "id": 1938, "name": "skipBrowserRedirect", "variant": "declaration", "kind": 1024, @@ -90249,7 +91704,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 750, + "line": 739, "character": 8 } ], @@ -90262,13 +91717,13 @@ "groups": [ { "title": "Properties", - "children": [1935, 1934, 1936] + "children": [1937, 1936, 1938] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 740, + "line": 729, "character": 14 } ] @@ -90279,13 +91734,13 @@ "groups": [ { "title": "Properties", - "children": [1931, 1932] + "children": [1933, 1934] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 737, + "line": 726, "character": 4 } ] @@ -90295,7 +91750,7 @@ } }, { - "id": 2119, + "id": 2121, "name": "SignOut", "variant": "declaration", "kind": 2097152, @@ -90303,21 +91758,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1555, + "line": 1544, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2120, + "id": 2122, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2121, + "id": 2123, "name": "scope", "variant": "declaration", "kind": 1024, @@ -90335,7 +91790,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1566, + "line": 1555, "character": 4 } ], @@ -90361,13 +91816,13 @@ "groups": [ { "title": "Properties", - "children": [2121] + "children": [2123] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1555, + "line": 1544, "character": 22 } ] @@ -90375,7 +91830,7 @@ } }, { - "id": 2173, + "id": 2175, "name": "SignOutScope", "variant": "declaration", "kind": 2097152, @@ -90383,7 +91838,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1677, + "line": 1666, "character": 12 } ], @@ -90397,7 +91852,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 2172, + "target": 2174, "name": "SIGN_OUT_SCOPES", "package": "@supabase/auth-js" } @@ -90405,7 +91860,7 @@ } }, { - "id": 1778, + "id": 1780, "name": "SignUpWithPasswordCredentials", "variant": "declaration", "kind": 2097152, @@ -90413,7 +91868,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 518, + "line": 507, "character": 12 } ], @@ -90432,14 +91887,14 @@ { "type": "reflection", "declaration": { - "id": 1779, + "id": 1781, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1780, + "id": 1782, "name": "options", "variant": "declaration", "kind": 1024, @@ -90449,21 +91904,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 519, + "line": 508, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1781, + "id": 1783, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1784, + "id": 1786, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -90473,7 +91928,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 522, + "line": 511, "character": 8 } ], @@ -90483,7 +91938,7 @@ } }, { - "id": 1785, + "id": 1787, "name": "channel", "variant": "declaration", "kind": 1024, @@ -90493,7 +91948,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 523, + "line": 512, "character": 8 } ], @@ -90512,7 +91967,7 @@ } }, { - "id": 1783, + "id": 1785, "name": "data", "variant": "declaration", "kind": 1024, @@ -90522,7 +91977,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 521, + "line": 510, "character": 8 } ], @@ -90532,7 +91987,7 @@ } }, { - "id": 1782, + "id": 1784, "name": "emailRedirectTo", "variant": "declaration", "kind": 1024, @@ -90542,7 +91997,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 520, + "line": 509, "character": 8 } ], @@ -90555,13 +92010,13 @@ "groups": [ { "title": "Properties", - "children": [1784, 1785, 1783, 1782] + "children": [1786, 1787, 1785, 1784] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 519, + "line": 508, "character": 14 } ] @@ -90572,13 +92027,13 @@ "groups": [ { "title": "Properties", - "children": [1780] + "children": [1782] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 518, + "line": 507, "character": 70 } ] @@ -90588,7 +92043,7 @@ } }, { - "id": 1832, + "id": 1834, "name": "SolanaWallet", "variant": "declaration", "kind": 2097152, @@ -90596,21 +92051,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 604, + "line": 593, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1833, + "id": 1835, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1838, + "id": 1840, "name": "publicKey", "variant": "declaration", "kind": 1024, @@ -90620,7 +92075,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 606, + "line": 595, "character": 4 } ], @@ -90630,14 +92085,14 @@ { "type": "reflection", "declaration": { - "id": 1839, + "id": 1841, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1840, + "id": 1842, "name": "toBase58", "variant": "declaration", "kind": 1024, @@ -90645,14 +92100,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 607, + "line": 596, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 1841, + "id": 1843, "name": "__type", "variant": "declaration", "kind": 65536, @@ -90660,13 +92115,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 607, + "line": 596, "character": 18 } ], "signatures": [ { - "id": 1842, + "id": 1844, "name": "__type", "variant": "signature", "kind": 4096, @@ -90684,13 +92139,13 @@ "groups": [ { "title": "Properties", - "children": [1840] + "children": [1842] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 606, + "line": 595, "character": 16 } ] @@ -90704,7 +92159,7 @@ } }, { - "id": 1834, + "id": 1836, "name": "signIn", "variant": "declaration", "kind": 1024, @@ -90714,14 +92169,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 605, + "line": 594, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1835, + "id": 1837, "name": "__type", "variant": "declaration", "kind": 65536, @@ -90729,20 +92184,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 605, + "line": 594, "character": 13 } ], "signatures": [ { - "id": 1836, + "id": 1838, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1837, + "id": 1839, "name": "inputs", "variant": "param", "kind": 32768, @@ -90806,7 +92261,7 @@ } }, { - "id": 1843, + "id": 1845, "name": "signMessage", "variant": "declaration", "kind": 1024, @@ -90816,14 +92271,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 609, + "line": 598, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1844, + "id": 1846, "name": "__type", "variant": "declaration", "kind": 65536, @@ -90831,20 +92286,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 609, + "line": 598, "character": 18 } ], "signatures": [ { - "id": 1845, + "id": 1847, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1846, + "id": 1848, "name": "message", "variant": "param", "kind": 32768, @@ -90860,7 +92315,7 @@ } }, { - "id": 1847, + "id": 1849, "name": "encoding", "variant": "param", "kind": 32768, @@ -90920,13 +92375,13 @@ "groups": [ { "title": "Properties", - "children": [1838, 1834, 1843] + "children": [1840, 1836, 1845] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 604, + "line": 593, "character": 27 } ] @@ -90934,7 +92389,7 @@ } }, { - "id": 1848, + "id": 1850, "name": "SolanaWeb3Credentials", "variant": "declaration", "kind": 2097152, @@ -90942,7 +92397,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 611, + "line": 600, "character": 12 } ], @@ -90952,14 +92407,14 @@ { "type": "reflection", "declaration": { - "id": 1849, + "id": 1851, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1850, + "id": 1852, "name": "chain", "variant": "declaration", "kind": 1024, @@ -90967,7 +92422,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 612, + "line": 601, "character": 4 } ], @@ -90977,7 +92432,7 @@ } }, { - "id": 1853, + "id": 1855, "name": "options", "variant": "declaration", "kind": 1024, @@ -90987,21 +92442,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 617, + "line": 606, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1854, + "id": 1856, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1856, + "id": 1858, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -91019,7 +92474,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 621, + "line": 610, "character": 8 } ], @@ -91029,7 +92484,7 @@ } }, { - "id": 1857, + "id": 1859, "name": "signInWithSolana", "variant": "declaration", "kind": 1024, @@ -91039,7 +92494,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 622, + "line": 611, "character": 8 } ], @@ -91101,7 +92556,7 @@ } }, { - "id": 1855, + "id": 1857, "name": "url", "variant": "declaration", "kind": 1024, @@ -91119,7 +92574,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 619, + "line": 608, "character": 8 } ], @@ -91132,13 +92587,13 @@ "groups": [ { "title": "Properties", - "children": [1856, 1857, 1855] + "children": [1858, 1859, 1857] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 617, + "line": 606, "character": 14 } ] @@ -91146,7 +92601,7 @@ } }, { - "id": 1852, + "id": 1854, "name": "statement", "variant": "declaration", "kind": 1024, @@ -91164,7 +92619,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 616, + "line": 605, "character": 4 } ], @@ -91174,7 +92629,7 @@ } }, { - "id": 1851, + "id": 1853, "name": "wallet", "variant": "declaration", "kind": 1024, @@ -91200,13 +92655,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 614, + "line": 603, "character": 4 } ], "type": { "type": "reference", - "target": 1832, + "target": 1834, "name": "SolanaWallet", "package": "@supabase/auth-js" } @@ -91215,13 +92670,13 @@ "groups": [ { "title": "Properties", - "children": [1850, 1853, 1852, 1851] + "children": [1852, 1855, 1854, 1853] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 611, + "line": 600, "character": 36 } ] @@ -91230,14 +92685,14 @@ { "type": "reflection", "declaration": { - "id": 1858, + "id": 1860, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1859, + "id": 1861, "name": "chain", "variant": "declaration", "kind": 1024, @@ -91245,7 +92700,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 625, + "line": 614, "character": 4 } ], @@ -91255,7 +92710,7 @@ } }, { - "id": 1860, + "id": 1862, "name": "message", "variant": "declaration", "kind": 1024, @@ -91295,7 +92750,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 627, + "line": 616, "character": 4 } ], @@ -91305,7 +92760,7 @@ } }, { - "id": 1862, + "id": 1864, "name": "options", "variant": "declaration", "kind": 1024, @@ -91315,21 +92770,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 630, + "line": 619, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1863, + "id": 1865, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1864, + "id": 1866, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -91347,7 +92802,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 632, + "line": 621, "character": 8 } ], @@ -91360,13 +92815,13 @@ "groups": [ { "title": "Properties", - "children": [1864] + "children": [1866] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 630, + "line": 619, "character": 14 } ] @@ -91374,7 +92829,7 @@ } }, { - "id": 1861, + "id": 1863, "name": "signature", "variant": "declaration", "kind": 1024, @@ -91390,7 +92845,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 629, + "line": 618, "character": 4 } ], @@ -91408,13 +92863,13 @@ "groups": [ { "title": "Properties", - "children": [1859, 1860, 1862, 1861] + "children": [1861, 1862, 1864, 1863] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 624, + "line": 613, "character": 4 } ] @@ -91424,7 +92879,7 @@ } }, { - "id": 1696, + "id": 1698, "name": "SSOResponse", "variant": "declaration", "kind": 2097152, @@ -91432,25 +92887,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 232, + "line": 221, "character": 12 } ], "type": { "type": "reference", - "target": 1643, + "target": 1645, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1697, + "id": 1699, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1698, + "id": 1700, "name": "url", "variant": "declaration", "kind": 1024, @@ -91474,7 +92929,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 240, + "line": 229, "character": 4 } ], @@ -91487,13 +92942,13 @@ "groups": [ { "title": "Properties", - "children": [1698] + "children": [1700] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 232, + "line": 221, "character": 40 } ] @@ -91505,7 +92960,7 @@ } }, { - "id": 2457, + "id": 2459, "name": "StartPasskeyAuthenticationParams", "variant": "declaration", "kind": 2097152, @@ -91513,21 +92968,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2376, + "line": 2365, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2458, + "id": 2460, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2459, + "id": 2461, "name": "options", "variant": "declaration", "kind": 1024, @@ -91537,21 +92992,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2377, + "line": 2366, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2460, + "id": 2462, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2461, + "id": 2463, "name": "captchaToken", "variant": "declaration", "kind": 1024, @@ -91561,7 +93016,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2378, + "line": 2367, "character": 8 } ], @@ -91574,13 +93029,13 @@ "groups": [ { "title": "Properties", - "children": [2461] + "children": [2463] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2377, + "line": 2366, "character": 14 } ] @@ -91591,13 +93046,13 @@ "groups": [ { "title": "Properties", - "children": [2459] + "children": [2461] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2376, + "line": 2365, "character": 47 } ] @@ -91605,7 +93060,7 @@ } }, { - "id": 1640, + "id": 1642, "name": "StrictOmit", "variant": "declaration", "kind": 2097152, @@ -91621,20 +93076,20 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 167, + "line": 156, "character": 12 } ], "typeParameters": [ { - "id": 1641, + "id": 1643, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 1642, + "id": 1644, "name": "K", "variant": "typeParam", "kind": 131072, @@ -91644,7 +93099,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1641, + "target": 1643, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -91661,14 +93116,14 @@ "typeArguments": [ { "type": "reference", - "target": 1641, + "target": 1643, "name": "T", "package": "@supabase/auth-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 1642, + "target": 1644, "name": "K", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -91689,7 +93144,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 96, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L96" } ], "typeParameters": [ @@ -91737,9 +93192,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 245, + "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L252" } ], "type": { @@ -91753,9 +93208,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 245, + "line": 252, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L245" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L252" } ], "signatures": [ @@ -91807,7 +93262,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L129" } ], "type": { @@ -91840,7 +93295,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 133, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L133" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L133" } ], "type": { @@ -91869,7 +93324,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 183, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L183" } ], "type": { @@ -91922,7 +93377,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "type": { @@ -91945,7 +93400,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "signatures": [ @@ -91991,7 +93446,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "indexSignatures": [ @@ -92006,7 +93461,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 163, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L163" } ], "parameters": [ @@ -92063,9 +93518,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 201, + "line": 206, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L206" } ], "type": { @@ -92106,7 +93561,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 179, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L179" } ], "type": { @@ -92138,17 +93593,43 @@ "summary": [ { "kind": "text", - "text": "Provide your own locking mechanism based on the environment. By default no locking is done at this time." + "text": "Provide your own locking mechanism based on the environment. By default\nthe auth client coordinates refreshes itself and the server resolves\ncross-tab races. Passing a custom " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " opts into a legacy path that\nwraps every auth operation in your supplied lock." } ], - "modifierTags": ["@experimental"] + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Custom locks still work in v2.x for backwards compatibility.\nThe legacy lock path will be removed in v3 — drop this option from your\n" + }, + { + "kind": "code", + "text": "`createClient`" + }, + { + "kind": "text", + "text": " options before upgrading." + } + ] + } + ] }, "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 189, + "line": 194, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L194" } ], "type": { @@ -92180,15 +93661,23 @@ "summary": [ { "kind": "text", - "text": "Maximum time in milliseconds to wait when acquiring the auth lock before\nstealing it from the previous holder. See " + "text": "Maximum time in milliseconds to wait for acquiring the custom lock\nsupplied via " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": ". Only consulted when a custom " }, { "kind": "code", - "text": "`GoTrueClientOptions.lockAcquireTimeout`" + "text": "`lock`" }, { "kind": "text", - "text": "\nfor full semantics (zero fails immediately, negative waits indefinitely)." + "text": " is passed." } ], "blockTags": [ @@ -92200,15 +93689,32 @@ "text": "```ts\n5000\n```" } ] + }, + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Only used by the legacy lock path. Will be removed in v3\nalong with the " + }, + { + "kind": "code", + "text": "`lock`" + }, + { + "kind": "text", + "text": " option." + } + ] } ] }, "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 209, + "line": 216, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L216" } ], "type": { @@ -92249,7 +93755,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 141, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L141" } ], "type": { @@ -92287,9 +93793,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 217, + "line": 224, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L224" } ], "type": { @@ -92330,7 +93836,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 167, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L167" } ], "type": { @@ -92371,7 +93877,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 137, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L137" } ], "type": { @@ -92398,9 +93904,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 194, + "line": 199, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L199" } ], "type": { @@ -92442,7 +93948,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 175, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L175" } ], "type": { @@ -92477,7 +93983,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 129, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L129" } ] } @@ -92512,7 +94018,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L100" } ], "type": { @@ -92537,7 +94043,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 101, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L101" } ], "type": { @@ -92581,7 +94087,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 113, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L113" } ], "type": { @@ -92622,7 +94128,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 126, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L126" } ], "type": { @@ -92642,7 +94148,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 100, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L100" } ] } @@ -92659,9 +94165,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 224, + "line": 231, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L231" } ], "type": { @@ -92700,9 +94206,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 228, + "line": 235, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L235" } ], "type": { @@ -92734,9 +94240,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 232, + "line": 239, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L239" } ], "type": { @@ -92769,9 +94275,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 224, + "line": 231, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L231" } ] } @@ -92796,14 +94302,14 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 222, + "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L229" } ], "type": { "type": "reference", - "target": 3251, + "target": 3273, "name": "RealtimeClientOptions", "package": "@supabase/realtime-js" } @@ -92819,9 +94325,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 223, + "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L230" } ], "type": { @@ -92970,9 +94476,9 @@ "sources": [ { "fileName": "packages/core/supabase-js/src/lib/types.ts", - "line": 294, + "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L294" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L301" } ], "type": { @@ -93003,14 +94509,14 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 96, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/lib/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/lib/types.ts#L96" } ] } } }, { - "id": 2101, + "id": 2103, "name": "SupportedStorage", "variant": "declaration", "kind": 2097152, @@ -93018,7 +94524,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1529, + "line": 1518, "character": 12 } ], @@ -93076,14 +94582,14 @@ { "type": "reflection", "declaration": { - "id": 2102, + "id": 2104, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2103, + "id": 2105, "name": "isServer", "variant": "declaration", "kind": 1024, @@ -93109,7 +94615,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1537, + "line": 1526, "character": 4 } ], @@ -93122,13 +94628,13 @@ "groups": [ { "title": "Properties", - "children": [2103] + "children": [2105] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1529, + "line": 1518, "character": 103 } ] @@ -93138,7 +94644,7 @@ } }, { - "id": 2307, + "id": 2309, "name": "UpdateCustomProviderParams", "variant": "declaration", "kind": 2097152, @@ -93170,21 +94676,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1994, + "line": 1983, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2308, + "id": 2310, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2312, + "id": 2314, "name": "acceptable_client_ids", "variant": "declaration", "kind": 1024, @@ -93202,7 +94708,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2002, + "line": 1991, "character": 4 } ], @@ -93215,7 +94721,7 @@ } }, { - "id": 2315, + "id": 2317, "name": "attribute_mapping", "variant": "declaration", "kind": 1024, @@ -93233,7 +94739,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2008, + "line": 1997, "character": 4 } ], @@ -93258,7 +94764,7 @@ } }, { - "id": 2316, + "id": 2318, "name": "authorization_params", "variant": "declaration", "kind": 1024, @@ -93276,7 +94782,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2010, + "line": 1999, "character": 4 } ], @@ -93301,7 +94807,7 @@ } }, { - "id": 2322, + "id": 2324, "name": "authorization_url", "variant": "declaration", "kind": 1024, @@ -93319,7 +94825,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2022, + "line": 2011, "character": 4 } ], @@ -93329,7 +94835,7 @@ } }, { - "id": 2310, + "id": 2312, "name": "client_id", "variant": "declaration", "kind": 1024, @@ -93347,7 +94853,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1998, + "line": 1987, "character": 4 } ], @@ -93357,7 +94863,7 @@ } }, { - "id": 2311, + "id": 2313, "name": "client_secret", "variant": "declaration", "kind": 1024, @@ -93375,7 +94881,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2000, + "line": 1989, "character": 4 } ], @@ -93385,7 +94891,7 @@ } }, { - "id": 2320, + "id": 2322, "name": "discovery_url", "variant": "declaration", "kind": 1024, @@ -93403,7 +94909,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2018, + "line": 2007, "character": 4 } ], @@ -93413,7 +94919,7 @@ } }, { - "id": 2318, + "id": 2320, "name": "email_optional", "variant": "declaration", "kind": 1024, @@ -93431,7 +94937,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2014, + "line": 2003, "character": 4 } ], @@ -93441,7 +94947,7 @@ } }, { - "id": 2317, + "id": 2319, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -93459,7 +94965,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2012, + "line": 2001, "character": 4 } ], @@ -93469,7 +94975,7 @@ } }, { - "id": 2319, + "id": 2321, "name": "issuer", "variant": "declaration", "kind": 1024, @@ -93487,7 +94993,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2016, + "line": 2005, "character": 4 } ], @@ -93497,7 +95003,7 @@ } }, { - "id": 2325, + "id": 2327, "name": "jwks_uri", "variant": "declaration", "kind": 1024, @@ -93515,7 +95021,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2028, + "line": 2017, "character": 4 } ], @@ -93525,7 +95031,7 @@ } }, { - "id": 2309, + "id": 2311, "name": "name", "variant": "declaration", "kind": 1024, @@ -93543,7 +95049,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1996, + "line": 1985, "character": 4 } ], @@ -93553,7 +95059,7 @@ } }, { - "id": 2314, + "id": 2316, "name": "pkce_enabled", "variant": "declaration", "kind": 1024, @@ -93571,7 +95077,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2006, + "line": 1995, "character": 4 } ], @@ -93581,7 +95087,7 @@ } }, { - "id": 2313, + "id": 2315, "name": "scopes", "variant": "declaration", "kind": 1024, @@ -93599,7 +95105,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2004, + "line": 1993, "character": 4 } ], @@ -93612,7 +95118,7 @@ } }, { - "id": 2321, + "id": 2323, "name": "skip_nonce_check", "variant": "declaration", "kind": 1024, @@ -93630,7 +95136,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2020, + "line": 2009, "character": 4 } ], @@ -93640,7 +95146,7 @@ } }, { - "id": 2323, + "id": 2325, "name": "token_url", "variant": "declaration", "kind": 1024, @@ -93658,7 +95164,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2024, + "line": 2013, "character": 4 } ], @@ -93668,7 +95174,7 @@ } }, { - "id": 2324, + "id": 2326, "name": "userinfo_url", "variant": "declaration", "kind": 1024, @@ -93686,7 +95192,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2026, + "line": 2015, "character": 4 } ], @@ -93700,15 +95206,15 @@ { "title": "Properties", "children": [ - 2312, 2315, 2316, 2322, 2310, 2311, 2320, 2318, 2317, 2319, 2325, 2309, 2314, - 2313, 2321, 2323, 2324 + 2314, 2317, 2318, 2324, 2312, 2313, 2322, 2320, 2319, 2321, 2327, 2311, 2316, + 2315, 2323, 2325, 2326 ] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1994, + "line": 1983, "character": 41 } ] @@ -93716,7 +95222,7 @@ } }, { - "id": 2205, + "id": 2207, "name": "UpdateOAuthClientParams", "variant": "declaration", "kind": 2097152, @@ -93732,21 +95238,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1762, + "line": 1751, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2206, + "id": 2208, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2207, + "id": 2209, "name": "client_name", "variant": "declaration", "kind": 1024, @@ -93764,7 +95270,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1764, + "line": 1753, "character": 4 } ], @@ -93774,7 +95280,7 @@ } }, { - "id": 2208, + "id": 2210, "name": "client_uri", "variant": "declaration", "kind": 1024, @@ -93792,7 +95298,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1766, + "line": 1755, "character": 4 } ], @@ -93802,7 +95308,7 @@ } }, { - "id": 2211, + "id": 2213, "name": "grant_types", "variant": "declaration", "kind": 1024, @@ -93820,7 +95326,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1772, + "line": 1761, "character": 4 } ], @@ -93828,14 +95334,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2174, + "target": 2176, "name": "OAuthClientGrantType", "package": "@supabase/auth-js" } } }, { - "id": 2209, + "id": 2211, "name": "logo_uri", "variant": "declaration", "kind": 1024, @@ -93853,7 +95359,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1768, + "line": 1757, "character": 4 } ], @@ -93863,7 +95369,7 @@ } }, { - "id": 2210, + "id": 2212, "name": "redirect_uris", "variant": "declaration", "kind": 1024, @@ -93881,7 +95387,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1770, + "line": 1759, "character": 4 } ], @@ -93894,7 +95400,7 @@ } }, { - "id": 2212, + "id": 2214, "name": "token_endpoint_auth_method", "variant": "declaration", "kind": 1024, @@ -93912,13 +95418,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1774, + "line": 1763, "character": 4 } ], "type": { "type": "reference", - "target": 2179, + "target": 2181, "name": "OAuthClientTokenEndpointAuthMethod", "package": "@supabase/auth-js" } @@ -93927,13 +95433,13 @@ "groups": [ { "title": "Properties", - "children": [2207, 2208, 2211, 2209, 2210, 2212] + "children": [2209, 2210, 2213, 2211, 2212, 2214] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1762, + "line": 1751, "character": 38 } ] @@ -93941,7 +95447,7 @@ } }, { - "id": 1699, + "id": 1701, "name": "UserResponse", "variant": "declaration", "kind": 2097152, @@ -93949,25 +95455,25 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 242, + "line": 231, "character": 12 } ], "type": { "type": "reference", - "target": 1652, + "target": 1654, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 1700, + "id": 1702, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1701, + "id": 1703, "name": "user", "variant": "declaration", "kind": 1024, @@ -93975,7 +95481,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 243, + "line": 232, "character": 4 } ], @@ -93990,13 +95496,13 @@ "groups": [ { "title": "Properties", - "children": [1701] + "children": [1703] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 242, + "line": 231, "character": 56 } ] @@ -94008,7 +95514,7 @@ } }, { - "id": 1884, + "id": 1886, "name": "VerifyOtpParams", "variant": "declaration", "kind": 2097152, @@ -94016,7 +95522,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 661, + "line": 650, "character": 12 } ], @@ -94025,19 +95531,19 @@ "types": [ { "type": "reference", - "target": 1885, + "target": 1887, "name": "VerifyMobileOtpParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1893, + "target": 1895, "name": "VerifyEmailOtpParams", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1901, + "target": 1903, "name": "VerifyTokenHashParams", "package": "@supabase/auth-js" } @@ -94045,7 +95551,7 @@ } }, { - "id": 2462, + "id": 2464, "name": "VerifyPasskeyAuthenticationParams", "variant": "declaration", "kind": 2097152, @@ -94053,21 +95559,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2381, + "line": 2370, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2463, + "id": 2465, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2464, + "id": 2466, "name": "challengeId", "variant": "declaration", "kind": 1024, @@ -94083,7 +95589,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2383, + "line": 2372, "character": 4 } ], @@ -94093,7 +95599,7 @@ } }, { - "id": 2465, + "id": 2467, "name": "credential", "variant": "declaration", "kind": 1024, @@ -94109,7 +95615,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2385, + "line": 2374, "character": 4 } ], @@ -94127,13 +95633,13 @@ "groups": [ { "title": "Properties", - "children": [2464, 2465] + "children": [2466, 2467] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2381, + "line": 2370, "character": 48 } ] @@ -94141,7 +95647,7 @@ } }, { - "id": 2453, + "id": 2455, "name": "VerifyPasskeyRegistrationParams", "variant": "declaration", "kind": 2097152, @@ -94149,21 +95655,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2370, + "line": 2359, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2454, + "id": 2456, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2455, + "id": 2457, "name": "challengeId", "variant": "declaration", "kind": 1024, @@ -94179,7 +95685,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2372, + "line": 2361, "character": 4 } ], @@ -94189,7 +95695,7 @@ } }, { - "id": 2456, + "id": 2458, "name": "credential", "variant": "declaration", "kind": 1024, @@ -94205,7 +95711,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2374, + "line": 2363, "character": 4 } ], @@ -94223,13 +95729,13 @@ "groups": [ { "title": "Properties", - "children": [2455, 2456] + "children": [2457, 2458] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 2370, + "line": 2359, "character": 46 } ] @@ -94237,7 +95743,7 @@ } }, { - "id": 1634, + "id": 1636, "name": "WeakPassword", "variant": "declaration", "kind": 2097152, @@ -94245,21 +95751,21 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 151, + "line": 140, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 1635, + "id": 1637, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1637, + "id": 1639, "name": "message", "variant": "declaration", "kind": 1024, @@ -94267,7 +95773,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 153, + "line": 142, "character": 4 } ], @@ -94277,7 +95783,7 @@ } }, { - "id": 1636, + "id": 1638, "name": "reasons", "variant": "declaration", "kind": 1024, @@ -94285,7 +95791,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 152, + "line": 141, "character": 4 } ], @@ -94293,7 +95799,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1633, + "target": 1635, "name": "WeakPasswordReasons", "package": "@supabase/auth-js" } @@ -94303,13 +95809,13 @@ "groups": [ { "title": "Properties", - "children": [1637, 1636] + "children": [1639, 1638] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 151, + "line": 140, "character": 27 } ] @@ -94317,7 +95823,7 @@ } }, { - "id": 1633, + "id": 1635, "name": "WeakPasswordReasons", "variant": "declaration", "kind": 2097152, @@ -94325,7 +95831,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 150, + "line": 139, "character": 12 } ], @@ -94351,7 +95857,7 @@ } }, { - "id": 1883, + "id": 1885, "name": "Web3Credentials", "variant": "declaration", "kind": 2097152, @@ -94359,7 +95865,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 660, + "line": 649, "character": 12 } ], @@ -94368,13 +95874,13 @@ "types": [ { "type": "reference", - "target": 1848, + "target": 1850, "name": "SolanaWeb3Credentials", "package": "@supabase/auth-js" }, { "type": "reference", - "target": 1866, + "target": 1868, "name": "EthereumWeb3Credentials", "package": "@supabase/auth-js" } @@ -94382,7 +95888,7 @@ } }, { - "id": 1559, + "id": 1561, "name": "AuthAdminApi", "variant": "declaration", "kind": 32, @@ -94408,7 +95914,7 @@ } }, { - "id": 1560, + "id": 1562, "name": "AuthClient", "variant": "declaration", "kind": 32, @@ -94426,7 +95932,7 @@ "type": "query", "queryType": { "type": "reference", - "target": 1222, + "target": 1221, "name": "GoTrueClient", "package": "@supabase/auth-js", "qualifiedName": "default" @@ -94434,7 +95940,7 @@ } }, { - "id": 1574, + "id": 1576, "name": "lockInternals", "variant": "declaration", "kind": 32, @@ -94443,26 +95949,53 @@ }, "comment": { "summary": [], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Debug flag for " + }, + { + "kind": "code", + "text": "`navigatorLock`" + }, + { + "kind": "text", + "text": " / " + }, + { + "kind": "code", + "text": "`processLock`" + }, + { + "kind": "text", + "text": ". The auth\nclient ignores both, so this has no client-side effect." + } + ] + } + ], "modifierTags": ["@experimental"] }, "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 4, + "line": 14, "character": 21 } ], "type": { "type": "reflection", "declaration": { - "id": 1575, + "id": 1577, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1576, + "id": 1578, "name": "debug", "variant": "declaration", "kind": 1024, @@ -94474,7 +96007,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 8, + "line": 18, "character": 4 } ], @@ -94487,13 +96020,13 @@ "groups": [ { "title": "Properties", - "children": [1576] + "children": [1578] } ], "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 4, + "line": 14, "character": 32 } ] @@ -94501,7 +96034,7 @@ } }, { - "id": 3390, + "id": 3412, "name": "REALTIME_CHANNEL_STATES", "variant": "declaration", "kind": 32, @@ -94518,14 +96051,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3391, + "id": 3413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3392, + "id": 3414, "name": "closed", "variant": "declaration", "kind": 1024, @@ -94545,7 +96078,7 @@ } }, { - "id": 3393, + "id": 3415, "name": "errored", "variant": "declaration", "kind": 1024, @@ -94565,7 +96098,7 @@ } }, { - "id": 3394, + "id": 3416, "name": "joined", "variant": "declaration", "kind": 1024, @@ -94585,7 +96118,7 @@ } }, { - "id": 3395, + "id": 3417, "name": "joining", "variant": "declaration", "kind": 1024, @@ -94605,7 +96138,7 @@ } }, { - "id": 3396, + "id": 3418, "name": "leaving", "variant": "declaration", "kind": 1024, @@ -94628,7 +96161,7 @@ "groups": [ { "title": "Properties", - "children": [3392, 3393, 3394, 3395, 3396] + "children": [3414, 3415, 3416, 3417, 3418] } ], "sources": [ @@ -94642,7 +96175,7 @@ } }, { - "id": 2172, + "id": 2174, "name": "SIGN_OUT_SCOPES", "variant": "declaration", "kind": 32, @@ -94652,7 +96185,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 1676, + "line": 1665, "character": 21 } ], @@ -94709,7 +96242,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 47, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L47" } ], "signatures": [ @@ -94724,7 +96257,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 47, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L47" } ], "typeParameters": [ @@ -94772,7 +96305,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 51, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L51" } ], "type": { @@ -94792,7 +96325,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 51, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L51" } ] } @@ -95114,7 +96647,7 @@ ] }, { - "id": 2520, + "id": 2522, "name": "isAuthApiError", "variant": "declaration", "kind": 64, @@ -95128,7 +96661,7 @@ ], "signatures": [ { - "id": 2521, + "id": 2523, "name": "isAuthApiError", "variant": "signature", "kind": 4096, @@ -95142,7 +96675,7 @@ ], "parameters": [ { - "id": 2522, + "id": 2524, "name": "error", "variant": "param", "kind": 32768, @@ -95159,7 +96692,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2556, + "target": 2561, "name": "AuthApiError", "package": "@supabase/auth-js" } @@ -95168,7 +96701,7 @@ ] }, { - "id": 2517, + "id": 2519, "name": "isAuthError", "variant": "declaration", "kind": 64, @@ -95182,7 +96715,7 @@ ], "signatures": [ { - "id": 2518, + "id": 2520, "name": "isAuthError", "variant": "signature", "kind": 4096, @@ -95196,7 +96729,7 @@ ], "parameters": [ { - "id": 2519, + "id": 2521, "name": "error", "variant": "param", "kind": 32768, @@ -95213,7 +96746,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2538, + "target": 2543, "name": "AuthError", "package": "@supabase/auth-js" } @@ -95222,7 +96755,7 @@ ] }, { - "id": 2526, + "id": 2528, "name": "isAuthImplicitGrantRedirectError", "variant": "declaration", "kind": 64, @@ -95236,7 +96769,7 @@ ], "signatures": [ { - "id": 2527, + "id": 2529, "name": "isAuthImplicitGrantRedirectError", "variant": "signature", "kind": 4096, @@ -95250,7 +96783,7 @@ ], "parameters": [ { - "id": 2528, + "id": 2530, "name": "error", "variant": "param", "kind": 32768, @@ -95267,7 +96800,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2661, + "target": 2666, "name": "AuthImplicitGrantRedirectError", "package": "@supabase/auth-js" } @@ -95276,7 +96809,7 @@ ] }, { - "id": 2529, + "id": 2531, "name": "isAuthPKCECodeVerifierMissingError", "variant": "declaration", "kind": 64, @@ -95290,7 +96823,7 @@ ], "signatures": [ { - "id": 2530, + "id": 2532, "name": "isAuthPKCECodeVerifierMissingError", "variant": "signature", "kind": 4096, @@ -95304,7 +96837,7 @@ ], "parameters": [ { - "id": 2531, + "id": 2533, "name": "error", "variant": "param", "kind": 32768, @@ -95321,7 +96854,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2719, + "target": 2724, "name": "AuthPKCECodeVerifierMissingError", "package": "@supabase/auth-js" } @@ -95330,7 +96863,61 @@ ] }, { - "id": 2532, + "id": 2537, + "name": "isAuthRefreshDiscardedError", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 238, + "character": 24 + } + ], + "signatures": [ + { + "id": 2538, + "name": "isAuthRefreshDiscardedError", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", + "line": 238, + "character": 24 + } + ], + "parameters": [ + { + "id": 2539, + "name": "error", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "unknown" + } + } + ], + "type": { + "type": "predicate", + "name": "error", + "asserts": false, + "targetType": { + "type": "reference", + "target": 2758, + "name": "AuthRefreshDiscardedError", + "package": "@supabase/auth-js" + } + } + } + ] + }, + { + "id": 2534, "name": "isAuthRetryableFetchError", "variant": "declaration", "kind": 64, @@ -95344,7 +96931,7 @@ ], "signatures": [ { - "id": 2533, + "id": 2535, "name": "isAuthRetryableFetchError", "variant": "signature", "kind": 4096, @@ -95358,7 +96945,7 @@ ], "parameters": [ { - "id": 2534, + "id": 2536, "name": "error", "variant": "param", "kind": 32768, @@ -95375,7 +96962,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2735, + "target": 2740, "name": "AuthRetryableFetchError", "package": "@supabase/auth-js" } @@ -95384,7 +96971,7 @@ ] }, { - "id": 2523, + "id": 2525, "name": "isAuthSessionMissingError", "variant": "declaration", "kind": 64, @@ -95398,7 +96985,7 @@ ], "signatures": [ { - "id": 2524, + "id": 2526, "name": "isAuthSessionMissingError", "variant": "signature", "kind": 4096, @@ -95412,7 +96999,7 @@ ], "parameters": [ { - "id": 2525, + "id": 2527, "name": "error", "variant": "param", "kind": 32768, @@ -95429,7 +97016,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2612, + "target": 2617, "name": "AuthSessionMissingError", "package": "@supabase/auth-js" } @@ -95438,7 +97025,7 @@ ] }, { - "id": 2535, + "id": 2540, "name": "isAuthWeakPasswordError", "variant": "declaration", "kind": 64, @@ -95446,13 +97033,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 244, + "line": 268, "character": 24 } ], "signatures": [ { - "id": 2536, + "id": 2541, "name": "isAuthWeakPasswordError", "variant": "signature", "kind": 4096, @@ -95460,13 +97047,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts", - "line": 244, + "line": 268, "character": 24 } ], "parameters": [ { - "id": 2537, + "id": 2542, "name": "error", "variant": "param", "kind": 32768, @@ -95483,7 +97070,7 @@ "asserts": false, "targetType": { "type": "reference", - "target": 2753, + "target": 2775, "name": "AuthWeakPasswordError", "package": "@supabase/auth-js" } @@ -95492,7 +97079,7 @@ ] }, { - "id": 1561, + "id": 1563, "name": "navigatorLock", "variant": "declaration", "kind": 64, @@ -95500,13 +97087,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, + "line": 74, "character": 24 } ], "signatures": [ { - "id": 1562, + "id": 1564, "name": "navigatorLock", "variant": "signature", "kind": 4096, @@ -95521,7 +97108,7 @@ "kind": "inline-tag", "tag": "@link", "text": "GoTrueClient", - "target": 1222 + "target": 1221 }, { "kind": "text", @@ -95562,210 +97149,19 @@ ], "blockTags": [ { - "tag": "@example", + "tag": "@deprecated", "content": [ - { - "kind": "code", - "text": "```ts\nawait navigatorLock('sync-user', 1000, async () => {\n await refreshSession()\n})\n```" - } - ] - } - ] - }, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, - "character": 24 - } - ], - "typeParameters": [ - { - "id": 1563, - "name": "R", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], - "parameters": [ - { - "id": 1564, - "name": "name", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the lock to be acquired." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1565, - "name": "acquireTimeout", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ { "kind": "text", - "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " }, { "kind": "code", - "text": "`isAcquireTimeout`" + "text": "`{ lock: navigatorLock }`" }, { "kind": "text", - "text": " set to true." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1566, - "name": "fn", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The operation to run once the lock is acquired." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1567, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, - "character": 83 - } - ], - "signatures": [ - { - "id": 1568, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 85, - "character": 83 - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1563, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1563, - "name": "R", - "package": "@supabase/auth-js", - "refersToTypeParameter": true - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1577, - "name": "processLock", - "variant": "declaration", - "kind": 64, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, - "character": 24 - } - ], - "signatures": [ - { - "id": 1578, - "name": "processLock", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " - }, - { - "kind": "inline-tag", - "tag": "@link", - "text": "#navigatorLock" - }, - { - "kind": "text", - "text": " in browser environments." - } - ], - "blockTags": [ - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + "text": "\nto it has no effect. You can safely drop the import from your client setup." } ] } @@ -95774,13 +97170,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, + "line": 74, "character": 24 } ], "typeParameters": [ { - "id": 1579, + "id": 1565, "name": "R", "variant": "typeParam", "kind": 131072, @@ -95789,7 +97185,7 @@ ], "parameters": [ { - "id": 1580, + "id": 1566, "name": "name", "variant": "param", "kind": 32768, @@ -95808,7 +97204,7 @@ } }, { - "id": 1581, + "id": 1567, "name": "acquireTimeout", "variant": "param", "kind": 32768, @@ -95834,8 +97230,224 @@ "name": "number" } }, + { + "id": 1568, + "name": "fn", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The operation to run once the lock is acquired." + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1569, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 74, + "character": 83 + } + ], + "signatures": [ + { + "id": 1570, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 74, + "character": 83 + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1565, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1565, + "name": "R", + "package": "@supabase/auth-js", + "refersToTypeParameter": true + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 1579, + "name": "processLock", + "variant": "declaration", + "kind": 64, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 100, + "character": 24 + } + ], + "signatures": [ + { + "id": 1580, + "name": "processLock", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse " + }, + { + "kind": "inline-tag", + "tag": "@link", + "text": "#navigatorLock" + }, + { + "kind": "text", + "text": " in browser environments." + } + ], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "The auth client coordinates refreshes itself and the server\nresolves concurrent refresh races, so passing " + }, + { + "kind": "code", + "text": "`{ lock: processLock }`" + }, + { + "kind": "text", + "text": "\nto it has no effect. You can safely drop the import from your client setup." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", + "line": 100, + "character": 24 + } + ], + "typeParameters": [ + { + "id": 1581, + "name": "R", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "parameters": [ { "id": 1582, + "name": "name", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Name of the lock to be acquired." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1583, + "name": "acquireTimeout", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has " + }, + { + "kind": "code", + "text": "`isAcquireTimeout`" + }, + { + "kind": "text", + "text": " set to true." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1584, "name": "fn", "variant": "param", "kind": 32768, @@ -95851,7 +97463,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1583, + "id": 1585, "name": "__type", "variant": "declaration", "kind": 65536, @@ -95859,13 +97471,13 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, + "line": 100, "character": 81 } ], "signatures": [ { - "id": 1584, + "id": 1586, "name": "__type", "variant": "signature", "kind": 4096, @@ -95873,7 +97485,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts", - "line": 106, + "line": 100, "character": 81 } ], @@ -95886,7 +97498,7 @@ "typeArguments": [ { "type": "reference", - "target": 1579, + "target": 1581, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -95910,7 +97522,7 @@ "typeArguments": [ { "type": "reference", - "target": 1579, + "target": 1581, "name": "R", "package": "@supabase/auth-js", "refersToTypeParameter": true @@ -95923,7 +97535,7 @@ ] }, { - "id": 1702, + "id": 1704, "name": "Session", "variant": "reference", "kind": 4194304, @@ -95931,14 +97543,14 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 245, + "line": 234, "character": 17 } ], "target": 42 }, { - "id": 1740, + "id": 1742, "name": "User", "variant": "reference", "kind": 4194304, @@ -95946,7 +97558,7 @@ "sources": [ { "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts", - "line": 360, + "line": 349, "character": 17 } ], @@ -95956,50 +97568,51 @@ "groups": [ { "title": "Enumerations", - "children": [925, 3371, 3376, 3381, 3385] + "children": [925, 3393, 3398, 3403, 3407] }, { "title": "Classes", "children": [ - 2556, 2538, 2661, 2644, 2774, 2628, 2719, 2690, 2735, 2612, 2574, 2753, 2592, 912, 890, - 879, 901, 1124, 1222, 1569, 57, 830, 141, 729, 559, 2800, 3130, 2791, 850, 941, 3397 + 2561, 2543, 2666, 2649, 2796, 2633, 2724, 2695, 2758, 2740, 2617, 2579, 2775, 2597, 912, + 890, 879, 901, 1124, 1221, 1571, 57, 830, 141, 729, 559, 2822, 3152, 2813, 850, 941, + 3419 ] }, { "title": "Interfaces", "children": [ - 1748, 1705, 2390, 2490, 42, 15, 1959, 2341, 2094, 2226, 2510, 2023, 2164, 2144, 1762, - 1112, 1732, 1741, 1708, 1737, 1893, 1885, 1901, 3409, 3459 + 1750, 1707, 2392, 2492, 42, 15, 1961, 2343, 2096, 2228, 2512, 2025, 2166, 2146, 1764, + 1112, 1734, 1743, 1710, 1739, 1895, 1887, 1903, 3431, 3481 ] }, { "title": "Type Aliases", "children": [ - 1703, 1587, 1586, 2016, 1808, 2084, 2081, 2091, 2088, 2007, 2011, 2006, 2008, 2009, - 2010, 2126, 2002, 2125, 2127, 2018, 2012, 2003, 2001, 1994, 2380, 2381, 2387, 2388, - 1669, 2486, 2483, 2475, 2476, 2482, 2480, 2473, 2474, 2481, 1660, 1664, 1674, 1678, - 2107, 2286, 2196, 2262, 2330, 2329, 2249, 1122, 1906, 1865, 1866, 1630, 1721, 1720, 868, - 1953, 1943, 1962, 1967, 1963, 1974, 1948, 1937, 1597, 2104, 2128, 2326, 1588, 1993, - 1992, 1990, 1989, 1991, 1975, 2123, 2122, 2124, 1988, 1976, 1987, 1980, 1979, 1981, - 1985, 1904, 2361, 2367, 2180, 2174, 2214, 2178, 2213, 2176, 2179, 2177, 2382, 2377, - 1683, 2250, 2115, 2108, 2427, 2432, 2470, 2436, 2422, 2413, 2418, 2466, 55, 51, 53, - 1638, 1585, 1117, 1121, 1115, 3114, 3128, 3251, 3292, 3299, 3306, 3330, 3311, 3321, - 3340, 3350, 3360, 3369, 2448, 1643, 1652, 2134, 1908, 1772, 1822, 1810, 2442, 1786, - 1791, 1922, 2119, 2173, 1778, 1832, 1848, 1696, 2457, 1640, 1072, 2101, 2307, 2205, - 1699, 1884, 2462, 2453, 1634, 1633, 1883 + 1705, 1589, 1588, 2018, 1810, 2086, 2083, 2093, 2090, 2009, 2013, 2008, 2010, 2011, + 2012, 2128, 2004, 2127, 2129, 2020, 2014, 2005, 2003, 1996, 2382, 2383, 2389, 2390, + 1671, 2488, 2485, 2477, 2478, 2484, 2482, 2475, 2476, 2483, 1662, 1666, 1676, 1680, + 2109, 2288, 2198, 2264, 2332, 2331, 2251, 1122, 1908, 1867, 1868, 1632, 1723, 1722, 868, + 1955, 1945, 1964, 1969, 1965, 1976, 1950, 1939, 1599, 2106, 2130, 2328, 1590, 1995, + 1994, 1992, 1991, 1993, 1977, 2125, 2124, 2126, 1990, 1978, 1989, 1982, 1981, 1983, + 1987, 1906, 2363, 2369, 2182, 2176, 2216, 2180, 2215, 2178, 2181, 2179, 2384, 2379, + 1685, 2252, 2117, 2110, 2429, 2434, 2472, 2438, 2424, 2415, 2420, 2468, 55, 51, 53, + 1640, 1587, 1117, 1121, 1115, 3136, 3150, 3273, 3314, 3321, 3328, 3352, 3333, 3343, + 3362, 3372, 3382, 3391, 2450, 1645, 1654, 2136, 1910, 1774, 1824, 1812, 2444, 1788, + 1793, 1924, 2121, 2175, 1780, 1834, 1850, 1698, 2459, 1642, 1072, 2103, 2309, 2207, + 1701, 1886, 2464, 2455, 1636, 1635, 1885 ] }, { "title": "Variables", - "children": [1559, 1560, 1574, 3390, 2172] + "children": [1561, 1562, 1576, 3412, 2174] }, { "title": "Functions", - "children": [2, 2520, 2517, 2526, 2529, 2532, 2523, 2535, 1561, 1577] + "children": [2, 2522, 2519, 2528, 2531, 2537, 2534, 2525, 2540, 1563, 1579] }, { "title": "References", - "children": [1702, 1740] + "children": [1704, 1742] } ], "sources": [ @@ -96007,7 +97620,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/a5f09cf9a0a8c2744464a8505333ab3136e3f290/packages/core/supabase-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/b785a4f1ead99dbbcbd5c43e3d26119cf21a4d90/packages/core/supabase-js/src/index.ts#L1" } ] } @@ -100896,69 +102509,73 @@ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "__type.__index" }, - "1153": { + "1152": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.fetch" }, - "1154": { + "1153": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1155": { + "1154": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1156": { + "1155": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "1157": { + "1156": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "1158": { + "1157": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "1159": { + "1158": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "1160": { + "1159": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "1161": { + "1160": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.experimental" }, + "1161": { + "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", + "qualifiedName": "default.signOut" + }, "1162": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.signOut" }, "1163": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.signOut" + "qualifiedName": "jwt" }, "1164": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "jwt" + "qualifiedName": "scope" }, "1165": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "scope" + "qualifiedName": "__type" }, "1166": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1167": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "1168": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.error" + "qualifiedName": "default.inviteUserByEmail" }, "1169": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -100966,27 +102583,27 @@ }, "1170": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.inviteUserByEmail" + "qualifiedName": "email" }, "1171": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "email" + "qualifiedName": "options" }, "1172": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "options" + "qualifiedName": "__type" }, "1173": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1174": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.redirectTo" }, "1175": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "default.generateLink" }, "1176": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -100994,11 +102611,11 @@ }, "1177": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.generateLink" + "qualifiedName": "params" }, "1178": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "params" + "qualifiedName": "default.createUser" }, "1179": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101006,11 +102623,11 @@ }, "1180": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.createUser" + "qualifiedName": "attributes" }, "1181": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "attributes" + "qualifiedName": "default.listUsers" }, "1182": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101018,55 +102635,55 @@ }, "1183": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.listUsers" + "qualifiedName": "params" }, "1184": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "params" + "qualifiedName": "__type" }, "1185": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1186": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1187": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.users" }, "1188": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.users" + "qualifiedName": "__type.aud" }, "1189": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.aud" + "qualifiedName": "__type.error" }, "1190": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "1191": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1192": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1193": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.users" }, "1194": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.users" + "qualifiedName": "__type.error" }, "1195": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "__type.error" + "qualifiedName": "default.getUserById" }, "1196": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101074,11 +102691,11 @@ }, "1197": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.getUserById" + "qualifiedName": "uid" }, "1198": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "uid" + "qualifiedName": "default.updateUserById" }, "1199": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", @@ -101086,103 +102703,103 @@ }, "1200": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.updateUserById" + "qualifiedName": "uid" }, "1201": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "uid" + "qualifiedName": "attributes" }, "1202": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "attributes" + "qualifiedName": "default.deleteUser" }, "1203": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "default.deleteUser" }, "1204": { - "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", - "qualifiedName": "default.deleteUser" - }, - "1205": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "id" }, - "1206": { + "1205": { "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts", "qualifiedName": "shouldSoftDelete" }, - "1222": { + "1221": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default" }, - "1224": { + "1223": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.__constructor" }, - "1225": { + "1224": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default" }, - "1226": { + "1225": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "options" }, - "1228": { + "1227": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.admin" }, - "1229": { + "1228": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.mfa" }, - "1230": { + "1229": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.oauth" }, - "1231": { + "1230": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.passkey" }, - "1232": { + "1231": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.storageKey" }, - "1233": { + "1232": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.flowType" }, + "1233": { + "sourceFileName": "../auth-js/src/GoTrueClient.ts", + "qualifiedName": "default.jwks" + }, "1234": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.jwks" }, "1235": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.jwks" + "qualifiedName": "__type" }, "1236": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.keys" }, "1237": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "default.jwks" }, "1238": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.jwks" + "qualifiedName": "value" }, "1239": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "value" + "qualifiedName": "__type" }, "1240": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.keys" }, "1241": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "default.jwks_cached_at" }, "1242": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -101194,55 +102811,55 @@ }, "1244": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.jwks_cached_at" + "qualifiedName": "value" }, "1245": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "value" + "qualifiedName": "default.autoRefreshToken" }, "1246": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.autoRefreshToken" + "qualifiedName": "default.persistSession" }, "1247": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.persistSession" + "qualifiedName": "default.storage" }, "1248": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.storage" + "qualifiedName": "default.userStorage" }, "1249": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.userStorage" + "qualifiedName": "default.memoryStorage" }, "1250": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.memoryStorage" + "qualifiedName": "__type" }, "1251": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.__index" }, - "1252": { + "1253": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "default.stateChangeEmitters" }, "1254": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.stateChangeEmitters" + "qualifiedName": "default.autoRefreshTicker" }, "1255": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.autoRefreshTicker" + "qualifiedName": "default.autoRefreshTickTimeout" }, "1256": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.autoRefreshTickTimeout" + "qualifiedName": "default.visibilityChangedCallback" }, "1257": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.visibilityChangedCallback" + "qualifiedName": "__type" }, "1258": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -101250,11 +102867,11 @@ }, "1259": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "default.refreshingDeferred" }, "1260": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.refreshingDeferred" + "qualifiedName": "default._sessionRemovalEpoch" }, "1261": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -102112,45 +103729,45 @@ "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "default.stopAutoRefresh" }, - "1523": { + "1506": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.getClaims" + "qualifiedName": "default.dispose" }, - "1524": { + "1507": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.getClaims" + "qualifiedName": "default.dispose" }, "1525": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "jwt" + "qualifiedName": "default.getClaims" }, "1526": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "options" + "qualifiedName": "default.getClaims" }, "1527": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "jwt" }, "1528": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "options" }, "1529": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.allowExpired" + "qualifiedName": "__type" }, "1530": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.jwks" + "qualifiedName": "__type.keys" }, "1531": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.allowExpired" }, "1532": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.keys" + "qualifiedName": "__type.jwks" }, "1533": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -102158,7 +103775,7 @@ }, "1534": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.keys" }, "1535": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", @@ -102166,903 +103783,903 @@ }, "1536": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.claims" + "qualifiedName": "__type.data" }, "1537": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.header" + "qualifiedName": "__type" }, "1538": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.signature" + "qualifiedName": "__type.claims" }, "1539": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type.header" }, "1540": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signature" }, "1541": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "1542": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "1543": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1544": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "1545": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "1546": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.signInWithPasskey" + "qualifiedName": "__type.data" }, "1547": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.signInWithPasskey" + "qualifiedName": "__type.error" }, "1548": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "credentials" + "qualifiedName": "default.signInWithPasskey" }, "1549": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.registerPasskey" + "qualifiedName": "default.signInWithPasskey" }, "1550": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", - "qualifiedName": "default.registerPasskey" + "qualifiedName": "credentials" }, "1551": { + "sourceFileName": "../auth-js/src/GoTrueClient.ts", + "qualifiedName": "default.registerPasskey" + }, + "1552": { + "sourceFileName": "../auth-js/src/GoTrueClient.ts", + "qualifiedName": "default.registerPasskey" + }, + "1553": { "sourceFileName": "../auth-js/src/GoTrueClient.ts", "qualifiedName": "credentials" }, - "1559": { + "1561": { "sourceFileName": "../auth-js/src/AuthAdminApi.ts", "qualifiedName": "AuthAdminApi" }, - "1560": { + "1562": { "sourceFileName": "../auth-js/src/AuthClient.ts", "qualifiedName": "AuthClient" }, - "1561": { + "1563": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "navigatorLock" }, - "1562": { + "1564": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "navigatorLock" }, - "1563": { + "1565": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "R" }, - "1564": { + "1566": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "name" }, - "1565": { + "1567": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "acquireTimeout" }, - "1566": { + "1568": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "fn" }, - "1567": { + "1569": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1568": { + "1570": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1569": { + "1571": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "NavigatorLockAcquireTimeoutError" }, - "1570": { + "1572": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "LockAcquireTimeoutError.__constructor" }, - "1571": { + "1573": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "NavigatorLockAcquireTimeoutError" }, - "1572": { + "1574": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "message" }, - "1573": { + "1575": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout" }, - "1574": { + "1576": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "internals" }, - "1575": { + "1577": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1576": { + "1578": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type.debug" }, - "1577": { + "1579": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "processLock" }, - "1578": { + "1580": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "processLock" }, - "1579": { + "1581": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "R" }, - "1580": { + "1582": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "name" }, - "1581": { + "1583": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "acquireTimeout" }, - "1582": { + "1584": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "fn" }, - "1583": { + "1585": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1584": { + "1586": { "sourceFileName": "../auth-js/src/lib/locks.ts", "qualifiedName": "__type" }, - "1585": { + "1587": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Provider" }, - "1586": { + "1588": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthChangeEventMFA" }, - "1587": { + "1589": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthChangeEvent" }, - "1588": { + "1590": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "LockFunc" }, - "1589": { + "1591": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1590": { + "1592": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1591": { + "1593": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "name" }, - "1592": { + "1594": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "acquireTimeout" }, - "1593": { + "1595": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "fn" }, - "1594": { + "1596": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1595": { + "1597": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1596": { + "1598": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "R" }, - "1597": { + "1599": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueClientOptions" }, - "1598": { + "1600": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1599": { + "1601": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1600": { + "1602": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.headers" }, - "1601": { + "1603": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1602": { + "1604": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.__index" }, - "1604": { + "1606": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.storageKey" }, - "1605": { + "1607": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.detectSessionInUrl" }, - "1606": { + "1608": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1607": { + "1609": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1608": { + "1610": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "url" }, - "1609": { + "1611": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "params" }, - "1610": { + "1612": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1611": { + "1613": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.__index" }, - "1613": { + "1615": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.autoRefreshToken" }, - "1614": { + "1616": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.persistSession" }, - "1615": { + "1617": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.storage" }, - "1616": { + "1618": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.userStorage" }, - "1617": { + "1619": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.fetch" }, - "1618": { + "1620": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.flowType" }, - "1619": { + "1621": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.debug" }, - "1620": { + "1622": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1621": { + "1623": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1622": { + "1624": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "message" }, - "1623": { + "1625": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "args" }, - "1624": { + "1626": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.lock" }, - "1625": { + "1627": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.hasCustomAuthorizationHeader" }, - "1626": { + "1628": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.throwOnError" }, - "1627": { + "1629": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.lockAcquireTimeout" }, - "1628": { + "1630": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.skipAutoInitialize" }, - "1629": { + "1631": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.experimental" }, - "1630": { + "1632": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "ExperimentalFeatureFlags" }, - "1631": { + "1633": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1632": { + "1634": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.passkey" }, - "1633": { + "1635": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "WeakPasswordReasons" }, - "1634": { + "1636": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "WeakPassword" }, - "1635": { + "1637": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1636": { + "1638": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.reasons" }, - "1637": { + "1639": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.message" }, - "1638": { + "1640": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Prettify" }, - "1639": { + "1641": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1640": { + "1642": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "StrictOmit" }, - "1641": { + "1643": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1642": { + "1644": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "K" }, - "1643": { + "1645": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "RequestResult" }, - "1644": { + "1646": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1645": { + "1647": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1646": { + "1648": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1647": { + "1649": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1648": { + "1650": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1649": { + "1651": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1650": { + "1652": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1651": { + "1653": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "ErrorType" }, - "1652": { + "1654": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "RequestResultSafeDestructure" }, - "1653": { + "1655": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1654": { + "1656": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1655": { + "1657": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1656": { + "1658": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1657": { + "1659": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1658": { + "1660": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1659": { + "1661": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "T" }, - "1660": { + "1662": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthResponse" }, - "1661": { + "1663": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1662": { + "1664": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1663": { + "1665": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1664": { + "1666": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthResponsePassword" }, - "1665": { + "1667": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1666": { + "1668": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1667": { + "1669": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1668": { + "1670": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.weak_password" }, - "1669": { + "1671": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthOtpResponse" }, - "1670": { + "1672": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1671": { + "1673": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1672": { + "1674": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1673": { + "1675": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.messageId" }, - "1674": { + "1676": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthTokenResponse" }, - "1675": { + "1677": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1676": { + "1678": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1677": { + "1679": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1678": { + "1680": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthTokenResponsePassword" }, - "1679": { + "1681": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1680": { + "1682": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1681": { + "1683": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session" }, - "1682": { + "1684": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.weakPassword" }, - "1683": { + "1685": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthResponse" }, - "1684": { + "1686": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1685": { + "1687": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1686": { + "1688": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1687": { + "1689": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider" }, - "1688": { + "1690": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1689": { + "1691": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1690": { + "1692": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1691": { + "1693": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "1692": { + "1694": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1693": { + "1695": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider" }, - "1694": { + "1696": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1695": { + "1697": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "1696": { + "1698": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SSOResponse" }, - "1697": { + "1699": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1698": { + "1700": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.url" }, - "1699": { + "1701": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserResponse" }, - "1700": { + "1702": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1701": { + "1703": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.user" }, - "1702": { + "1704": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Session" }, - "1703": { + "1705": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMRMethod" }, - "1704": { + "1706": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1705": { + "1707": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMREntry" }, - "1706": { + "1708": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMREntry.method" }, - "1707": { + "1709": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AMREntry.timestamp" }, - "1708": { + "1710": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity" }, - "1709": { + "1711": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.id" }, - "1710": { + "1712": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.user_id" }, - "1711": { + "1713": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.identity_data" }, - "1712": { + "1714": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1713": { + "1715": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.__index" }, - "1715": { + "1717": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.identity_id" }, - "1716": { + "1718": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.provider" }, - "1717": { + "1719": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.created_at" }, - "1718": { + "1720": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.last_sign_in_at" }, - "1719": { + "1721": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserIdentity.updated_at" }, - "1720": { + "1722": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "FactorType" }, - "1721": { + "1723": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Factor" }, - "1722": { + "1724": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "1723": { + "1725": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.id" }, - "1724": { + "1726": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.friendly_name" }, - "1725": { + "1727": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.factor_type" }, - "1726": { + "1728": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.status" }, - "1727": { + "1729": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.created_at" }, - "1728": { + "1730": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.updated_at" }, - "1729": { + "1731": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.last_challenged_at" }, - "1730": { + "1732": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Type" }, - "1731": { + "1733": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "Status" }, - "1732": { + "1734": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata" }, - "1733": { + "1735": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata.provider" }, - "1734": { + "1736": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata.providers" }, - "1735": { + "1737": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserAppMetadata.__index" }, - "1737": { + "1739": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UserMetadata" }, - "1738": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserMetadata.__index" - }, "1740": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "User" - }, - "1741": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes" + "qualifiedName": "UserMetadata.__index" }, "1742": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.current_password" + "qualifiedName": "User" }, "1743": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.email" + "qualifiedName": "UserAttributes" }, "1744": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.phone" + "qualifiedName": "UserAttributes.current_password" }, "1745": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.password" + "qualifiedName": "UserAttributes.email" }, "1746": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.nonce" + "qualifiedName": "UserAttributes.phone" }, "1747": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UserAttributes.data" + "qualifiedName": "UserAttributes.password" }, "1748": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes" + "qualifiedName": "UserAttributes.nonce" }, "1749": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.user_metadata" + "qualifiedName": "UserAttributes.data" }, "1750": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.app_metadata" + "qualifiedName": "AdminUserAttributes" }, "1751": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.email_confirm" + "qualifiedName": "AdminUserAttributes.user_metadata" }, "1752": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.phone_confirm" + "qualifiedName": "AdminUserAttributes.app_metadata" }, "1753": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.ban_duration" + "qualifiedName": "AdminUserAttributes.email_confirm" }, "1754": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.role" + "qualifiedName": "AdminUserAttributes.phone_confirm" }, "1755": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.password_hash" + "qualifiedName": "AdminUserAttributes.ban_duration" }, "1756": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AdminUserAttributes.id" + "qualifiedName": "AdminUserAttributes.role" }, "1757": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "nonce" + "qualifiedName": "AdminUserAttributes.password_hash" }, "1758": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "email" + "qualifiedName": "AdminUserAttributes.id" }, "1759": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "password" + "qualifiedName": "nonce" }, "1760": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "phone" + "qualifiedName": "email" }, "1761": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "current_password" + "qualifiedName": "password" }, "1762": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription" + "qualifiedName": "phone" }, "1763": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription.id" + "qualifiedName": "current_password" }, "1764": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription.callback" + "qualifiedName": "Subscription" }, "1765": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "Subscription.id" }, "1766": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "Subscription.callback" }, "1767": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "event" + "qualifiedName": "__type" }, "1768": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "session" + "qualifiedName": "__type" }, "1769": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Subscription.unsubscribe" + "qualifiedName": "event" }, "1770": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "session" }, "1771": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "Subscription.unsubscribe" }, "1772": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInAnonymouslyCredentials" + "qualifiedName": "__type" }, "1773": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103070,7 +104687,7 @@ }, "1774": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignInAnonymouslyCredentials" }, "1775": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103078,23 +104695,23 @@ }, "1776": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.options" }, "1777": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1778": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignUpWithPasswordCredentials" + "qualifiedName": "__type.data" }, "1779": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1780": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignUpWithPasswordCredentials" }, "1781": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103102,31 +104719,31 @@ }, "1782": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.emailRedirectTo" + "qualifiedName": "__type.options" }, "1783": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1784": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.emailRedirectTo" }, "1785": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.channel" + "qualifiedName": "__type.data" }, "1786": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithPasswordCredentials" + "qualifiedName": "__type.captchaToken" }, "1787": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.channel" }, "1788": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignInWithPasswordCredentials" }, "1789": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103134,87 +104751,87 @@ }, "1790": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1791": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithPasswordlessCredentials" + "qualifiedName": "__type" }, "1792": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1793": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "SignInWithPasswordlessCredentials" }, "1794": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1795": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.email" }, "1796": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.emailRedirectTo" + "qualifiedName": "__type.options" }, "1797": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.shouldCreateUser" + "qualifiedName": "__type" }, "1798": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.emailRedirectTo" }, "1799": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.shouldCreateUser" }, "1800": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.data" }, "1801": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.phone" + "qualifiedName": "__type.captchaToken" }, "1802": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1803": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.phone" }, "1804": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.shouldCreateUser" + "qualifiedName": "__type.options" }, "1805": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type" }, "1806": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.shouldCreateUser" }, "1807": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.channel" + "qualifiedName": "__type.data" }, "1808": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthFlowType" + "qualifiedName": "__type.captchaToken" }, "1809": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.channel" }, "1810": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithOAuthCredentials" + "qualifiedName": "AuthFlowType" }, "1811": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103222,51 +104839,51 @@ }, "1812": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.provider" + "qualifiedName": "SignInWithOAuthCredentials" }, "1813": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1814": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.provider" }, "1815": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "__type.options" }, "1816": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type" }, "1817": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.queryParams" + "qualifiedName": "__type.redirectTo" }, "1818": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.scopes" }, "1819": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "__type.queryParams" }, - "1821": { + "1820": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "__type" }, - "1822": { + "1821": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithIdTokenCredentials" + "qualifiedName": "__type.__index" }, "1823": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.skipBrowserRedirect" }, "1824": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.provider" + "qualifiedName": "SignInWithIdTokenCredentials" }, "1825": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103274,39 +104891,39 @@ }, "1826": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token" + "qualifiedName": "__type.provider" }, "1827": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.access_token" + "qualifiedName": "__type" }, "1828": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.nonce" + "qualifiedName": "__type.token" }, "1829": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.access_token" }, "1830": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.nonce" }, "1831": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1832": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SolanaWallet" + "qualifiedName": "__type" }, "1833": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1834": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signIn" + "qualifiedName": "SolanaWallet" }, "1835": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103314,23 +104931,23 @@ }, "1836": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signIn" }, "1837": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "inputs" + "qualifiedName": "__type" }, "1838": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.publicKey" + "qualifiedName": "__type" }, "1839": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "inputs" }, "1840": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.toBase58" + "qualifiedName": "__type.publicKey" }, "1841": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103338,11 +104955,11 @@ }, "1842": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.toBase58" }, "1843": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signMessage" + "qualifiedName": "__type" }, "1844": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103350,251 +104967,251 @@ }, "1845": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signMessage" }, "1846": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "message" + "qualifiedName": "__type" }, "1847": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "encoding" + "qualifiedName": "__type" }, "1848": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SolanaWeb3Credentials" + "qualifiedName": "message" }, "1849": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "encoding" }, "1850": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "SolanaWeb3Credentials" }, "1851": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.wallet" + "qualifiedName": "__type" }, "1852": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.statement" + "qualifiedName": "__type.chain" }, "1853": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.wallet" }, "1854": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.statement" }, "1855": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.url" + "qualifiedName": "__type.options" }, "1856": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1857": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signInWithSolana" + "qualifiedName": "__type.url" }, "1858": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1859": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "__type.signInWithSolana" }, "1860": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.message" + "qualifiedName": "__type" }, "1861": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signature" + "qualifiedName": "__type.chain" }, "1862": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.message" }, "1863": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signature" }, "1864": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1865": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "EthereumWallet" + "qualifiedName": "__type" }, "1866": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "EthereumWeb3Credentials" + "qualifiedName": "__type.captchaToken" }, "1867": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "EthereumWallet" }, "1868": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "EthereumWeb3Credentials" }, "1869": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.wallet" + "qualifiedName": "__type" }, "1870": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.statement" + "qualifiedName": "__type.chain" }, "1871": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.wallet" }, "1872": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.statement" }, "1873": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.url" + "qualifiedName": "__type.options" }, "1874": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1875": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signInWithEthereum" + "qualifiedName": "__type.url" }, "1876": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1877": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.chain" + "qualifiedName": "__type.signInWithEthereum" }, "1878": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.message" + "qualifiedName": "__type" }, "1879": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signature" + "qualifiedName": "__type.chain" }, "1880": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.message" }, "1881": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signature" }, "1882": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1883": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Web3Credentials" + "qualifiedName": "__type" }, "1884": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyOtpParams" + "qualifiedName": "__type.captchaToken" }, "1885": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams" + "qualifiedName": "Web3Credentials" }, "1886": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.phone" + "qualifiedName": "VerifyOtpParams" }, "1887": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.token" + "qualifiedName": "VerifyMobileOtpParams" }, "1888": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.type" + "qualifiedName": "VerifyMobileOtpParams.phone" }, "1889": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyMobileOtpParams.options" + "qualifiedName": "VerifyMobileOtpParams.token" }, "1890": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "VerifyMobileOtpParams.type" }, "1891": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "VerifyMobileOtpParams.options" }, "1892": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1893": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams" + "qualifiedName": "__type.redirectTo" }, "1894": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.email" + "qualifiedName": "__type.captchaToken" }, "1895": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.token" + "qualifiedName": "VerifyEmailOtpParams" }, "1896": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.type" + "qualifiedName": "VerifyEmailOtpParams.email" }, "1897": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyEmailOtpParams.options" + "qualifiedName": "VerifyEmailOtpParams.token" }, "1898": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "VerifyEmailOtpParams.type" }, "1899": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "VerifyEmailOtpParams.options" }, "1900": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1901": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyTokenHashParams" + "qualifiedName": "__type.redirectTo" }, "1902": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyTokenHashParams.token_hash" + "qualifiedName": "__type.captchaToken" }, "1903": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyTokenHashParams.type" + "qualifiedName": "VerifyTokenHashParams" }, "1904": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MobileOtpType" + "qualifiedName": "VerifyTokenHashParams.token_hash" }, "1905": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "VerifyTokenHashParams.type" }, "1906": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "EmailOtpType" + "qualifiedName": "MobileOtpType" }, "1907": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103602,7 +105219,7 @@ }, "1908": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "ResendParams" + "qualifiedName": "EmailOtpType" }, "1909": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103610,307 +105227,307 @@ }, "1910": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "ResendParams" }, "1911": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1912": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1913": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.email" }, "1914": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.emailRedirectTo" + "qualifiedName": "__type.options" }, "1915": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1916": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.emailRedirectTo" }, "1917": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "__type.captchaToken" }, "1918": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.phone" + "qualifiedName": "__type" }, "1919": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1920": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.phone" }, "1921": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "1922": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithSSO" + "qualifiedName": "__type" }, "1923": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1924": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.providerId" + "qualifiedName": "SignInWithSSO" }, "1925": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1926": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.providerId" }, "1927": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "__type.options" }, "1928": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1929": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "__type.redirectTo" }, "1930": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "1931": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.domain" + "qualifiedName": "__type.skipBrowserRedirect" }, "1932": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "1933": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.domain" }, "1934": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirectTo" + "qualifiedName": "__type.options" }, "1935": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type" }, "1936": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "__type.redirectTo" }, "1937": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateSignupLinkParams" + "qualifiedName": "__type.captchaToken" }, "1938": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.skipBrowserRedirect" }, "1939": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateSignupLinkParams" }, "1940": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1941": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.password" + "qualifiedName": "__type.type" }, "1942": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.email" }, "1943": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateInviteOrMagiclinkParams" + "qualifiedName": "__type.password" }, "1944": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.options" }, "1945": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateInviteOrMagiclinkParams" }, "1946": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1947": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1948": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateRecoveryLinkParams" + "qualifiedName": "__type.email" }, "1949": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.options" }, "1950": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateRecoveryLinkParams" }, "1951": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1952": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.type" }, "1953": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateEmailChangeLinkParams" + "qualifiedName": "__type.email" }, "1954": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.options" }, "1955": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "GenerateEmailChangeLinkParams" }, "1956": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "1957": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.newEmail" + "qualifiedName": "__type.type" }, "1958": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type.email" }, "1959": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkOptions" + "qualifiedName": "__type.newEmail" }, "1960": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkOptions.data" + "qualifiedName": "__type.options" }, "1961": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkOptions.redirectTo" + "qualifiedName": "GenerateLinkOptions" }, "1962": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkParams" + "qualifiedName": "GenerateLinkOptions.data" }, "1963": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkResponse" + "qualifiedName": "GenerateLinkOptions.redirectTo" }, "1964": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GenerateLinkParams" }, "1965": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.properties" + "qualifiedName": "GenerateLinkResponse" }, "1966": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type" }, "1967": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkProperties" + "qualifiedName": "__type.properties" }, "1968": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.user" }, "1969": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.action_link" + "qualifiedName": "GenerateLinkProperties" }, "1970": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_otp" + "qualifiedName": "__type" }, "1971": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.hashed_token" + "qualifiedName": "__type.action_link" }, "1972": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_to" + "qualifiedName": "__type.email_otp" }, "1973": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.verification_type" + "qualifiedName": "__type.hashed_token" }, "1974": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GenerateLinkType" + "qualifiedName": "__type.redirect_to" }, "1975": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAEnrollParams" + "qualifiedName": "__type.verification_type" }, "1976": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAUnenrollParams" + "qualifiedName": "GenerateLinkType" }, "1977": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "MFAEnrollParams" }, "1978": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.factorId" + "qualifiedName": "MFAUnenrollParams" }, "1979": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyTOTPParams" + "qualifiedName": "__type" }, "1980": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyPhoneParams" + "qualifiedName": "__type.factorId" }, "1981": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyWebauthnParamFields" + "qualifiedName": "MFAVerifyTOTPParams" }, "1982": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "MFAVerifyPhoneParams" }, "1983": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.webauthn" + "qualifiedName": "MFAVerifyWebauthnParamFields" }, "1984": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "1985": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyWebauthnParams" + "qualifiedName": "__type.webauthn" }, "1986": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -103918,131 +105535,131 @@ }, "1987": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAVerifyParams" + "qualifiedName": "MFAVerifyWebauthnParams" }, "1988": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFATOTPChannel" + "qualifiedName": "T" }, "1989": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeTOTPParams" + "qualifiedName": "MFAVerifyParams" }, "1990": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengePhoneParams" + "qualifiedName": "MFATOTPChannel" }, "1991": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeWebauthnParams" + "qualifiedName": "MFAChallengeTOTPParams" }, "1992": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeParams" + "qualifiedName": "MFAChallengePhoneParams" }, "1993": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "MFAChallengeAndVerifyParams" + "qualifiedName": "MFAChallengeWebauthnParams" }, "1994": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAVerifyResponseData" + "qualifiedName": "MFAChallengeParams" }, "1995": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "MFAChallengeAndVerifyParams" }, "1996": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.access_token" + "qualifiedName": "AuthMFAVerifyResponseData" }, "1997": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_type" + "qualifiedName": "__type" }, "1998": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.expires_in" + "qualifiedName": "__type.access_token" }, "1999": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.refresh_token" + "qualifiedName": "__type.token_type" }, "2000": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type.expires_in" }, "2001": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAVerifyResponse" + "qualifiedName": "__type.refresh_token" }, "2002": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAEnrollResponse" + "qualifiedName": "__type.user" }, "2003": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAUnenrollResponse" + "qualifiedName": "AuthMFAVerifyResponse" }, "2004": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthMFAEnrollResponse" }, "2005": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "AuthMFAUnenrollResponse" }, "2006": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeTOTPResponse" + "qualifiedName": "__type" }, "2007": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengePhoneResponse" + "qualifiedName": "__type.id" }, "2008": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeWebauthnResponse" + "qualifiedName": "AuthMFAChallengeTOTPResponse" }, "2009": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON" + "qualifiedName": "AuthMFAChallengePhoneResponse" }, "2010": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeWebauthnServerResponse" + "qualifiedName": "AuthMFAChallengeWebauthnResponse" }, "2011": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAChallengeResponse" + "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON" }, "2012": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAListFactorsResponse" + "qualifiedName": "AuthMFAChallengeWebauthnServerResponse" }, "2013": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthMFAChallengeResponse" }, "2014": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.all" + "qualifiedName": "AuthMFAListFactorsResponse" }, "2015": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "2016": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthenticatorAssuranceLevels" + "qualifiedName": "__type.all" }, "2017": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "T" }, "2018": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse" + "qualifiedName": "AuthenticatorAssuranceLevels" }, "2019": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104050,31 +105667,31 @@ }, "2020": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.currentLevel" + "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse" }, "2021": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.nextLevel" + "qualifiedName": "__type" }, "2022": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.currentAuthenticationMethods" + "qualifiedName": "__type.currentLevel" }, "2023": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi" + "qualifiedName": "__type.nextLevel" }, "2024": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.enroll" + "qualifiedName": "__type.currentAuthenticationMethods" }, "2025": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.enroll" + "qualifiedName": "GoTrueMFAApi" }, "2026": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.enroll" }, "2027": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104102,123 +105719,123 @@ }, "2033": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "GoTrueMFAApi.enroll" }, "2034": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "params" }, "2035": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2036": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2037": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "params" }, "2038": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2039": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "data" }, "2040": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "error" }, "2041": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2042": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "data" }, "2043": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "error" }, "2044": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2045": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "params" }, "2046": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2047": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "data" }, "2048": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "error" }, "2049": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2050": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "data" }, "2051": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "error" }, "2052": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2053": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "params" }, "2054": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2055": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "data" }, "2056": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "data" + "qualifiedName": "error" }, "2057": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "error" + "qualifiedName": "__type" }, "2058": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challenge" + "qualifiedName": "data" }, "2059": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "error" }, "2060": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.verify" + "qualifiedName": "GoTrueMFAApi.challenge" }, "2061": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.verify" + "qualifiedName": "params" }, "2062": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.verify" }, "2063": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -104246,1047 +105863,1047 @@ }, "2069": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.unenroll" + "qualifiedName": "GoTrueMFAApi.verify" }, "2070": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.unenroll" + "qualifiedName": "params" }, "2071": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.unenroll" }, "2072": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challengeAndVerify" + "qualifiedName": "GoTrueMFAApi.unenroll" }, "2073": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.challengeAndVerify" + "qualifiedName": "params" }, "2074": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueMFAApi.challengeAndVerify" }, "2075": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.listFactors" + "qualifiedName": "GoTrueMFAApi.challengeAndVerify" }, "2076": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.listFactors" + "qualifiedName": "params" }, "2077": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" + "qualifiedName": "GoTrueMFAApi.listFactors" }, "2078": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" + "qualifiedName": "GoTrueMFAApi.listFactors" }, "2079": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "jwt" + "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" }, "2080": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueMFAApi.webauthn" + "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel" }, "2081": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminDeleteFactorResponse" + "qualifiedName": "jwt" }, "2082": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueMFAApi.webauthn" }, "2083": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "AuthMFAAdminDeleteFactorResponse" }, "2084": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminDeleteFactorParams" + "qualifiedName": "__type" }, "2085": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.id" }, "2086": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "AuthMFAAdminDeleteFactorParams" }, "2087": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "__type" }, "2088": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminListFactorsResponse" + "qualifiedName": "__type.id" }, "2089": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.userId" }, "2090": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.factors" + "qualifiedName": "AuthMFAAdminListFactorsResponse" }, "2091": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthMFAAdminListFactorsParams" + "qualifiedName": "__type" }, "2092": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.factors" }, "2093": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "AuthMFAAdminListFactorsParams" }, "2094": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi" + "qualifiedName": "__type" }, "2095": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.listFactors" + "qualifiedName": "__type.userId" }, "2096": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.listFactors" + "qualifiedName": "GoTrueAdminMFAApi" }, "2097": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminMFAApi.listFactors" }, "2098": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" + "qualifiedName": "GoTrueAdminMFAApi.listFactors" }, "2099": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" + "qualifiedName": "params" }, "2100": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" }, "2101": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SupportedStorage" + "qualifiedName": "GoTrueAdminMFAApi.deleteFactor" }, "2102": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "params" }, "2103": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.isServer" + "qualifiedName": "SupportedStorage" }, "2104": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "InitializeResult" + "qualifiedName": "__type" }, "2105": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.isServer" }, "2106": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "InitializeResult" }, "2107": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CallRefreshTokenResult" + "qualifiedName": "__type" }, "2108": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "Pagination" + "qualifiedName": "__type.error" }, "2109": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "CallRefreshTokenResult" }, "2110": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.nextPage" + "qualifiedName": "Pagination" }, "2111": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.lastPage" + "qualifiedName": "__type" }, "2112": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.total" + "qualifiedName": "__type.nextPage" }, "2113": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "__type.lastPage" + }, + "2114": { + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "__type.total" }, "2115": { + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "__type.__index" + }, + "2117": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "PageParams" }, - "2116": { + "2118": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2117": { + "2119": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.page" }, - "2118": { + "2120": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.perPage" }, - "2119": { + "2121": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SignOut" }, - "2120": { + "2122": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2121": { + "2123": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scope" }, - "2122": { + "2124": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "MFAEnrollTOTPParams" }, - "2123": { + "2125": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "MFAEnrollPhoneParams" }, - "2124": { + "2126": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "MFAEnrollWebauthnParams" }, - "2125": { + "2127": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthMFAEnrollTOTPResponse" }, - "2126": { + "2128": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthMFAEnrollPhoneResponse" }, - "2127": { + "2129": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "AuthMFAEnrollWebauthnResponse" }, - "2128": { + "2130": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtHeader" }, - "2129": { + "2131": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2130": { + "2132": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.alg" }, - "2131": { + "2133": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2132": { + "2134": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.kid" }, - "2133": { + "2135": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.typ" }, - "2134": { + "2136": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "RequiredClaims" }, - "2135": { + "2137": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2136": { + "2138": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iss" }, - "2137": { + "2139": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.sub" }, - "2138": { + "2140": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aud" }, - "2139": { + "2141": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.exp" }, - "2140": { + "2142": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iat" }, - "2141": { + "2143": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.role" }, - "2142": { + "2144": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aal" }, - "2143": { + "2145": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session_id" }, - "2144": { + "2146": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload" }, - "2145": { + "2147": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.email" }, - "2146": { + "2148": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.phone" }, - "2147": { + "2149": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.is_anonymous" }, - "2148": { + "2150": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.jti" }, - "2149": { + "2151": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.nbf" }, - "2150": { + "2152": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.app_metadata" }, - "2151": { + "2153": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.user_metadata" }, - "2152": { + "2154": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.amr" }, - "2153": { + "2155": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.ref" }, - "2154": { + "2156": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iss" }, - "2155": { + "2157": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.sub" }, - "2156": { + "2158": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aud" }, - "2157": { + "2159": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.exp" }, - "2158": { + "2160": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.iat" }, - "2159": { + "2161": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.role" }, - "2160": { + "2162": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aal" }, - "2161": { + "2163": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.session_id" }, - "2162": { + "2164": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JwtPayload.__index" }, - "2164": { + "2166": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK" }, - "2165": { + "2167": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.kty" }, - "2166": { + "2168": { "sourceFileName": "", "qualifiedName": "__type" }, - "2167": { + "2169": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.key_ops" }, - "2168": { + "2170": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.alg" }, - "2169": { + "2171": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.kid" }, - "2170": { + "2172": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "JWK.__index" }, - "2172": { + "2174": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SIGN_OUT_SCOPES" }, - "2173": { + "2175": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "SignOutScope" }, - "2174": { + "2176": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientGrantType" }, - "2175": { + "2177": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2176": { + "2178": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientResponseType" }, - "2177": { + "2179": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientType" }, - "2178": { + "2180": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientRegistrationType" }, - "2179": { + "2181": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientTokenEndpointAuthMethod" }, - "2180": { + "2182": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClient" }, - "2181": { + "2183": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2182": { + "2184": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_id" }, - "2183": { + "2185": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_name" }, - "2184": { + "2186": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_secret" }, - "2185": { + "2187": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_type" }, - "2186": { + "2188": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_endpoint_auth_method" }, - "2187": { + "2189": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.registration_type" }, - "2188": { + "2190": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_uri" }, - "2189": { + "2191": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.logo_uri" }, - "2190": { + "2192": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.redirect_uris" }, - "2191": { + "2193": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.grant_types" }, - "2192": { + "2194": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.response_types" }, - "2193": { + "2195": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scope" }, - "2194": { + "2196": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.created_at" }, - "2195": { + "2197": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.updated_at" }, - "2196": { + "2198": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "CreateOAuthClientParams" }, - "2197": { + "2199": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2198": { + "2200": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_name" }, - "2199": { + "2201": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_uri" }, - "2200": { + "2202": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.redirect_uris" }, - "2201": { + "2203": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.grant_types" }, - "2202": { + "2204": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.response_types" }, - "2203": { + "2205": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scope" }, - "2204": { + "2206": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_endpoint_auth_method" }, - "2205": { + "2207": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "UpdateOAuthClientParams" }, - "2206": { + "2208": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2207": { + "2209": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_name" }, - "2208": { + "2210": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_uri" }, - "2209": { + "2211": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.logo_uri" }, - "2210": { + "2212": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.redirect_uris" }, - "2211": { + "2213": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.grant_types" }, - "2212": { + "2214": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_endpoint_auth_method" }, - "2213": { + "2215": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientResponse" }, - "2214": { + "2216": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OAuthClientListResponse" }, - "2215": { + "2217": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2216": { + "2218": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "2217": { + "2219": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2218": { + "2220": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.clients" }, - "2219": { + "2221": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.aud" }, - "2220": { + "2222": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "2221": { + "2223": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2222": { + "2224": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "2223": { + "2225": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2224": { + "2226": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.clients" }, - "2225": { + "2227": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "2226": { + "2228": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi" }, - "2227": { + "2229": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.listClients" }, - "2228": { + "2230": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.listClients" }, - "2229": { + "2231": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "params" }, - "2230": { + "2232": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.createClient" }, - "2231": { + "2233": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.createClient" }, - "2232": { + "2234": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "params" }, - "2233": { + "2235": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.getClient" }, - "2234": { + "2236": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.getClient" }, - "2235": { + "2237": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "clientId" }, - "2236": { + "2238": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.updateClient" }, - "2237": { + "2239": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.updateClient" }, - "2238": { + "2240": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "clientId" }, - "2239": { + "2241": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "params" }, - "2240": { + "2242": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.deleteClient" }, - "2241": { + "2243": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.deleteClient" }, - "2242": { + "2244": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "clientId" }, - "2243": { + "2245": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2244": { + "2246": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.data" }, - "2245": { + "2247": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.error" }, - "2246": { + "2248": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret" }, - "2247": { + "2249": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret" }, - "2248": { + "2250": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "clientId" }, - "2249": { + "2251": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "CustomProviderType" }, - "2250": { + "2252": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "OIDCDiscoveryDocument" }, - "2251": { + "2253": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2252": { + "2254": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.issuer" }, - "2253": { + "2255": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.authorization_endpoint" }, - "2254": { + "2256": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_endpoint" }, - "2255": { + "2257": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.jwks_uri" }, - "2256": { + "2258": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.userinfo_endpoint" }, - "2257": { + "2259": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.revocation_endpoint" }, - "2258": { + "2260": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.supported_scopes" }, - "2259": { + "2261": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.supported_response_types" }, - "2260": { + "2262": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.supported_subject_types" }, - "2261": { + "2263": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.supported_id_token_signing_algs" }, - "2262": { + "2264": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "CustomOAuthProvider" }, - "2263": { + "2265": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2264": { + "2266": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.id" }, - "2265": { + "2267": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider_type" }, - "2266": { + "2268": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.identifier" }, - "2267": { + "2269": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.name" }, - "2268": { + "2270": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_id" }, - "2269": { + "2271": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.acceptable_client_ids" }, - "2270": { + "2272": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scopes" }, - "2271": { + "2273": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.pkce_enabled" }, - "2272": { + "2274": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.attribute_mapping" }, - "2273": { + "2275": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.authorization_params" }, - "2274": { + "2276": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.enabled" }, - "2275": { + "2277": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.email_optional" }, - "2276": { + "2278": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.issuer" }, - "2277": { + "2279": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.discovery_url" }, - "2278": { + "2280": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.skip_nonce_check" }, - "2279": { + "2281": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.authorization_url" }, - "2280": { + "2282": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.token_url" }, - "2281": { + "2283": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.userinfo_url" }, - "2282": { + "2284": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.jwks_uri" }, - "2283": { + "2285": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.discovery_document" }, - "2284": { + "2286": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.created_at" }, - "2285": { + "2287": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.updated_at" }, - "2286": { + "2288": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "CreateCustomProviderParams" }, - "2287": { + "2289": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type" }, - "2288": { + "2290": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.provider_type" }, - "2289": { + "2291": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.identifier" }, - "2290": { + "2292": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.name" }, - "2291": { + "2293": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_id" }, - "2292": { + "2294": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.client_secret" }, - "2293": { + "2295": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.acceptable_client_ids" }, - "2294": { + "2296": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.scopes" }, - "2295": { + "2297": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.pkce_enabled" }, - "2296": { + "2298": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.attribute_mapping" }, - "2297": { + "2299": { "sourceFileName": "../auth-js/src/lib/types.ts", "qualifiedName": "__type.authorization_params" }, - "2298": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.enabled" - }, - "2299": { - "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_optional" - }, "2300": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.issuer" + "qualifiedName": "__type.enabled" }, "2301": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.discovery_url" + "qualifiedName": "__type.email_optional" }, "2302": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skip_nonce_check" + "qualifiedName": "__type.issuer" }, "2303": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_url" + "qualifiedName": "__type.discovery_url" }, "2304": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_url" + "qualifiedName": "__type.skip_nonce_check" }, "2305": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userinfo_url" + "qualifiedName": "__type.authorization_url" }, "2306": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.jwks_uri" + "qualifiedName": "__type.token_url" }, "2307": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "UpdateCustomProviderParams" + "qualifiedName": "__type.userinfo_url" }, "2308": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.jwks_uri" }, "2309": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.name" + "qualifiedName": "UpdateCustomProviderParams" }, "2310": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_id" + "qualifiedName": "__type" }, "2311": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client_secret" + "qualifiedName": "__type.name" }, "2312": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.acceptable_client_ids" + "qualifiedName": "__type.client_id" }, "2313": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type.client_secret" }, "2314": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.pkce_enabled" + "qualifiedName": "__type.acceptable_client_ids" }, "2315": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.attribute_mapping" + "qualifiedName": "__type.scopes" }, "2316": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_params" + "qualifiedName": "__type.pkce_enabled" }, "2317": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.enabled" + "qualifiedName": "__type.attribute_mapping" }, "2318": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email_optional" + "qualifiedName": "__type.authorization_params" }, "2319": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.issuer" + "qualifiedName": "__type.enabled" }, "2320": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.discovery_url" + "qualifiedName": "__type.email_optional" }, "2321": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skip_nonce_check" + "qualifiedName": "__type.issuer" }, "2322": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_url" + "qualifiedName": "__type.discovery_url" }, "2323": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.token_url" + "qualifiedName": "__type.skip_nonce_check" }, "2324": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userinfo_url" + "qualifiedName": "__type.authorization_url" }, "2325": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.jwks_uri" + "qualifiedName": "__type.token_url" }, "2326": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "ListCustomProvidersParams" + "qualifiedName": "__type.userinfo_url" }, "2327": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.jwks_uri" }, "2328": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.type" + "qualifiedName": "ListCustomProvidersParams" }, "2329": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CustomProviderResponse" + "qualifiedName": "__type" }, "2330": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "CustomProviderListResponse" + "qualifiedName": "__type.type" }, "2331": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "CustomProviderResponse" }, "2332": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "CustomProviderListResponse" }, "2333": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105294,19 +106911,19 @@ }, "2334": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.providers" + "qualifiedName": "__type.data" }, "2335": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2336": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.providers" }, "2337": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "__type.error" }, "2338": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105314,427 +106931,427 @@ }, "2339": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.providers" + "qualifiedName": "__type.data" }, "2340": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2341": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi" + "qualifiedName": "__type.providers" }, "2342": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" + "qualifiedName": "__type.error" }, "2343": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" + "qualifiedName": "GoTrueAdminCustomProvidersApi" }, "2344": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" }, "2345": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" + "qualifiedName": "GoTrueAdminCustomProvidersApi.listProviders" }, "2346": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" + "qualifiedName": "params" }, "2347": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" }, "2348": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" + "qualifiedName": "GoTrueAdminCustomProvidersApi.createProvider" }, "2349": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" + "qualifiedName": "params" }, "2350": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "identifier" + "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" }, "2351": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" + "qualifiedName": "GoTrueAdminCustomProvidersApi.getProvider" }, "2352": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" + "qualifiedName": "identifier" }, "2353": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "identifier" + "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" }, "2354": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminCustomProvidersApi.updateProvider" }, "2355": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" + "qualifiedName": "identifier" }, "2356": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" + "qualifiedName": "params" }, "2357": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "identifier" + "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" }, "2358": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "GoTrueAdminCustomProvidersApi.deleteProvider" }, "2359": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "identifier" }, "2360": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "__type" }, "2361": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthAuthorizationClient" + "qualifiedName": "__type.data" }, "2362": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.error" }, "2363": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "OAuthAuthorizationClient" }, "2364": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.name" + "qualifiedName": "__type" }, "2365": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.uri" + "qualifiedName": "__type.id" }, "2366": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.logo_uri" + "qualifiedName": "__type.name" }, "2367": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthAuthorizationDetails" + "qualifiedName": "__type.uri" }, "2368": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.logo_uri" }, "2369": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.authorization_id" + "qualifiedName": "OAuthAuthorizationDetails" }, "2370": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_uri" + "qualifiedName": "__type" }, "2371": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client" + "qualifiedName": "__type.authorization_id" }, "2372": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type.redirect_uri" }, "2373": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.client" }, "2374": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "__type.user" }, "2375": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.email" + "qualifiedName": "__type" }, "2376": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scope" + "qualifiedName": "__type.id" }, "2377": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthRedirect" + "qualifiedName": "__type.email" }, "2378": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.scope" }, "2379": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.redirect_url" + "qualifiedName": "OAuthRedirect" }, "2380": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthAuthorizationDetailsResponse" + "qualifiedName": "__type" }, "2381": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthConsentResponse" + "qualifiedName": "__type.redirect_url" }, "2382": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "OAuthGrant" + "qualifiedName": "AuthOAuthAuthorizationDetailsResponse" }, "2383": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthOAuthConsentResponse" }, "2384": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.client" + "qualifiedName": "OAuthGrant" }, "2385": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.scopes" + "qualifiedName": "__type" }, "2386": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.granted_at" + "qualifiedName": "__type.client" }, "2387": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthGrantsResponse" + "qualifiedName": "__type.scopes" }, "2388": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthRevokeGrantResponse" + "qualifiedName": "__type.granted_at" }, "2389": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthOAuthGrantsResponse" }, "2390": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi" + "qualifiedName": "AuthOAuthRevokeGrantResponse" }, "2391": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" + "qualifiedName": "__type" }, "2392": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" + "qualifiedName": "AuthOAuthServerApi" }, "2393": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "authorizationId" + "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" }, "2394": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.approveAuthorization" + "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails" }, "2395": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.approveAuthorization" + "qualifiedName": "authorizationId" }, "2396": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "authorizationId" + "qualifiedName": "AuthOAuthServerApi.approveAuthorization" }, "2397": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "options" + "qualifiedName": "AuthOAuthServerApi.approveAuthorization" }, "2398": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "authorizationId" }, "2399": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "options" }, "2400": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.denyAuthorization" + "qualifiedName": "__type" }, "2401": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.denyAuthorization" + "qualifiedName": "__type.skipBrowserRedirect" }, "2402": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "authorizationId" + "qualifiedName": "AuthOAuthServerApi.denyAuthorization" }, "2403": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "options" + "qualifiedName": "AuthOAuthServerApi.denyAuthorization" }, "2404": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "authorizationId" }, "2405": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.skipBrowserRedirect" + "qualifiedName": "options" }, "2406": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.listGrants" + "qualifiedName": "__type" }, "2407": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.listGrants" + "qualifiedName": "__type.skipBrowserRedirect" }, "2408": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.revokeGrant" + "qualifiedName": "AuthOAuthServerApi.listGrants" }, "2409": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthOAuthServerApi.revokeGrant" + "qualifiedName": "AuthOAuthServerApi.listGrants" }, "2410": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "options" + "qualifiedName": "AuthOAuthServerApi.revokeGrant" }, "2411": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthOAuthServerApi.revokeGrant" }, "2412": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.clientId" + "qualifiedName": "options" }, "2413": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyRegistrationOptionsResponse" + "qualifiedName": "__type" }, "2414": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.clientId" }, "2415": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyRegistrationOptionsResponse" }, "2416": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "2417": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.expires_at" + "qualifiedName": "__type.challenge_id" }, "2418": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyRegistrationVerifyParams" + "qualifiedName": "__type.options" }, "2419": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.expires_at" }, "2420": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyRegistrationVerifyParams" }, "2421": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2422": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyMetadata" + "qualifiedName": "__type.challenge_id" }, "2423": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2424": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "PasskeyMetadata" }, "2425": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.friendly_name" + "qualifiedName": "__type" }, "2426": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.created_at" + "qualifiedName": "__type.id" }, "2427": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyAuthenticationOptionsResponse" + "qualifiedName": "__type.friendly_name" }, "2428": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.created_at" }, "2429": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyAuthenticationOptionsResponse" }, "2430": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "__type" }, "2431": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.expires_at" + "qualifiedName": "__type.challenge_id" }, "2432": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyAuthenticationVerifyParams" + "qualifiedName": "__type.options" }, "2433": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.expires_at" }, "2434": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challenge_id" + "qualifiedName": "PasskeyAuthenticationVerifyParams" }, "2435": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2436": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyListItem" + "qualifiedName": "__type.challenge_id" }, "2437": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2438": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.id" + "qualifiedName": "PasskeyListItem" }, "2439": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.friendly_name" + "qualifiedName": "__type" }, "2440": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.created_at" + "qualifiedName": "__type.id" }, "2441": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.last_used_at" + "qualifiedName": "__type.friendly_name" }, "2442": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "SignInWithPasskeyCredentials" + "qualifiedName": "__type.created_at" }, "2443": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.last_used_at" }, "2444": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "SignInWithPasskeyCredentials" }, "2445": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105742,23 +107359,23 @@ }, "2446": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "2447": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signal" + "qualifiedName": "__type" }, "2448": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "RegisterPasskeyCredentials" + "qualifiedName": "__type.captchaToken" }, "2449": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signal" }, "2450": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "RegisterPasskeyCredentials" }, "2451": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105766,35 +107383,35 @@ }, "2452": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.signal" + "qualifiedName": "__type.options" }, "2453": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyPasskeyRegistrationParams" + "qualifiedName": "__type" }, "2454": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.signal" }, "2455": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challengeId" + "qualifiedName": "VerifyPasskeyRegistrationParams" }, "2456": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2457": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "StartPasskeyAuthenticationParams" + "qualifiedName": "__type.challengeId" }, "2458": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2459": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.options" + "qualifiedName": "StartPasskeyAuthenticationParams" }, "2460": { "sourceFileName": "../auth-js/src/lib/types.ts", @@ -105802,1811 +107419,1819 @@ }, "2461": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.captchaToken" + "qualifiedName": "__type.options" }, "2462": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "VerifyPasskeyAuthenticationParams" + "qualifiedName": "__type" }, "2463": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.captchaToken" }, "2464": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.challengeId" + "qualifiedName": "VerifyPasskeyAuthenticationParams" }, "2465": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.credential" + "qualifiedName": "__type" }, "2466": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyUpdateParams" + "qualifiedName": "__type.challengeId" }, "2467": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.credential" }, "2468": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.passkeyId" + "qualifiedName": "PasskeyUpdateParams" }, "2469": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.friendlyName" + "qualifiedName": "__type" }, "2470": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "PasskeyDeleteParams" + "qualifiedName": "__type.passkeyId" }, "2471": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.friendlyName" }, "2472": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.passkeyId" + "qualifiedName": "PasskeyDeleteParams" }, "2473": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyRegistrationOptionsResponse" + "qualifiedName": "__type" }, "2474": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyRegistrationVerifyResponse" + "qualifiedName": "__type.passkeyId" }, "2475": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAuthenticationOptionsResponse" + "qualifiedName": "AuthPasskeyRegistrationOptionsResponse" }, "2476": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAuthenticationVerifyResponse" + "qualifiedName": "AuthPasskeyRegistrationVerifyResponse" }, "2477": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthPasskeyAuthenticationOptionsResponse" }, "2478": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.session" + "qualifiedName": "AuthPasskeyAuthenticationVerifyResponse" }, "2479": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.user" + "qualifiedName": "__type" }, "2480": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyListResponse" + "qualifiedName": "__type.session" }, "2481": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyUpdateResponse" + "qualifiedName": "__type.user" }, "2482": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyDeleteResponse" + "qualifiedName": "AuthPasskeyListResponse" }, "2483": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAdminListParams" + "qualifiedName": "AuthPasskeyUpdateResponse" }, "2484": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "AuthPasskeyDeleteResponse" }, "2485": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "AuthPasskeyAdminListParams" }, "2486": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyAdminDeleteParams" + "qualifiedName": "__type" }, "2487": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.userId" }, "2488": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.userId" + "qualifiedName": "AuthPasskeyAdminDeleteParams" }, "2489": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "__type.passkeyId" + "qualifiedName": "__type" }, "2490": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi" + "qualifiedName": "__type.userId" }, "2491": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startRegistration" + "qualifiedName": "__type.passkeyId" }, "2492": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startRegistration" + "qualifiedName": "AuthPasskeyApi" }, "2493": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyRegistration" + "qualifiedName": "AuthPasskeyApi.startRegistration" }, "2494": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyRegistration" + "qualifiedName": "AuthPasskeyApi.startRegistration" }, "2495": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.verifyRegistration" }, "2496": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startAuthentication" + "qualifiedName": "AuthPasskeyApi.verifyRegistration" }, "2497": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.startAuthentication" + "qualifiedName": "params" }, "2498": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.startAuthentication" }, "2499": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyAuthentication" + "qualifiedName": "AuthPasskeyApi.startAuthentication" }, "2500": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.verifyAuthentication" + "qualifiedName": "params" }, "2501": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.verifyAuthentication" }, "2502": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.list" + "qualifiedName": "AuthPasskeyApi.verifyAuthentication" }, "2503": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.list" + "qualifiedName": "params" }, "2504": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.update" + "qualifiedName": "AuthPasskeyApi.list" }, "2505": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.update" + "qualifiedName": "AuthPasskeyApi.list" }, "2506": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.update" }, "2507": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.delete" + "qualifiedName": "AuthPasskeyApi.update" }, "2508": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "AuthPasskeyApi.delete" + "qualifiedName": "params" }, "2509": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "AuthPasskeyApi.delete" }, "2510": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi" + "qualifiedName": "AuthPasskeyApi.delete" }, "2511": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" + "qualifiedName": "params" }, "2512": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" + "qualifiedName": "GoTrueAdminPasskeyApi" }, "2513": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" }, "2514": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" + "qualifiedName": "GoTrueAdminPasskeyApi.listPasskeys" }, "2515": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" + "qualifiedName": "params" }, "2516": { "sourceFileName": "../auth-js/src/lib/types.ts", - "qualifiedName": "params" + "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" }, "2517": { - "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthError" + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "GoTrueAdminPasskeyApi.deletePasskey" }, "2518": { - "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthError" + "sourceFileName": "../auth-js/src/lib/types.ts", + "qualifiedName": "params" }, "2519": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthError" }, "2520": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthApiError" + "qualifiedName": "isAuthError" }, "2521": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthApiError" + "qualifiedName": "error" }, "2522": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthApiError" }, "2523": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthSessionMissingError" + "qualifiedName": "isAuthApiError" }, "2524": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthSessionMissingError" + "qualifiedName": "error" }, "2525": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthSessionMissingError" }, "2526": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthImplicitGrantRedirectError" + "qualifiedName": "isAuthSessionMissingError" }, "2527": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthImplicitGrantRedirectError" + "qualifiedName": "error" }, "2528": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthImplicitGrantRedirectError" }, "2529": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthPKCECodeVerifierMissingError" + "qualifiedName": "isAuthImplicitGrantRedirectError" }, "2530": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthPKCECodeVerifierMissingError" + "qualifiedName": "error" }, "2531": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthPKCECodeVerifierMissingError" }, "2532": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthRetryableFetchError" + "qualifiedName": "isAuthPKCECodeVerifierMissingError" }, "2533": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthRetryableFetchError" + "qualifiedName": "error" }, "2534": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthRetryableFetchError" }, "2535": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "isAuthRetryableFetchError" }, "2536": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "isAuthWeakPasswordError" + "qualifiedName": "error" }, "2537": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "error" + "qualifiedName": "isAuthRefreshDiscardedError" }, "2538": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "isAuthRefreshDiscardedError" }, "2539": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.__constructor" + "qualifiedName": "error" }, "2540": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError" + "qualifiedName": "isAuthWeakPasswordError" }, "2541": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "message" + "qualifiedName": "isAuthWeakPasswordError" }, "2542": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "status" + "qualifiedName": "error" }, "2543": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "code" + "qualifiedName": "AuthError" }, "2544": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.code" + "qualifiedName": "AuthError.__constructor" }, "2545": { - "sourceFileName": "", - "qualifiedName": "__type" + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError" }, "2546": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.status" + "qualifiedName": "message" }, "2547": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.__isAuthError" + "qualifiedName": "status" }, "2548": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.toJSON" + "qualifiedName": "code" }, "2549": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthError.toJSON" + "qualifiedName": "AuthError.code" }, "2550": { - "sourceFileName": "../auth-js/src/lib/errors.ts", + "sourceFileName": "", "qualifiedName": "__type" }, "2551": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "__type.name" + "qualifiedName": "AuthError.status" }, "2552": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "__type.message" + "qualifiedName": "AuthError.__isAuthError" }, "2553": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "__type.status" + "qualifiedName": "AuthError.toJSON" }, "2554": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "__type.code" + "qualifiedName": "AuthError.toJSON" }, "2555": { - "sourceFileName": "", + "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, "2556": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthApiError" + "qualifiedName": "__type.name" }, "2557": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthApiError.__constructor" + "qualifiedName": "__type.message" }, "2558": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "AuthApiError" + "qualifiedName": "__type.status" }, "2559": { "sourceFileName": "../auth-js/src/lib/errors.ts", - "qualifiedName": "message" + "qualifiedName": "__type.code" }, "2560": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "2561": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthApiError" + }, + "2562": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthApiError.__constructor" + }, + "2563": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthApiError" + }, + "2564": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "message" + }, + "2565": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2561": { + "2566": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "code" }, - "2562": { + "2567": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthApiError.status" }, - "2563": { + "2568": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2564": { + "2569": { "sourceFileName": "", "qualifiedName": "__type" }, - "2565": { + "2570": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2566": { + "2571": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2567": { + "2572": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2568": { + "2573": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2569": { + "2574": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2570": { + "2575": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2571": { + "2576": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2572": { + "2577": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2573": { + "2578": { "sourceFileName": "", "qualifiedName": "__type" }, - "2574": { + "2579": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "2575": { + "2580": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError.__constructor" }, - "2576": { + "2581": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError" }, - "2577": { + "2582": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2578": { + "2583": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "originalError" }, - "2579": { + "2584": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthUnknownError.originalError" }, - "2580": { + "2585": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2581": { + "2586": { "sourceFileName": "", "qualifiedName": "__type" }, - "2582": { + "2587": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.status" }, - "2583": { + "2588": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2584": { + "2589": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2585": { + "2590": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2586": { + "2591": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2587": { + "2592": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2588": { + "2593": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2589": { + "2594": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2590": { + "2595": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2591": { + "2596": { "sourceFileName": "", "qualifiedName": "__type" }, - "2592": { + "2597": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "2593": { + "2598": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.__constructor" }, - "2594": { + "2599": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError" }, - "2595": { + "2600": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2596": { + "2601": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "name" }, - "2597": { + "2602": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2598": { + "2603": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "code" }, - "2599": { + "2604": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2600": { + "2605": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2601": { + "2606": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2602": { + "2607": { "sourceFileName": "", "qualifiedName": "__type" }, - "2603": { + "2608": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2604": { + "2609": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2605": { + "2610": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2606": { + "2611": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2607": { + "2612": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2608": { + "2613": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2609": { + "2614": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2610": { + "2615": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2611": { + "2616": { "sourceFileName": "", "qualifiedName": "__type" }, - "2612": { + "2617": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "2613": { + "2618": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError.__constructor" }, - "2614": { + "2619": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthSessionMissingError" }, - "2615": { + "2620": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2616": { + "2621": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2617": { + "2622": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2618": { + "2623": { "sourceFileName": "", "qualifiedName": "__type" }, - "2619": { + "2624": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2620": { + "2625": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2621": { + "2626": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2622": { + "2627": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2623": { + "2628": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2624": { + "2629": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2625": { + "2630": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2626": { + "2631": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2627": { + "2632": { "sourceFileName": "", "qualifiedName": "__type" }, - "2628": { + "2633": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "2629": { + "2634": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError.__constructor" }, - "2630": { + "2635": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidTokenResponseError" }, - "2631": { + "2636": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2632": { + "2637": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2633": { + "2638": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2634": { + "2639": { "sourceFileName": "", "qualifiedName": "__type" }, - "2635": { + "2640": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2636": { + "2641": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2637": { + "2642": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2638": { + "2643": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2639": { + "2644": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2640": { + "2645": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2641": { + "2646": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2642": { + "2647": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2643": { + "2648": { "sourceFileName": "", "qualifiedName": "__type" }, - "2644": { + "2649": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "2645": { + "2650": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError.__constructor" }, - "2646": { + "2651": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidCredentialsError" }, - "2647": { + "2652": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2648": { + "2653": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2649": { + "2654": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2650": { + "2655": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2651": { + "2656": { "sourceFileName": "", "qualifiedName": "__type" }, - "2652": { + "2657": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2653": { + "2658": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2654": { + "2659": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2655": { + "2660": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2656": { + "2661": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2657": { + "2662": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2658": { + "2663": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2659": { + "2664": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2660": { + "2665": { "sourceFileName": "", "qualifiedName": "__type" }, - "2661": { + "2666": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "2662": { + "2667": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.__constructor" }, - "2663": { + "2668": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError" }, - "2664": { + "2669": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2665": { + "2670": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "details" }, - "2666": { + "2671": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2667": { + "2672": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2668": { + "2673": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2669": { + "2674": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.details" }, - "2670": { + "2675": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2671": { + "2676": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2672": { + "2677": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2673": { + "2678": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "2674": { + "2679": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthImplicitGrantRedirectError.toJSON" }, - "2675": { + "2680": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2676": { + "2681": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2677": { + "2682": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2678": { + "2683": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2679": { + "2684": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2680": { + "2685": { "sourceFileName": "", "qualifiedName": "__type" }, - "2681": { + "2686": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.details" }, - "2682": { + "2687": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2683": { + "2688": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2684": { + "2689": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2685": { + "2690": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2686": { + "2691": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2687": { + "2692": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2688": { + "2693": { "sourceFileName": "", "qualifiedName": "__type" }, - "2689": { + "2694": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2690": { + "2695": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "2691": { + "2696": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor" }, - "2692": { + "2697": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError" }, - "2693": { + "2698": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2694": { + "2699": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "details" }, - "2695": { + "2700": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2696": { + "2701": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2697": { + "2702": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2698": { + "2703": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.details" }, - "2699": { + "2704": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2700": { + "2705": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2701": { + "2706": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2702": { + "2707": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "2703": { + "2708": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON" }, - "2704": { + "2709": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2705": { + "2710": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2706": { + "2711": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2707": { + "2712": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2708": { + "2713": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2709": { + "2714": { "sourceFileName": "", "qualifiedName": "__type" }, - "2710": { + "2715": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.details" }, - "2711": { + "2716": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2712": { + "2717": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.error" }, - "2713": { + "2718": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2714": { + "2719": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2715": { + "2720": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2716": { + "2721": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2717": { + "2722": { "sourceFileName": "", "qualifiedName": "__type" }, - "2718": { + "2723": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2719": { + "2724": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "2720": { + "2725": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor" }, - "2721": { + "2726": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthPKCECodeVerifierMissingError" }, - "2722": { + "2727": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2723": { + "2728": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2724": { + "2729": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2725": { + "2730": { "sourceFileName": "", "qualifiedName": "__type" }, - "2726": { + "2731": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2727": { + "2732": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2728": { + "2733": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2729": { + "2734": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2730": { + "2735": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2731": { + "2736": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2732": { + "2737": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2733": { + "2738": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2734": { + "2739": { "sourceFileName": "", "qualifiedName": "__type" }, - "2735": { + "2740": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "2736": { + "2741": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError.__constructor" }, - "2737": { + "2742": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthRetryableFetchError" }, - "2738": { + "2743": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2739": { + "2744": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2740": { + "2745": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2741": { + "2746": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2742": { + "2747": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2743": { + "2748": { "sourceFileName": "", "qualifiedName": "__type" }, - "2744": { + "2749": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2745": { + "2750": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2746": { + "2751": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2747": { + "2752": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2748": { + "2753": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2749": { + "2754": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2750": { + "2755": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2751": { + "2756": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2752": { + "2757": { "sourceFileName": "", "qualifiedName": "__type" }, - "2753": { + "2758": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "2759": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError.__constructor" + }, + "2760": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthRefreshDiscardedError" + }, + "2761": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "message" + }, + "2762": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "CustomAuthError.name" + }, + "2763": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "CustomAuthError.status" + }, + "2764": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.code" + }, + "2765": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "2766": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.__isAuthError" + }, + "2767": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "2768": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "AuthError.toJSON" + }, + "2769": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type" + }, + "2770": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.name" + }, + "2771": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.message" + }, + "2772": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.status" + }, + "2773": { + "sourceFileName": "../auth-js/src/lib/errors.ts", + "qualifiedName": "__type.code" + }, + "2774": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "2775": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "2754": { + "2776": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.__constructor" }, - "2755": { + "2777": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError" }, - "2756": { + "2778": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2757": { + "2779": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "status" }, - "2758": { + "2780": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "reasons" }, - "2759": { + "2781": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.reasons" }, - "2760": { + "2782": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "2761": { + "2783": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthWeakPasswordError.toJSON" }, - "2762": { + "2784": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2763": { + "2785": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2764": { + "2786": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2765": { + "2787": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2766": { + "2788": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2767": { + "2789": { "sourceFileName": "", "qualifiedName": "__type" }, - "2768": { + "2790": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.reasons" }, - "2769": { + "2791": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2770": { + "2792": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2771": { + "2793": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2772": { + "2794": { "sourceFileName": "", "qualifiedName": "__type" }, - "2773": { + "2795": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2774": { + "2796": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "2775": { + "2797": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError.__constructor" }, - "2776": { + "2798": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthInvalidJwtError" }, - "2777": { + "2799": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "message" }, - "2778": { + "2800": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.name" }, - "2779": { + "2801": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "CustomAuthError.status" }, - "2780": { + "2802": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.code" }, - "2781": { + "2803": { "sourceFileName": "", "qualifiedName": "__type" }, - "2782": { + "2804": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.__isAuthError" }, - "2783": { + "2805": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2784": { + "2806": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "AuthError.toJSON" }, - "2785": { + "2807": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type" }, - "2786": { + "2808": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.name" }, - "2787": { + "2809": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.message" }, - "2788": { + "2810": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.status" }, - "2789": { + "2811": { "sourceFileName": "../auth-js/src/lib/errors.ts", "qualifiedName": "__type.code" }, - "2790": { + "2812": { "sourceFileName": "", "qualifiedName": "__type" }, - "2791": { + "2813": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default" }, - "2792": { + "2814": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.__constructor" }, - "2793": { + "2815": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default" }, - "2794": { + "2816": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "channel" }, - "2795": { + "2817": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "opts" }, - "2796": { + "2818": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.channel" }, - "2797": { + "2819": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.state" }, - "2798": { + "2820": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "default.state" }, - "2800": { + "2822": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default" }, - "2801": { + "2823": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.__constructor" }, - "2802": { + "2824": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default" }, - "2803": { + "2825": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "topic" }, - "2804": { + "2826": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "params" }, - "2805": { + "2827": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "socket" }, - "2806": { + "2828": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.topic" }, - "2807": { + "2829": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.params" }, - "2808": { + "2830": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.socket" }, - "2809": { + "2831": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.bindings" }, - "2810": { + "2832": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.subTopic" }, - "2811": { + "2833": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.broadcastEndpointURL" }, - "2812": { + "2834": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.private" }, - "2813": { + "2835": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.presence" }, - "2814": { + "2836": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.state" }, - "2815": { + "2837": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.state" }, - "2816": { + "2838": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.state" }, - "2817": { + "2839": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "state" }, - "2818": { + "2840": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinedOnce" }, - "2819": { + "2841": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinedOnce" }, - "2820": { + "2842": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.timeout" }, - "2821": { + "2843": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.timeout" }, - "2822": { + "2844": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinPush" }, - "2823": { + "2845": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.joinPush" }, - "2824": { + "2846": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.rejoinTimer" }, - "2825": { + "2847": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.rejoinTimer" }, - "2826": { + "2848": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.subscribe" }, - "2827": { + "2849": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.subscribe" }, - "2828": { + "2850": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2829": { + "2851": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2830": { + "2852": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2831": { + "2853": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "status" }, - "2832": { + "2854": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "err" }, - "2833": { + "2855": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "timeout" }, - "2835": { + "2857": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.presenceState" }, - "2836": { + "2858": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.presenceState" }, - "2837": { + "2859": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2838": { + "2860": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2839": { + "2861": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2841": { + "2863": { "sourceFileName": "", "qualifiedName": "__type" }, - "2842": { + "2864": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.track" }, - "2843": { + "2865": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.track" }, - "2844": { + "2866": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "2845": { + "2867": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2846": { + "2868": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2848": { + "2870": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "2849": { + "2871": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2850": { + "2872": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2852": { + "2874": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.untrack" }, - "2853": { + "2875": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.untrack" }, - "2854": { + "2876": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "2855": { + "2877": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2856": { + "2878": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2858": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "default.on" - }, - "2859": { + "2880": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2860": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "type" - }, - "2861": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "filter" - }, - "2862": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2863": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.event" - }, - "2864": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "callback" - }, - "2865": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2866": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2867": { + "2881": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2868": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "T" - }, - "2869": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2870": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" - }, - "2872": { + "2882": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2873": { + "2883": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2874": { + "2884": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2875": { + "2885": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "2876": { + "2886": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2877": { + "2887": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2878": { + "2888": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2879": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "payload" - }, - "2880": { + "2889": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2881": { + "2890": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2882": { + "2891": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2883": { + "2892": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2885": { + "2894": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2886": { + "2895": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2887": { + "2896": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2888": { + "2897": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "2889": { + "2898": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2890": { + "2899": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2891": { + "2900": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2892": { + "2901": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "2893": { + "2902": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2894": { + "2903": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2895": { + "2904": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2896": { + "2905": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2898": { + "2907": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2899": { + "2908": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2900": { + "2909": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2901": { + "2910": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "2902": { + "2911": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "2903": { + "2912": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2904": { + "2913": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2905": { + "2914": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "2906": { + "2915": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "2907": { + "2916": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "2908": { + "2917": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2909": { + "2918": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "2911": { + "2920": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "2912": { + "2921": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "2913": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "callback" - }, - "2914": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2915": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2916": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "payload" - }, - "2917": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "default.on" - }, - "2918": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "T" - }, - "2919": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" - }, - "2920": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" - }, "2922": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "type" + "qualifiedName": "__type" }, "2923": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "filter" + "qualifiedName": "__type.event" }, "2924": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107750,35 +109375,31 @@ }, "2962": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "type" + "qualifiedName": "T" }, "2963": { - "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "filter" - }, - "2964": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "2965": { + "2964": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.event" + "qualifiedName": "__type.__index" }, "2966": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "callback" + "qualifiedName": "type" }, "2967": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" + "qualifiedName": "filter" }, "2968": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type" + "qualifiedName": "callback" }, "2969": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "payload" + "qualifiedName": "__type" }, "2970": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107786,15 +109407,15 @@ }, "2971": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.type" + "qualifiedName": "payload" }, "2972": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.event" + "qualifiedName": "default.on" }, "2973": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.meta" + "qualifiedName": "T" }, "2974": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107802,23 +109423,23 @@ }, "2975": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.replayed" + "qualifiedName": "__type.__index" }, - "2976": { + "2977": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.id" + "qualifiedName": "type" }, - "2977": { + "2978": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "filter" }, "2979": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "default.on" + "qualifiedName": "callback" }, "2980": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "2981": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107826,7 +109447,11 @@ }, "2982": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "payload" + }, + "2983": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "default.on" }, "2984": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", @@ -107889,1758 +109514,1838 @@ "qualifiedName": "__type.id" }, "2999": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.__index" + }, + "3001": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "default.on" + }, + "3002": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "T" + }, + "3003": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3004": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.__index" + }, + "3006": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "type" + }, + "3007": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "filter" + }, + "3008": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3009": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.event" + }, + "3010": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "callback" + }, + "3011": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3012": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3013": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "payload" + }, + "3014": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3015": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.type" + }, + "3016": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.event" + }, + "3017": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.meta" + }, + "3018": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type" + }, + "3019": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.replayed" + }, + "3020": { + "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", + "qualifiedName": "__type.id" + }, + "3021": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3000": { + "3022": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3001": { + "3023": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3002": { + "3024": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3003": { + "3025": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3004": { + "3026": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3005": { + "3027": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3006": { + "3028": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3007": { + "3029": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3008": { + "3030": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3009": { + "3031": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3010": { + "3032": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3011": { + "3033": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3012": { + "3034": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3013": { + "3035": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3014": { + "3036": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3015": { + "3037": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3016": { + "3038": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3017": { + "3039": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3019": { + "3041": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3020": { + "3042": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3021": { + "3043": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3022": { + "3044": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3023": { + "3045": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3024": { + "3046": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3025": { + "3047": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3026": { + "3048": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3027": { + "3049": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3028": { + "3050": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3029": { + "3051": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3030": { + "3052": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3031": { + "3053": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3032": { + "3054": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3033": { + "3055": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3034": { + "3056": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3036": { + "3058": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3037": { + "3059": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3038": { + "3060": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3039": { + "3061": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3040": { + "3062": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3041": { + "3063": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3042": { + "3064": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3043": { + "3065": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3044": { + "3066": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3045": { + "3067": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3046": { + "3068": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3047": { + "3069": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3048": { + "3070": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3049": { + "3071": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3050": { + "3072": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3051": { + "3073": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3053": { + "3075": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3054": { + "3076": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3055": { + "3077": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3056": { + "3078": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3057": { + "3079": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3058": { + "3080": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3059": { + "3081": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3060": { + "3082": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3061": { + "3083": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3062": { + "3084": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3063": { + "3085": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3064": { + "3086": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3065": { + "3087": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.on" }, - "3066": { + "3088": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3067": { + "3089": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3068": { + "3090": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3070": { + "3092": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "type" }, - "3071": { + "3093": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "filter" }, - "3072": { + "3094": { "sourceFileName": "", "qualifiedName": "__type" }, - "3073": { + "3095": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "callback" }, - "3074": { + "3096": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3075": { + "3097": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3076": { + "3098": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3077": { + "3099": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.httpSend" }, - "3078": { + "3100": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.httpSend" }, - "3079": { + "3101": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "event" }, - "3080": { + "3102": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3081": { + "3103": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "3082": { + "3104": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3083": { + "3105": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.timeout" }, - "3084": { + "3106": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3085": { + "3107": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.success" }, - "3086": { + "3108": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3087": { + "3109": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.success" }, - "3088": { + "3110": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.status" }, - "3089": { + "3111": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.error" }, - "3090": { + "3112": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.send" }, - "3091": { + "3113": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.send" }, - "3092": { + "3114": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "args" }, - "3093": { + "3115": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3094": { + "3116": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.type" }, - "3095": { + "3117": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3096": { + "3118": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.payload" }, - "3097": { + "3119": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3099": { + "3121": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "opts" }, - "3100": { + "3122": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3101": { + "3123": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3103": { + "3125": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.updateJoinPayload" }, - "3104": { + "3126": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.updateJoinPayload" }, - "3105": { + "3127": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "payload" }, - "3106": { + "3128": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.unsubscribe" }, - "3107": { + "3129": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.unsubscribe" }, - "3108": { + "3130": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "timeout" }, - "3109": { + "3131": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.teardown" }, - "3110": { + "3132": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.teardown" }, - "3111": { + "3133": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.copyBindings" }, - "3112": { + "3134": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "default.copyBindings" }, - "3113": { + "3135": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "other" }, - "3114": { + "3136": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimeChannelOptions" }, - "3115": { + "3137": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3116": { + "3138": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.config" }, - "3117": { + "3139": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3118": { + "3140": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.broadcast" }, - "3119": { + "3141": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3120": { + "3142": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.self" }, - "3121": { + "3143": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.ack" }, - "3122": { + "3144": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.replay" }, - "3123": { + "3145": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.presence" }, - "3124": { + "3146": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3125": { + "3147": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.key" }, - "3126": { + "3148": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.enabled" }, - "3127": { + "3149": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.private" }, - "3128": { + "3150": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimeChannelSendResponse" }, - "3129": { + "3151": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3130": { + "3152": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default" }, - "3131": { + "3153": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.__constructor" }, - "3132": { + "3154": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default" }, - "3133": { + "3155": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "endPoint" }, - "3134": { + "3156": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "options" }, - "3135": { + "3157": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.channels" }, - "3136": { + "3158": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.accessTokenValue" }, - "3137": { + "3159": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.accessToken" }, - "3138": { + "3160": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3139": { + "3161": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3140": { + "3162": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.apiKey" }, - "3141": { + "3163": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.httpEndpoint" }, - "3142": { + "3164": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.headers" }, - "3143": { + "3165": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3144": { + "3166": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3146": { + "3168": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.params" }, - "3147": { + "3169": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3148": { + "3170": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3150": { + "3172": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.ref" }, - "3151": { + "3173": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.logLevel" }, - "3152": { + "3174": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.fetch" }, - "3153": { + "3175": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "3154": { + "3176": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "3155": { + "3177": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "3156": { + "3178": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "3157": { + "3179": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "3158": { + "3180": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "3159": { + "3181": { "sourceFileName": "../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "3160": { + "3182": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.worker" }, - "3161": { + "3183": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.workerUrl" }, - "3162": { + "3184": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.workerRef" }, - "3163": { + "3185": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.serializer" }, - "3164": { + "3186": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endPoint" }, - "3165": { + "3187": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endPoint" }, - "3166": { + "3188": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.timeout" }, - "3167": { + "3189": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.timeout" }, - "3168": { + "3190": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.transport" }, - "3169": { + "3191": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.transport" }, - "3170": { + "3192": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatCallback" }, - "3171": { + "3193": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatCallback" }, - "3172": { + "3194": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatIntervalMs" }, - "3173": { + "3195": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatIntervalMs" }, - "3174": { + "3196": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatTimer" }, - "3175": { + "3197": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.heartbeatTimer" }, - "3176": { + "3198": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.pendingHeartbeatRef" }, - "3177": { + "3199": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.pendingHeartbeatRef" }, - "3178": { + "3200": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectTimer" }, - "3179": { + "3201": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectTimer" }, - "3180": { + "3202": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.vsn" }, - "3181": { + "3203": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.vsn" }, - "3182": { + "3204": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.encode" }, - "3183": { + "3205": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.encode" }, - "3184": { + "3206": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.decode" }, - "3185": { + "3207": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.decode" }, - "3186": { + "3208": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectAfterMs" }, - "3187": { + "3209": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.reconnectAfterMs" }, - "3188": { + "3210": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3189": { + "3211": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3190": { + "3212": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "tries" }, - "3191": { + "3213": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendBuffer" }, - "3192": { + "3214": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendBuffer" }, - "3193": { + "3215": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3194": { + "3216": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3195": { + "3217": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.stateChangeCallbacks" }, - "3196": { + "3218": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.stateChangeCallbacks" }, - "3197": { + "3219": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3198": { + "3220": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.open" }, - "3199": { + "3221": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.close" }, - "3200": { + "3222": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.error" }, - "3201": { + "3223": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.message" }, - "3208": { + "3230": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connect" }, - "3209": { + "3231": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connect" }, - "3210": { + "3232": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endpointURL" }, - "3211": { + "3233": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.endpointURL" }, - "3212": { + "3234": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.disconnect" }, - "3213": { + "3235": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.disconnect" }, - "3214": { + "3236": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "code" }, - "3215": { + "3237": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "reason" }, - "3216": { + "3238": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.getChannels" }, - "3217": { + "3239": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.getChannels" }, - "3218": { + "3240": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeChannel" }, - "3219": { + "3241": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeChannel" }, - "3220": { + "3242": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "channel" }, - "3221": { + "3243": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeAllChannels" }, - "3222": { + "3244": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.removeAllChannels" }, - "3223": { + "3245": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.log" }, - "3224": { + "3246": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.log" }, - "3225": { + "3247": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "kind" }, - "3226": { + "3248": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "msg" }, - "3227": { + "3249": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "data" }, - "3228": { + "3250": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connectionState" }, - "3229": { + "3251": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.connectionState" }, - "3230": { + "3252": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnected" }, - "3231": { + "3253": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnected" }, - "3232": { + "3254": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnecting" }, - "3233": { + "3255": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isConnecting" }, - "3234": { + "3256": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isDisconnecting" }, - "3235": { + "3257": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.isDisconnecting" }, - "3236": { + "3258": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.channel" }, - "3237": { + "3259": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.channel" }, - "3238": { + "3260": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "topic" }, - "3239": { + "3261": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "params" }, - "3240": { + "3262": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.push" }, - "3241": { + "3263": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.push" }, - "3242": { + "3264": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "data" }, - "3243": { + "3265": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.setAuth" }, - "3244": { + "3266": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.setAuth" }, - "3245": { + "3267": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "token" }, - "3246": { + "3268": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendHeartbeat" }, - "3247": { + "3269": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.sendHeartbeat" }, - "3248": { + "3270": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.onHeartbeat" }, - "3249": { + "3271": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "default.onHeartbeat" }, - "3250": { + "3272": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "callback" }, - "3251": { + "3273": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "RealtimeClientOptions" }, - "3252": { + "3274": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3253": { + "3275": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.transport" }, - "3254": { + "3276": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.timeout" }, - "3255": { + "3277": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.heartbeatIntervalMs" }, - "3256": { + "3278": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.heartbeatCallback" }, - "3257": { + "3279": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3258": { + "3280": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3259": { + "3281": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "status" }, - "3260": { + "3282": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "latency" }, - "3261": { + "3283": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.vsn" }, - "3262": { + "3284": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.logger" }, - "3263": { + "3285": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3264": { + "3286": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3265": { + "3287": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "kind" }, - "3266": { + "3288": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "msg" }, - "3267": { + "3289": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "data" }, - "3268": { + "3290": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.encode" }, - "3269": { + "3291": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.decode" }, - "3270": { + "3292": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.reconnectAfterMs" }, - "3271": { + "3293": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3272": { + "3294": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3273": { + "3295": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "tries" }, - "3274": { + "3296": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.headers" }, - "3275": { + "3297": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3276": { + "3298": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3278": { + "3300": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.params" }, - "3279": { + "3301": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3280": { + "3302": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.__index" }, - "3282": { + "3304": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.log_level" }, - "3283": { + "3305": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.logLevel" }, - "3284": { + "3306": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.fetch" }, - "3285": { + "3307": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.worker" }, - "3286": { + "3308": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.workerUrl" }, - "3287": { + "3309": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.accessToken" }, - "3288": { + "3310": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3289": { + "3311": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3290": { + "3312": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.disconnectOnEmptyChannelsAfterMs" }, - "3291": { + "3313": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.sessionStorage" }, - "3292": { + "3314": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "RealtimeMessage" }, - "3293": { + "3315": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3294": { + "3316": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.topic" }, - "3295": { + "3317": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.event" }, - "3296": { + "3318": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.payload" }, - "3297": { + "3319": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.ref" }, - "3298": { + "3320": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type.join_ref" }, - "3299": { + "3321": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresChangesFilter" }, - "3300": { + "3322": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3301": { + "3323": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.event" }, - "3302": { + "3324": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.schema" }, - "3303": { + "3325": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.table" }, - "3304": { + "3326": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.filter" }, - "3305": { + "3327": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3306": { + "3328": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresChangesPayload" }, - "3307": { + "3329": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3308": { + "3330": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3309": { + "3331": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3311": { + "3333": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresInsertPayload" }, - "3312": { + "3334": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3313": { + "3335": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.eventType" }, - "3314": { + "3336": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.new" }, - "3315": { + "3337": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.old" }, - "3316": { + "3338": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3317": { + "3339": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3318": { + "3340": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3319": { + "3341": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3321": { + "3343": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresUpdatePayload" }, - "3322": { + "3344": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3323": { + "3345": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.eventType" }, - "3324": { + "3346": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.new" }, - "3325": { + "3347": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.old" }, - "3326": { + "3348": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3327": { + "3349": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3328": { + "3350": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3330": { + "3352": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "RealtimePostgresDeletePayload" }, - "3331": { + "3353": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3332": { + "3354": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.eventType" }, - "3333": { + "3355": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.new" }, - "3334": { + "3356": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3335": { + "3357": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.old" }, - "3336": { + "3358": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "T" }, - "3337": { + "3359": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3338": { + "3360": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.__index" }, - "3340": { + "3362": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "RealtimePresenceJoinPayload" }, - "3341": { + "3363": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3342": { + "3364": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.event" }, - "3343": { + "3365": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.key" }, - "3344": { + "3366": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.currentPresences" }, - "3345": { + "3367": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.newPresences" }, - "3346": { + "3368": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "T" }, - "3347": { + "3369": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3348": { + "3370": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3350": { + "3372": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "RealtimePresenceLeavePayload" }, - "3351": { + "3373": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3352": { + "3374": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.event" }, - "3353": { + "3375": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.key" }, - "3354": { + "3376": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.currentPresences" }, - "3355": { + "3377": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.leftPresences" }, - "3356": { + "3378": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "T" }, - "3357": { + "3379": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3358": { + "3380": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3360": { + "3382": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "RealtimePresenceState" }, - "3361": { + "3383": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3362": { + "3384": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3364": { + "3386": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "T" }, - "3365": { + "3387": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3366": { + "3388": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type.__index" }, - "3368": { + "3390": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "__type" }, - "3369": { + "3391": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "RealtimeRemoveChannelResponse" }, - "3370": { + "3392": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "__type" }, - "3371": { + "3393": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES" }, - "3372": { + "3394": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST" }, - "3373": { + "3395": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE" }, - "3374": { + "3396": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES" }, - "3375": { + "3397": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM" }, - "3376": { + "3398": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT" }, - "3377": { + "3399": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL" }, - "3378": { + "3400": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT" }, - "3379": { + "3401": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE" }, - "3380": { + "3402": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE" }, - "3381": { + "3403": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS" }, - "3382": { + "3404": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC" }, - "3383": { + "3405": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN" }, - "3384": { + "3406": { "sourceFileName": "../realtime-js/src/RealtimePresence.ts", "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE" }, - "3385": { + "3407": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES" }, - "3386": { + "3408": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED" }, - "3387": { + "3409": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT" }, - "3388": { + "3410": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED" }, - "3389": { + "3411": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR" }, - "3390": { + "3412": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "REALTIME_CHANNEL_STATES" }, - "3391": { + "3413": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type" }, - "3392": { + "3414": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.closed" }, - "3393": { + "3415": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.errored" }, - "3394": { + "3416": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.joined" }, - "3395": { + "3417": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.joining" }, - "3396": { + "3418": { "sourceFileName": "../realtime-js/src/RealtimeChannel.ts", "qualifiedName": "__type.leaving" }, - "3397": { + "3419": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory" }, - "3399": { + "3421": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.getWebSocketConstructor" }, - "3400": { + "3422": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.getWebSocketConstructor" }, - "3401": { + "3423": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "__type" }, - "3402": { + "3424": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "__type" }, - "3403": { + "3425": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "url" }, - "3404": { + "3426": { "sourceFileName": "../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "protocols" }, - "3405": { + "3427": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.isWebSocketSupported" }, - "3406": { + "3428": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketFactory.isWebSocketSupported" }, - "3409": { + "3431": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike" }, - "3410": { + "3432": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.CONNECTING" }, - "3411": { + "3433": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.OPEN" }, - "3412": { + "3434": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.CLOSING" }, - "3413": { + "3435": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.CLOSED" }, - "3414": { + "3436": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.readyState" }, - "3415": { + "3437": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.url" }, - "3416": { + "3438": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.protocol" }, - "3417": { + "3439": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.close" }, - "3418": { + "3440": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.close" }, - "3419": { + "3441": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "code" }, - "3420": { + "3442": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "reason" }, - "3421": { + "3443": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.send" }, - "3422": { + "3444": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.send" }, - "3423": { + "3445": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "data" }, - "3424": { + "3446": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onopen" }, - "3425": { + "3447": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3426": { + "3448": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3427": { + "3449": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3428": { + "3450": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3429": { + "3451": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onmessage" }, - "3430": { + "3452": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3431": { + "3453": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3432": { + "3454": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3433": { + "3455": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3434": { + "3456": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onclose" }, - "3435": { + "3457": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3436": { + "3458": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3437": { + "3459": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3438": { + "3460": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3439": { + "3461": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.onerror" }, - "3440": { + "3462": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3441": { + "3463": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3442": { + "3464": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "this" }, - "3443": { + "3465": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "ev" }, - "3444": { + "3466": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.addEventListener" }, - "3445": { + "3467": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.addEventListener" }, - "3446": { + "3468": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "type" }, - "3447": { + "3469": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "listener" }, - "3448": { + "3470": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.removeEventListener" }, - "3449": { + "3471": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.removeEventListener" }, - "3450": { + "3472": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "type" }, - "3451": { + "3473": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "listener" }, - "3452": { + "3474": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.binaryType" }, - "3453": { + "3475": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.bufferedAmount" }, - "3454": { + "3476": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.extensions" }, - "3455": { + "3477": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "WebSocketLike.dispatchEvent" }, - "3456": { + "3478": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3457": { + "3479": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "__type" }, - "3458": { + "3480": { "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts", "qualifiedName": "event" }, - "3459": { + "3481": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor" }, - "3460": { + "3482": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor" }, - "3461": { + "3483": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor" }, - "3462": { + "3484": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "address" }, - "3463": { + "3485": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "subprotocols" }, - "3464": { + "3486": { "sourceFileName": "../realtime-js/src/RealtimeClient.ts", "qualifiedName": "WebSocketLikeConstructor.__index" } diff --git a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json index 9c85fac3dfdd8..0205bf7586a96 100644 --- a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json +++ b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json @@ -1914,7 +1914,7 @@ } }, "responses": { - "201": { + "200": { "description": "", "content": { "application/json": { @@ -7468,6 +7468,9 @@ } } }, + "400": { + "description": "This feature requires the Pro, Team, or Enterprise organization plan." + }, "401": { "description": "Unauthorized" }, @@ -7491,10 +7494,15 @@ ], "summary": "[Beta] Gets current vanity subdomain config", "tags": ["Domains"], + "x-allowed-plans": ["Pro", "Team", "Enterprise"], "x-badges": [ { "name": "OAuth scope: domains:read", "position": "after" + }, + { + "name": "Only available on Pro, Team, Enterprise", + "position": "before" } ], "x-endpoint-owners": ["infra", "management-api"], @@ -7609,6 +7617,9 @@ } } }, + "400": { + "description": "This feature requires the Pro, Team, or Enterprise organization plan." + }, "401": { "description": "Unauthorized" }, @@ -7632,10 +7643,15 @@ ], "summary": "[Beta] Checks vanity subdomain availability", "tags": ["Domains"], + "x-allowed-plans": ["Pro", "Team", "Enterprise"], "x-badges": [ { "name": "OAuth scope: domains:write", "position": "after" + }, + { + "name": "Only available on Pro, Team, Enterprise", + "position": "before" } ], "x-endpoint-owners": ["infra", "management-api"], @@ -7697,6 +7713,9 @@ } } }, + "400": { + "description": "This feature requires the Pro, Team, or Enterprise organization plan." + }, "401": { "description": "Unauthorized" }, @@ -7720,10 +7739,15 @@ ], "summary": "[Beta] Activates a vanity subdomain for a project.", "tags": ["Domains"], + "x-allowed-plans": ["Pro", "Team", "Enterprise"], "x-badges": [ { "name": "OAuth scope: domains:write", "position": "after" + }, + { + "name": "Only available on Pro, Team, Enterprise", + "position": "before" } ], "x-endpoint-owners": ["infra", "management-api"], @@ -8465,6 +8489,9 @@ "401": { "description": "Unauthorized" }, + "402": { + "description": "This feature requires the Pro, Team, or Enterprise organization plan." + }, "403": { "description": "Forbidden action" }, @@ -8485,6 +8512,13 @@ ], "summary": "[Beta] Set up a read replica", "tags": ["Database"], + "x-allowed-plans": ["Pro", "Team", "Enterprise"], + "x-badges": [ + { + "name": "Only available on Pro, Team, Enterprise", + "position": "before" + } + ], "x-endpoint-owners": ["management-api", "infra"] } }, @@ -21669,7 +21703,7 @@ "description": "Unauthorized" }, "402": { - "description": "Feature requires a higher plan" + "description": "This feature requires the Enterprise organization plan." }, "403": { "description": "Forbidden action" @@ -21694,10 +21728,15 @@ ], "summary": "Gets the backup schedule for a project", "tags": ["Database"], + "x-allowed-plans": ["Enterprise"], "x-badges": [ { "name": "OAuth scope: database:read", "position": "after" + }, + { + "name": "Only available on Enterprise", + "position": "before" } ], "x-endpoint-owners": ["infra"], @@ -21774,7 +21813,7 @@ "description": "Unauthorized" }, "402": { - "description": "Feature requires a higher plan" + "description": "This feature requires the Enterprise organization plan." }, "403": { "description": "Forbidden action" @@ -21799,10 +21838,15 @@ ], "summary": "Updates the backup schedule time for a project", "tags": ["Database"], + "x-allowed-plans": ["Enterprise"], "x-badges": [ { "name": "OAuth scope: database:write", "position": "after" + }, + { + "name": "Only available on Enterprise", + "position": "before" } ], "x-endpoint-owners": ["infra"], diff --git a/apps/studio/.github/eslint-rule-baselines.json b/apps/studio/.github/eslint-rule-baselines.json index 5d73ab0d01ba3..8ce74e195365d 100644 --- a/apps/studio/.github/eslint-rule-baselines.json +++ b/apps/studio/.github/eslint-rule-baselines.json @@ -287,7 +287,6 @@ "components/interfaces/Functions/EdgeFunctionDetails/EdgeFunctionDetails.utils.tsx": 3, "components/interfaces/Functions/EdgeFunctionDetails/EdgeFunctionTesterSheet.tsx": 1, "components/interfaces/Functions/FunctionsNav.tsx": 1, - "components/interfaces/Home/Home.tsx": 6, "components/interfaces/Home/ProjectList/ProjectList.tsx": 1, "components/interfaces/Home/ProjectUsage.tsx": 1, "components/interfaces/Home/ServiceStatus.tsx": 1, diff --git a/apps/studio/components/interfaces/APIKeys/APIKeyRow.tsx b/apps/studio/components/interfaces/APIKeys/APIKeyRow.tsx index 764bad7a47537..13ff46ed83051 100644 --- a/apps/studio/components/interfaces/APIKeys/APIKeyRow.tsx +++ b/apps/studio/components/interfaces/APIKeys/APIKeyRow.tsx @@ -1,4 +1,4 @@ -import { useFlag } from 'common' +import { IS_PLATFORM, useFlag } from 'common' import { motion } from 'framer-motion' import { MoreVertical } from 'lucide-react' import { @@ -85,27 +85,29 @@ export const APIKeyRow = ({ )} - -
- - -
-
+ {IS_PLATFORM && ( + +
+ + +
+
+ )} ({ + mockIsPlatform: { value: true }, + mockUseAPIKeysQuery: vi.fn(), + mockUseAsyncCheckPermissions: vi.fn(), + mockUseAPIKeyDeleteMutation: vi.fn(), +})) + +vi.mock('common', async () => { + const actual = await vi.importActual>('common') + return { + ...actual, + get IS_PLATFORM() { + return mockIsPlatform.value + }, + useParams: () => ({ ref: 'default' }), + } +}) + +vi.mock('@/data/api-keys/api-keys-query', () => ({ + useAPIKeysQuery: mockUseAPIKeysQuery, +})) + +vi.mock('@/data/api-keys/api-key-delete-mutation', () => ({ + useAPIKeyDeleteMutation: mockUseAPIKeyDeleteMutation, +})) + +vi.mock('@/hooks/misc/useCheckPermissions', () => ({ + useAsyncCheckPermissions: mockUseAsyncCheckPermissions, +})) + +vi.mock('./CreatePublishableAPIKeyDialog', () => ({ + CreatePublishableAPIKeyDialog: () =>
CreatePublishableAPIKeyDialog
, +})) + +vi.mock('./APIKeyRow', () => ({ + APIKeyRow: ({ apiKey }: { apiKey: { id: string; name: string } }) => ( + + api-key-row:{apiKey.name} + + ), +})) + +const publishableKey = { + id: 'pk-1', + name: 'default-publishable', + type: 'publishable' as const, + api_key: 'sb_publishable_xyz', +} + +const secretKey = { + id: 'sk-1', + name: 'default-secret', + type: 'secret' as const, + api_key: 'sb_secret_xyz', +} + +describe('PublishableAPIKeys', () => { + beforeEach(() => { + mockIsPlatform.value = true + mockUseAsyncCheckPermissions.mockReturnValue({ can: true, isLoading: false }) + mockUseAPIKeyDeleteMutation.mockReturnValue({ + mutate: vi.fn(), + isPending: false, + isSuccess: false, + }) + }) + + it('renders the table with publishable keys', () => { + mockUseAPIKeysQuery.mockReturnValue({ + data: [publishableKey], + isPending: false, + isSuccess: true, + isError: false, + }) + + render() + + expect(screen.getByText('api-key-row:default-publishable')).toBeInTheDocument() + expect(screen.queryByText('No publishable API keys found')).not.toBeInTheDocument() + }) + + it('on platform with secret-only keys, shows the inline "No publishable keys created yet" admonition', () => { + mockUseAPIKeysQuery.mockReturnValue({ + data: [secretKey], + isPending: false, + isSuccess: true, + isError: false, + }) + + render() + + expect(screen.getByText('No publishable keys created yet')).toBeInTheDocument() + expect(screen.queryByText('No publishable API keys found')).not.toBeInTheDocument() + }) + + it('on platform with no keys, does NOT show the self-hosted empty-state card', () => { + mockUseAPIKeysQuery.mockReturnValue({ + data: [], + isPending: false, + isSuccess: true, + isError: false, + }) + + render() + + expect(screen.queryByText('No publishable API keys found')).not.toBeInTheDocument() + }) + + it('on self-hosted with no publishable keys, shows the empty-state card', () => { + mockIsPlatform.value = false + mockUseAPIKeysQuery.mockReturnValue({ + data: [], + isPending: false, + isSuccess: true, + isError: false, + }) + + render() + + expect(screen.getByText('No publishable API keys found')).toBeInTheDocument() + }) + + it('hides the create button on non-platform', () => { + mockIsPlatform.value = false + mockUseAPIKeysQuery.mockReturnValue({ + data: [publishableKey], + isPending: false, + isSuccess: true, + isError: false, + }) + + render() + + expect(screen.queryByText('CreatePublishableAPIKeyDialog')).not.toBeInTheDocument() + }) + + it('shows the create button on platform', () => { + mockUseAPIKeysQuery.mockReturnValue({ + data: [publishableKey], + isPending: false, + isSuccess: true, + isError: false, + }) + + render() + + expect(screen.getByText('CreatePublishableAPIKeyDialog')).toBeInTheDocument() + }) +}) diff --git a/apps/studio/components/interfaces/APIKeys/PublishableAPIKeys.tsx b/apps/studio/components/interfaces/APIKeys/PublishableAPIKeys.tsx index 3d00c09a20feb..e3d29980549eb 100644 --- a/apps/studio/components/interfaces/APIKeys/PublishableAPIKeys.tsx +++ b/apps/studio/components/interfaces/APIKeys/PublishableAPIKeys.tsx @@ -1,5 +1,5 @@ import { PermissionAction } from '@supabase/shared-types/out/constants' -import { useParams } from 'common' +import { IS_PLATFORM, useParams } from 'common' import { parseAsString, useQueryState } from 'nuqs' import { useEffect, useMemo } from 'react' import { toast } from 'sonner' @@ -54,6 +54,9 @@ export const PublishableAPIKeys = () => { [apiKeysData] ) + const showSelfHostedEmptyState = + !IS_PLATFORM && publishableApiKeys.length === 0 && !isLoadingApiKeys && !isLoadingPermissions + const [deleteId, setDeleteId] = useQueryState('deletePublishableKey', parseAsString) const apiKeyToDelete = publishableApiKeys?.find((key) => key.id === deleteId) @@ -86,7 +89,7 @@ export const PublishableAPIKeys = () => { } + actions={IS_PLATFORM ? : null} /> {!canReadAPIKeys && !isLoadingPermissions ? ( @@ -95,6 +98,15 @@ export const PublishableAPIKeys = () => { ) : isErrorApiKeys ? ( + ) : showSelfHostedEmptyState ? ( + +
+

No publishable API keys found

+

+ This may be a configuration issue. Ensure your API keys are available to Studio. +

+
+
) : ( @@ -102,14 +114,14 @@ export const PublishableAPIKeys = () => { Name API Key - + {IS_PLATFORM && } {hasApiKeys && publishableApiKeys.length === 0 && ( - +

No publishable keys created yet

@@ -131,7 +143,7 @@ export const PublishableAPIKeys = () => { - +

Publishable keys can be safely shared publicly

diff --git a/apps/studio/components/interfaces/APIKeys/SecretAPIKeys.tsx b/apps/studio/components/interfaces/APIKeys/SecretAPIKeys.tsx index da0b609db0fa8..aca9bef59884a 100644 --- a/apps/studio/components/interfaces/APIKeys/SecretAPIKeys.tsx +++ b/apps/studio/components/interfaces/APIKeys/SecretAPIKeys.tsx @@ -1,5 +1,5 @@ import { PermissionAction } from '@supabase/shared-types/out/constants' -import { useFlag, useParams } from 'common' +import { IS_PLATFORM, useFlag, useParams } from 'common' import dayjs from 'dayjs' import { parseAsString, useQueryState } from 'nuqs' import { useEffect, useMemo, useRef } from 'react' @@ -130,7 +130,7 @@ export const SecretAPIKeys = () => { } + actions={IS_PLATFORM ? : null} /> {!canReadAPIKeys && !isLoadingPermissions ? ( @@ -159,7 +159,7 @@ export const SecretAPIKeys = () => { {showApiKeysLastUsed && ( Last Used )} - + {IS_PLATFORM && }
diff --git a/apps/studio/components/interfaces/Database/Hooks/EditHookPanel.constants.ts b/apps/studio/components/interfaces/Database/Hooks/EditHookPanel.constants.ts index 8bd6940af1bc6..d0ed279e3e2ca 100644 --- a/apps/studio/components/interfaces/Database/Hooks/EditHookPanel.constants.ts +++ b/apps/studio/components/interfaces/Database/Hooks/EditHookPanel.constants.ts @@ -57,11 +57,15 @@ export const FormSchema = z name: z.string().min(1, 'Please provide a name for your webhook'), table_id: z.string().min(1, 'Please select a table'), http_method: z.enum(['GET', 'POST']), - timeout_ms: z.coerce - .number() - .int() - .gte(1000, 'Timeout should be at least 1000ms') - .lte(10000, 'Timeout should not exceed 10,000ms'), + timeout_ms: z + .union([ + z.literal(''), + z.coerce + .number() + .gte(1000, 'Timeout should be at least 1000ms') + .lte(10000, 'Timeout should not exceed 10,000ms'), + ]) + .refine((value) => value !== '', 'Timeout is required'), events: z.array(z.string()).min(1, 'Please select at least one event'), httpHeaders: httpHeadersSchema, httpParameters: httpParametersSchema, diff --git a/apps/studio/components/interfaces/Database/Hooks/HTTPRequestConfig.tsx b/apps/studio/components/interfaces/Database/Hooks/HTTPRequestConfig.tsx index 2ff55686dbf4d..a52184fc84f0d 100644 --- a/apps/studio/components/interfaces/Database/Hooks/HTTPRequestConfig.tsx +++ b/apps/studio/components/interfaces/Database/Hooks/HTTPRequestConfig.tsx @@ -144,12 +144,7 @@ export const HTTPRequestConfig = ({ form }: HTTPRequestConfigProps) => { >
- field.onChange(Number(e.target.value))} - className="pr-10" - /> + ms diff --git a/apps/studio/components/interfaces/Functions/EdgeFunctionsListItem.tsx b/apps/studio/components/interfaces/Functions/EdgeFunctionsListItem.tsx index 6f617d1c880a5..766d4e120be14 100644 --- a/apps/studio/components/interfaces/Functions/EdgeFunctionsListItem.tsx +++ b/apps/studio/components/interfaces/Functions/EdgeFunctionsListItem.tsx @@ -32,7 +32,7 @@ export const EdgeFunctionsListItem = ({ function: item }: EdgeFunctionsListItemP const functionUrl = `${endpoint}/functions/v1/${item.slug}` const handleNavigation = createNavigationHandler( - `/project/${ref}/functions/${item.slug}${IS_PLATFORM ? '' : `/details`}`, + `/project/${ref}/functions/${item.slug}${IS_PLATFORM ? '' : `/code`}`, router ) diff --git a/apps/studio/components/interfaces/Functions/FunctionsEmptyState.test.tsx b/apps/studio/components/interfaces/Functions/FunctionsEmptyState.test.tsx new file mode 100644 index 0000000000000..3686e7e4a0c08 --- /dev/null +++ b/apps/studio/components/interfaces/Functions/FunctionsEmptyState.test.tsx @@ -0,0 +1,94 @@ +import { screen } from '@testing-library/react' +import { beforeEach, describe, expect, it, vi } from 'vitest' + +import { FunctionsEmptyState } from './FunctionsEmptyState' +import { customRender as render } from '@/tests/lib/custom-render' + +const { mockIsPlatform, mockUseDeploymentMode, mockUseTrack, mockUseIsFeatureEnabled } = vi.hoisted( + () => ({ + mockIsPlatform: { value: true }, + mockUseDeploymentMode: vi.fn(), + mockUseTrack: vi.fn(), + mockUseIsFeatureEnabled: vi.fn(), + }) +) + +vi.mock('@/lib/constants', async () => { + const actual = await vi.importActual>('@/lib/constants') + return { + ...actual, + get IS_PLATFORM() { + return mockIsPlatform.value + }, + } +}) + +vi.mock('@/hooks/misc/useDeploymentMode', () => ({ + useDeploymentMode: mockUseDeploymentMode, +})) + +vi.mock('@/lib/telemetry/track', () => ({ + useTrack: mockUseTrack, +})) + +vi.mock('@/hooks/misc/useIsFeatureEnabled', () => ({ + useIsFeatureEnabled: mockUseIsFeatureEnabled, +})) + +describe('FunctionsEmptyState', () => { + beforeEach(() => { + mockIsPlatform.value = true + mockUseDeploymentMode.mockReturnValue({ + isPlatform: true, + isCli: false, + isSelfHosted: false, + }) + mockUseTrack.mockReturnValue(vi.fn()) + mockUseIsFeatureEnabled.mockReturnValue(false) + }) + + it('renders the templates section on platform', () => { + render() + + expect(screen.getByText('Start with a template')).toBeInTheDocument() + }) + + it('hides the templates section on self-hosted (Docker mode)', () => { + mockIsPlatform.value = false + mockUseDeploymentMode.mockReturnValue({ + isPlatform: false, + isCli: false, + isSelfHosted: true, + }) + + render() + + expect(screen.queryByText('Start with a template')).not.toBeInTheDocument() + }) + + it('hides the templates section on CLI mode', () => { + mockIsPlatform.value = false + mockUseDeploymentMode.mockReturnValue({ + isPlatform: false, + isCli: true, + isSelfHosted: false, + }) + + render() + + expect(screen.queryByText('Start with a template')).not.toBeInTheDocument() + }) + + it('renders the self-hosted manual card when isSelfHosted', () => { + mockIsPlatform.value = false + mockUseDeploymentMode.mockReturnValue({ + isPlatform: false, + isCli: false, + isSelfHosted: true, + }) + + render() + + expect(screen.getByText('Self-Hosted')).toBeInTheDocument() + }) +}) diff --git a/apps/studio/components/interfaces/Functions/FunctionsEmptyState.tsx b/apps/studio/components/interfaces/Functions/FunctionsEmptyState.tsx index 3725e6e8982d8..f7016727def43 100644 --- a/apps/studio/components/interfaces/Functions/FunctionsEmptyState.tsx +++ b/apps/studio/components/interfaces/Functions/FunctionsEmptyState.tsx @@ -1,27 +1,10 @@ import { useParams } from 'common' -import { Code, Play, Terminal } from 'lucide-react' +import { Code, Server, Terminal } from 'lucide-react' import Link from 'next/link' import { useRouter } from 'next/router' import { parseAsString, useQueryState } from 'nuqs' import { useMemo } from 'react' -import { - AiIconAnimation, - Button, - Card, - CardContent, - CardHeader, - CardTitle, - cn, - Dialog, - DialogContent, - DialogDescription, - DialogHeader, - DialogSection, - DialogTitle, - DialogTrigger, - Separator, -} from 'ui' -import { CodeBlock } from 'ui-patterns/CodeBlock' +import { AiIconAnimation, Button, Card, CardContent, CardHeader, CardTitle } from 'ui' import { EDGE_FUNCTION_TEMPLATES } from './Functions.templates' import { SIDEBAR_KEYS } from '@/components/layouts/ProjectLayout/LayoutSidebar/LayoutSidebarProvider' @@ -29,8 +12,9 @@ import { ScaffoldSectionTitle } from '@/components/layouts/Scaffold' import { DocsButton } from '@/components/ui/DocsButton' import { ResourceItem } from '@/components/ui/Resource/ResourceItem' import { ResourceList } from '@/components/ui/Resource/ResourceList' +import { useDeploymentMode } from '@/hooks/misc/useDeploymentMode' import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled' -import { DOCS_URL } from '@/lib/constants' +import { DOCS_URL, IS_PLATFORM } from '@/lib/constants' import { useTrack } from '@/lib/telemetry/track' import { useAiAssistantStateSnapshot } from '@/state/ai-assistant-state' import { useSidebarManagerSnapshot } from '@/state/sidebar-manager-state' @@ -38,6 +22,7 @@ import { useSidebarManagerSnapshot } from '@/state/sidebar-manager-state' export const FunctionsEmptyState = () => { const { ref } = useParams() const router = useRouter() + const { isCli, isSelfHosted } = useDeploymentMode() const aiSnap = useAiAssistantStateSnapshot() const { openSidebar } = useSidebarManagerSnapshot() @@ -54,334 +39,158 @@ export const FunctionsEmptyState = () => { return EDGE_FUNCTION_TEMPLATES.filter((template) => template.value !== 'stripe-webhook') }, [showStripeExample]) + const emptyStateTitle = IS_PLATFORM + ? 'Deploy your first edge function' + : 'Add your first edge function' + return ( <> - Deploy your first edge function + {emptyStateTitle} {/* Editor Option */} -
-
- -

Via Editor

-
-

- Create and edit functions directly in the browser. Download to local at any time. -

- -
- - {/* AI Assistant Option */} -
-
- -

AI Assistant

-
-

- Let our AI assistant help you create functions. Perfect for kickstarting a function. -

- -
- - {/* CLI Option */} -
-
- -

Via CLI

-
-

- Create and deploy functions using the Supabase CLI. Ideal for local development and - version control. -

- - -
-
-
- - Start with a template - - - {templates.map((template) => ( - } - onClick={() => { - track('edge_function_template_clicked', { - templateName: template.name, - origin: 'functions_page', - }) - }} - > - -

{template.name}

-

{template.description}

- -
- ))} -
- - ) -} - -export const FunctionsInstructionsLocal = () => { - const showStripeExample = useIsFeatureEnabled('edge_functions:show_stripe_example') - const templates = useMemo(() => { - if (showStripeExample) { - return EDGE_FUNCTION_TEMPLATES - } - - // Filter out Stripe template - return EDGE_FUNCTION_TEMPLATES.filter((template) => template.value !== 'stripe-webhook') - }, [showStripeExample]) - - return ( - <> -
- - - Developing Edge Functions with the CLI - - -
-
- -

Create an Edge Function

-
-

- Create a new edge function called hello-world in your project via the - Supabase CLI. -

-
- code]:m-0 2xl:min-h-28' - )} - value="supabase functions new hello-world" - /> + {IS_PLATFORM && ( + <> +
+
+ +

Via Editor

+
+

+ Create and edit functions directly in the browser. Download to local at any time. +

+
- -
-
-
- -

Run Edge Functions

-
-

- You can run your Edge Function locally using supabase functions serve. -

-
- code]:m-0 2xl:min-h-28' - )} - value={` -supabase start # start the supabase stack -supabase functions serve # start the Functions watcher`.trim()} - /> + {/* AI Assistant Option */} +
+
+ +

AI Assistant

+
+

+ Let our AI assistant help you create functions. Perfect for kickstarting a + function. +

+
- -
+ + )} + {/* CLI Option */} + {(IS_PLATFORM || isCli) && (
-

Invoke Edge Functions

+

Via CLI

-

- While serving your local Edge Functions, you can invoke it using cURL or one of the - client libraries. +

+ Create and deploy functions using the Supabase CLI. Ideal for local development and + version control.

-
- code]:m-0 2xl:min-h-28' - )} - value={` -curl --request POST 'http://localhost:54321/functions/v1/hello-world' \\ - --header 'Authorization: Bearer SUPABASE_ANON_KEY' \\ - --header 'Content-Type: application/json' \\ - --data '{ "name":"Functions" }'`.trim()} - /> -
- -
- - - - - Self-hosted Supabase - - -
-

- Edge Functions are available in self-hosted Supabase via Supabase Edge Runtime. - Unlike the platform, functions must be added manually — place each function at{' '} - - volumes/functions/<function-name>/index.ts - {' '} - and restart the functions service to pick - up changes. See the guide to learn more about configuration, secrets, and routing. -

- +
-
-
- - Explore our templates - - {templates.map((template) => ( - - - } - > -
-

{template.name}

-

{template.description}

-
-
-
- - - {template.name} - {template.description} - - - - code]:m-0 max-h-[420px]' - )} - value={template.content} - /> - - -
- ))} -
-
- - ) -} - -export const FunctionsSecretsEmptyStateLocal = () => { - return ( - <> - - - Local development & CLI - - -
-

Secrets can be loaded in two ways:

-
    -
  • - Place a .env file at{' '} - supabase/functions/.env — picked up - automatically on supabase start. -
  • -
  • - Pass --env-file to{' '} - supabase functions serve, e.g.{' '} - - supabase functions serve --env-file ./path/to/.env-file - -
  • -
-
- -
-
+ )} - - - Self-Hosted Supabase - - -

- Configure secrets in your .env file and{' '} - docker-compose.yml under the{' '} - functions service. -

- + {isSelfHosted && }
+ {IS_PLATFORM && ( + <> + + Start with a template + + + {templates.map((template) => ( + } + onClick={() => { + track('edge_function_template_clicked', { + templateName: template.name, + origin: 'functions_page', + }) + }} + > + +

{template.name}

+

{template.description}

+ +
+ ))} +
+ + )} ) } + +const SelfHostedManualFunctionContent = () => ( +
+
+ +

Self-Hosted

+
+

+ Place each function at{' '} + volumes/functions/<function-name>/index.ts and + restart the functions service to pick up changes. +

+ +
+) diff --git a/apps/studio/components/interfaces/Home/AdvisorWidget.tsx b/apps/studio/components/interfaces/Home/AdvisorWidget.tsx deleted file mode 100644 index 607359a290dc3..0000000000000 --- a/apps/studio/components/interfaces/Home/AdvisorWidget.tsx +++ /dev/null @@ -1,358 +0,0 @@ -import { useParams } from 'common' -import { Activity, ExternalLink, Shield } from 'lucide-react' -import Link from 'next/link' -import { useCallback, useMemo, useState } from 'react' -import { - Card, - CardContent, - CardHeader, - CardTitle, - Table, - TableBody, - TableCell, - TableHead, - TableHeader, - TableRow, - Tabs_Shadcn_ as Tabs, - TabsContent_Shadcn_ as TabsContent, - TabsList_Shadcn_ as TabsList, - TabsTrigger_Shadcn_ as TabsTrigger, -} from 'ui' -import { ShimmeringLoader } from 'ui-patterns/ShimmeringLoader' - -import { useQueryPerformanceQuery } from '../QueryPerformance/useQueryPerformanceQuery' -import { LINTER_LEVELS } from '@/components/interfaces/Linter/Linter.constants' -import { - createLintSummaryPrompt, - EntityTypeIcon, -} from '@/components/interfaces/Linter/Linter.utils' -import { SIDEBAR_KEYS } from '@/components/layouts/ProjectLayout/LayoutSidebar/LayoutSidebarProvider' -import { AiAssistantDropdown } from '@/components/ui/AiAssistantDropdown' -import { ButtonTooltip } from '@/components/ui/ButtonTooltip' -import { Lint, useProjectLintsQuery } from '@/data/lint/lint-query' -import { useTrack } from '@/lib/telemetry/track' -import { useAdvisorStateSnapshot } from '@/state/advisor-state' -import { useAiAssistantStateSnapshot } from '@/state/ai-assistant-state' -import { useSidebarManagerSnapshot } from '@/state/sidebar-manager-state' - -interface SlowQuery { - rolname: string - mean_time: number - calls: number - query: string -} - -export const AdvisorWidget = () => { - const { ref: projectRef } = useParams() - const [selectedTab, setSelectedTab] = useState<'security' | 'performance'>('security') - const { data: lints, isPending: isLoadingLints } = useProjectLintsQuery({ projectRef }) - const { data: slowestQueriesData, isLoading: isLoadingSlowestQueries } = useQueryPerformanceQuery( - { preset: 'slowestExecutionTime' } - ) - const snap = useAiAssistantStateSnapshot() - const { openSidebar } = useSidebarManagerSnapshot() - const { setSelectedItem } = useAdvisorStateSnapshot() - const track = useTrack() - - const securityLints = useMemo( - () => (lints ?? []).filter((lint: Lint) => lint.categories.includes('SECURITY')), - [lints] - ) - const performanceLints = useMemo( - () => (lints ?? []).filter((lint: Lint) => lint.categories.includes('PERFORMANCE')), - [lints] - ) - - const securityErrorCount = securityLints.filter( - (lint: Lint) => lint.level === LINTER_LEVELS.ERROR - ).length - const securityWarningCount = securityLints.filter( - (lint: Lint) => lint.level === LINTER_LEVELS.WARN - ).length - const performanceErrorCount = performanceLints.filter( - (lint: Lint) => lint.level === LINTER_LEVELS.ERROR - ).length - const performanceWarningCount = performanceLints.filter( - (lint: Lint) => lint.level === LINTER_LEVELS.WARN - ).length - - const top5SlowestQueries = useMemo( - () => ((slowestQueriesData ?? []) as SlowQuery[]).slice(0, 5), - [slowestQueriesData] - ) - - const handleLintClick = useCallback( - (lint: Lint) => { - setSelectedItem(lint.cache_key, 'lint') - openSidebar(SIDEBAR_KEYS.ADVISOR_PANEL) - }, - [setSelectedItem, openSidebar] - ) - - const totalIssues = - securityErrorCount + securityWarningCount + performanceErrorCount + performanceWarningCount - const hasErrors = securityErrorCount > 0 || performanceErrorCount > 0 - const hasWarnings = securityWarningCount > 0 || performanceWarningCount > 0 - - let titleContent: React.ReactNode - - if (totalIssues === 0) { - titleContent =

No issues available

- } else { - const issuesText = totalIssues === 1 ? 'issue' : 'issues' - const numberDisplay = totalIssues.toString() - - let attentionClassName = '' - if (hasErrors) { - attentionClassName = 'text-destructive' - } else if (hasWarnings) { - attentionClassName = 'text-warning' - } - - titleContent = ( -

- {numberDisplay} {issuesText} need - {totalIssues === 1 ? 's' : ''} attention -

- ) - } - - const renderLintTabContent = ( - title: string, - lints: Lint[], - errorCount: number, - warningCount: number, - isLoading: boolean - ) => { - const topIssues = lints - .filter((lint) => lint.level === LINTER_LEVELS.ERROR || lint.level === LINTER_LEVELS.WARN) - .sort((a, _b) => (a.level === LINTER_LEVELS.ERROR ? -1 : 1)) - - return ( -
- {isLoading && ( -
- - - -
- )} - {!isLoading && (errorCount > 0 || warningCount > 0) && ( -
    - {topIssues.map((lint) => { - const lintText = lint.detail ? lint.detail : lint.title - return ( -
  • -
    - -
    { - e.stopPropagation() - e.preventDefault() - }} - className="opacity-0 group-hover:opacity-100" - > - createLintSummaryPrompt(lint)} - onOpenAssistant={() => { - openSidebar(SIDEBAR_KEYS.AI_ASSISTANT) - snap.newChat({ - name: 'Summarize lint', - initialInput: createLintSummaryPrompt(lint), - }) - track('advisor_assistant_button_clicked', { - origin: 'homepage', - advisorCategory: lint.categories[0], - advisorType: lint.name, - advisorLevel: lint.level, - }) - }} - telemetrySource="advisor_widget" - type="text" - className="px-1 w-7" - /> -
    -
    -
  • - ) - })} -
- )} - {!isLoading && errorCount === 0 && warningCount === 0 && ( -
- -

No {title.toLowerCase()} issues found

-
- )} -
- ) - } - - return ( -
- {isLoadingLints ? ( - - ) : ( -
{titleContent}
- )} -
- - - - - setSelectedTab('security')} - className="flex items-center gap-2 text-xs py-3 border-b font-mono uppercase" - > - Security{' '} - {securityErrorCount + securityWarningCount > 0 && ( -
- {securityErrorCount + securityWarningCount} -
- )} -
- setSelectedTab('performance')} - className="flex items-center gap-2 text-xs py-3 border-b font-mono uppercase" - > - Performance{' '} - {performanceErrorCount + performanceWarningCount > 0 && ( -
- {performanceErrorCount + performanceWarningCount} -
- )} -
-
- } - tooltip={{ - content: { - side: 'bottom', - text: `Open ${selectedTab} Advisor`, - className: 'capitalize', - }, - }} - > - - -
- - - {renderLintTabContent( - 'Security', - securityLints, - securityErrorCount, - securityWarningCount, - isLoadingLints - )} - - - {renderLintTabContent( - 'Performance', - performanceLints, - performanceErrorCount, - performanceWarningCount, - isLoadingLints - )} - - -
-
- - - - Slow Queries - } - tooltip={{ - content: { - side: 'bottom', - text: `Open Query Performance Advisor`, - }, - }} - > - - - - - {isLoadingSlowestQueries ? ( -
- - - - - -
- ) : top5SlowestQueries.length === 0 ? ( -
- -

- No slow queries found in the selected period -

-
- ) : ( -
- - - - Query - - - Avg time - - - Calls - - - - - {/* Added explicit types for map parameters */} - {top5SlowestQueries.map((query: SlowQuery, i: number) => ( - - {query.query} - - - {typeof query.mean_time === 'number' - ? `${(query.mean_time / 1000).toFixed(2)}s` - : 'N/A'} - - {query.calls} - - ))} - -
- )} - -
- - - ) -} diff --git a/apps/studio/components/interfaces/Home/Home.tsx b/apps/studio/components/interfaces/Home/Home.tsx deleted file mode 100644 index eabd814ca5e21..0000000000000 --- a/apps/studio/components/interfaces/Home/Home.tsx +++ /dev/null @@ -1,286 +0,0 @@ -import { useParams } from 'common' -import dayjs from 'dayjs' -import Link from 'next/link' -import { useEffect, useRef } from 'react' -import { - Badge, - cn, - Tabs_Shadcn_, - TabsContent_Shadcn_, - TabsList_Shadcn_, - TabsTrigger_Shadcn_, - Tooltip, - TooltipContent, - TooltipTrigger, -} from 'ui' -import { ShimmeringLoader } from 'ui-patterns/ShimmeringLoader' - -import { AdvisorWidget } from '@/components/interfaces/Home/AdvisorWidget' -import { ClientLibrary } from '@/components/interfaces/Home/ClientLibrary' -import { ExampleProject } from '@/components/interfaces/Home/ExampleProject' -import { EXAMPLE_PROJECTS } from '@/components/interfaces/Home/Home.constants' -import { NewProjectPanel } from '@/components/interfaces/Home/NewProjectPanel/NewProjectPanel' -import { ProjectUsageSection } from '@/components/interfaces/Home/ProjectUsageSection' -import { ServiceStatus } from '@/components/interfaces/Home/ServiceStatus' -import { ProjectPausedState } from '@/components/layouts/ProjectLayout/PausedState/ProjectPausedState' -import { ComputeBadgeWrapper } from '@/components/ui/ComputeBadgeWrapper' -import { InlineLink } from '@/components/ui/InlineLink' -import { ProjectUpgradeFailedBanner } from '@/components/ui/ProjectUpgradeFailedBanner' -import { useBranchesQuery } from '@/data/branches/branches-query' -import { useEdgeFunctionsQuery } from '@/data/edge-functions/edge-functions-query' -import { useProjectDetailQuery } from '@/data/projects/project-detail-query' -import { useReadReplicasQuery } from '@/data/read-replicas/replicas-query' -import { useTablesQuery } from '@/data/tables/tables-query' -import { useCustomContent } from '@/hooks/custom-content/useCustomContent' -import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled' -import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization' -import { useIsOrioleDb, useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject' -import { DOCS_URL, IS_PLATFORM, PROJECT_STATUS } from '@/lib/constants' -import { useAppStateSnapshot } from '@/state/app-state' - -export const Home = () => { - const { data: project } = useSelectedProjectQuery() - const { data: organization } = useSelectedOrganizationQuery() - const { data: parentProject } = useProjectDetailQuery({ ref: project?.parent_project_ref }) - const isOrioleDb = useIsOrioleDb() - const snap = useAppStateSnapshot() - const { ref, enableBranching } = useParams() - - const { projectHomepageExampleProjects, projectHomepageClientLibraries: clientLibraries } = - useCustomContent(['project_homepage:example_projects', 'project_homepage:client_libraries']) - - const { - projectHomepageShowInstanceSize: showInstanceSize, - projectHomepageShowExamples: showExamples, - } = useIsFeatureEnabled(['project_homepage:show_instance_size', 'project_homepage:show_examples']) - - const hasShownEnableBranchingModalRef = useRef(false) - const isPaused = project?.status === PROJECT_STATUS.INACTIVE - const isNewProject = dayjs(project?.inserted_at).isAfter(dayjs().subtract(2, 'day')) - - useEffect(() => { - if (enableBranching && !hasShownEnableBranchingModalRef.current) { - hasShownEnableBranchingModalRef.current = true - snap.setShowCreateBranchModal(true) - } - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [enableBranching]) - - const { data: tablesData, isPending: isLoadingTables } = useTablesQuery({ - projectRef: project?.ref, - connectionString: project?.connectionString, - schema: 'public', - }) - const { data: functionsData, isPending: isLoadingFunctions } = useEdgeFunctionsQuery({ - projectRef: project?.ref, - }) - const { data: replicasData, isPending: isLoadingReplicas } = useReadReplicasQuery({ - projectRef: project?.ref, - }) - - const { data: branches } = useBranchesQuery({ - projectRef: project?.parent_project_ref ?? project?.ref, - }) - - const mainBranch = branches?.find((branch) => branch.is_default) - const currentBranch = branches?.find((branch) => branch.project_ref === project?.ref) - const isMainBranch = currentBranch?.name === mainBranch?.name - let projectName = 'Welcome to your project' - - if (currentBranch && !isMainBranch) { - projectName = currentBranch?.name - } else if (project?.name) { - projectName = project?.name - } - - const tablesCount = Math.max(0, tablesData?.length ?? 0) - const functionsCount = Math.max(0, functionsData?.length ?? 0) - // [Joshen] JFYI minus 1 as the replicas endpoint returns the primary DB minimally - const replicasCount = Math.max(0, (replicasData?.length ?? 1) - 1) - - if (isPaused) { - return ( -
- -
- ) - } - - return ( -
-
-
-
-
-
- {!isMainBranch && ( - - {parentProject?.name} - - )} -

{projectName}

-
-
- {isOrioleDb && ( - - - OrioleDB - - - This project is using Postgres with OrioleDB which is currently in preview and - not suitable for production workloads. View our{' '} - - documentation - {' '} - for all limitations. - - - )} - {showInstanceSize && ( - - )} -
-
-
- {project?.status === PROJECT_STATUS.ACTIVE_HEALTHY && ( -
-
- - Tables - - - {isLoadingTables ? ( - - ) : ( -

{tablesCount}

- )} -
- -
- - Functions - - {isLoadingFunctions ? ( - - ) : ( -

{functionsCount}

- )} -
- - {IS_PLATFORM && ( -
- - Replicas - - {isLoadingReplicas ? ( - - ) : ( -

{replicasCount}

- )} -
- )} -
- )} - {IS_PLATFORM && project?.status === PROJECT_STATUS.ACTIVE_HEALTHY && ( -
- -
- )} -
-
- -
-
- - <> -
-
- {IS_PLATFORM && project?.status !== PROJECT_STATUS.INACTIVE && ( - <>{isNewProject ? : } - )} - {!isNewProject && project?.status !== PROJECT_STATUS.INACTIVE && } -
-
- -
-
- {project?.status !== PROJECT_STATUS.INACTIVE && ( - <> -
-

Client libraries

-
- {clientLibraries!.map((library) => ( - // [Alaister]: Looks like the useCustomContent has wonky types. I'll look at a fix later. - - ))} -
-
- {showExamples && ( -
-

Example projects

- {!!projectHomepageExampleProjects ? ( -
- {/* [Alaister]: Looks like the useCustomContent has wonky types. I'll look at a fix later. */} - {(projectHomepageExampleProjects as any) - .sort((a: any, b: any) => a.title.localeCompare(b.title)) - .map((project: any) => ( - - ))} -
- ) : ( -
- - - App Frameworks - - Mobile Frameworks - - - -
- {EXAMPLE_PROJECTS.filter((project) => project.type === 'app') - .sort((a, b) => a.title.localeCompare(b.title)) - .map((project) => ( - - ))} -
-
- -
- {EXAMPLE_PROJECTS.filter((project) => project.type === 'mobile') - .sort((a, b) => a.title.localeCompare(b.title)) - .map((project) => ( - - ))} -
-
-
-
- )} -
- )} - - )} -
-
- -
- ) -} diff --git a/apps/studio/components/interfaces/Integrations/DataApi/DocsMenu.tsx b/apps/studio/components/interfaces/Integrations/DataApi/DocsMenu.tsx index e514c77766076..4de0d5abef343 100644 --- a/apps/studio/components/interfaces/Integrations/DataApi/DocsMenu.tsx +++ b/apps/studio/components/interfaces/Integrations/DataApi/DocsMenu.tsx @@ -75,6 +75,7 @@ export const DocsMenu = ({ ) })} + {group.footer} ))} diff --git a/apps/studio/components/interfaces/Integrations/DataApi/DocsTab.tsx b/apps/studio/components/interfaces/Integrations/DataApi/DocsTab.tsx index 859d733578b71..fac8a71615d2c 100644 --- a/apps/studio/components/interfaces/Integrations/DataApi/DocsTab.tsx +++ b/apps/studio/components/interfaces/Integrations/DataApi/DocsTab.tsx @@ -9,7 +9,11 @@ import { DocsMenu } from '@/components/interfaces/Integrations/DataApi/DocsMenu' import { DocsMobileNav } from '@/components/interfaces/Integrations/DataApi/DocsMobileNav' import { DocView } from '@/components/interfaces/Integrations/DataApi/DocView' import { generateDocsMenu, getActivePage } from '@/components/layouts/DocsLayout/DocsLayout.utils' +import { NotExposedEntitiesIndicator } from '@/components/ui/NotExposedEntitiesIndicator' import { useOpenAPISpecQuery } from '@/data/open-api/api-spec-query' +import { partitionExposedDocsEntities } from '@/data/privileges/exposed-docs-entities' +import { useExposedFunctionsQuery } from '@/data/privileges/exposed-functions-query' +import { useExposedTablesQuery } from '@/data/privileges/exposed-tables-query' import { useIsDataApiEnabled } from '@/hooks/misc/useIsDataApiEnabled' import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled' import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject' @@ -27,30 +31,94 @@ export const DataApiDocsTab = () => { const { isEnabled, isPending: isConfigLoading } = useIsDataApiEnabled({ projectRef }) - const { data: openApiSpec } = useOpenAPISpecQuery( - { projectRef }, - { - enabled: !!projectRef && !isPaused && isEnabled, - } - ) + const dataApiEnabled = !!projectRef && !isPaused && isEnabled + + const { data: openApiSpec } = useOpenAPISpecQuery({ projectRef }, { enabled: dataApiEnabled }) - const tableNames = useMemo( - () => (openApiSpec?.tables ?? []).map((table) => table.name), - [openApiSpec] + // Cross-reference the spec against grant status so tables/functions that exist + // in the spec but aren't actually exposed to the Data API are hidden + counted. + const { data: exposedTables } = useExposedTablesQuery( + { projectRef, connectionString: project?.connectionString }, + { enabled: dataApiEnabled } ) - const functionNames = useMemo( - () => (openApiSpec?.functions ?? []).map((fn) => fn.name), - [openApiSpec] + const { data: exposedFunctions } = useExposedFunctionsQuery( + { projectRef, connectionString: project?.connectionString }, + { enabled: dataApiEnabled } ) + const { tableNames, excludedTablesCount } = useMemo(() => { + const { visibleEntities, excludedCount } = partitionExposedDocsEntities( + openApiSpec?.tables ?? [], + exposedTables + ) + return { + tableNames: visibleEntities.map((table) => table.name), + excludedTablesCount: excludedCount, + } + }, [openApiSpec?.tables, exposedTables]) + + const { functionNames, excludedFunctionsCount } = useMemo(() => { + const { visibleEntities, excludedCount } = partitionExposedDocsEntities( + openApiSpec?.functions ?? [], + exposedFunctions + ) + return { + functionNames: visibleEntities.map((fn) => fn.name), + excludedFunctionsCount: excludedCount, + } + }, [openApiSpec?.functions, exposedFunctions]) + const activePage = useMemo(() => getActivePage({ page, resource, rpc }), [page, resource, rpc]) const docsBasePath = projectRef ? `/project/${projectRef}/integrations/data_api/docs` : undefined const menu = useMemo(() => { if (!projectRef) return [] - return generateDocsMenu(projectRef, tableNames, functionNames, { authEnabled }, docsBasePath) - }, [projectRef, tableNames, functionNames, authEnabled, docsBasePath]) + const groups = generateDocsMenu( + projectRef, + tableNames, + functionNames, + { authEnabled }, + docsBasePath + ) + return groups.map((group) => { + if (group.key === 'tables' && excludedTablesCount > 0) { + return { + ...group, + footer: ( + + ), + } + } + if (group.key === 'functions' && excludedFunctionsCount > 0) { + return { + ...group, + footer: ( + + ), + } + } + return group + }) + }, [ + projectRef, + tableNames, + functionNames, + authEnabled, + docsBasePath, + excludedTablesCount, + excludedFunctionsCount, + ]) if (isConfigLoading) { return ( diff --git a/apps/studio/components/interfaces/Integrations/Integration/IntegrationOverviewTabV2/InstallIntegrationSheet/InstallOAuthIntegrationButton.tsx b/apps/studio/components/interfaces/Integrations/Integration/IntegrationOverviewTabV2/InstallIntegrationSheet/InstallOAuthIntegrationButton.tsx index fa2cc53431360..362aa65617ac2 100644 --- a/apps/studio/components/interfaces/Integrations/Integration/IntegrationOverviewTabV2/InstallIntegrationSheet/InstallOAuthIntegrationButton.tsx +++ b/apps/studio/components/interfaces/Integrations/Integration/IntegrationOverviewTabV2/InstallIntegrationSheet/InstallOAuthIntegrationButton.tsx @@ -6,6 +6,7 @@ import { Button } from 'ui' import type { IntegrationDefinition } from '@/components/interfaces/Integrations/Landing/Integrations.constants' import { useAPIKeysQuery } from '@/data/api-keys/api-keys-query' import { useInstallOAuthIntegrationMutation } from '@/data/marketplace/install-oauth-integration-mutation' +import { usePartnerIntegrationsQuery } from '@/data/partners/integration-status-query' import { useSecretsQuery } from '@/data/secrets/secrets-query' interface InstallOAuthIntegrationButtonProps { @@ -22,6 +23,9 @@ export function InstallOAuthIntegrationButton({ integration }: InstallOAuthInteg integration.installIdentificationMethod === 'edge_function_secret_name' && !!integration.edgeFunctionSecretName + const requiresPartnerIntegrationsCheck = + integration.installIdentificationMethod === 'integration_status' + const { data: apiKeys, isLoading: isApiKeysLoading } = useAPIKeysQuery( { projectRef, reveal: false }, { enabled: requiresApiKeysCheck } @@ -32,6 +36,9 @@ export function InstallOAuthIntegrationButton({ integration }: InstallOAuthInteg { enabled: requiresEdgeFunctionSecretsCheck } ) + const { data: partnerIntegrations, isPending: isPartnerIntegrationsLoading } = + usePartnerIntegrationsQuery({ projectRef }, { enabled: requiresPartnerIntegrationsCheck }) + const { mutate: installOAuthIntegration, isPending: isInstalling } = useInstallOAuthIntegrationMutation({ onSuccess: (data) => { @@ -49,7 +56,8 @@ export function InstallOAuthIntegrationButton({ integration }: InstallOAuthInteg const isLoading = (requiresApiKeysCheck && isApiKeysLoading) || - (requiresEdgeFunctionSecretsCheck && isEdgeFunctionSecretsLoading) + (requiresEdgeFunctionSecretsCheck && isEdgeFunctionSecretsLoading) || + (requiresPartnerIntegrationsCheck && isPartnerIntegrationsLoading) const isIntegrationInstalled = useMemo(() => { if (!integration) return false @@ -66,8 +74,23 @@ export function InstallOAuthIntegrationButton({ integration }: InstallOAuthInteg return edgeFunctionSecrets.some((secret) => secret.name === secretName) } + if (integration.installIdentificationMethod === 'integration_status') { + if (isPartnerIntegrationsLoading || !partnerIntegrations) return false + return partnerIntegrations.some( + (i) => i.listing_slug === integration.id && i.status === 'ready' + ) + } + return false - }, [apiKeys, edgeFunctionSecrets, integration, isApiKeysLoading, isEdgeFunctionSecretsLoading]) + }, [ + apiKeys, + edgeFunctionSecrets, + partnerIntegrations, + integration, + isApiKeysLoading, + isEdgeFunctionSecretsLoading, + isPartnerIntegrationsLoading, + ]) const handleInstallClick = async () => { if (!integration || !projectRef) return diff --git a/apps/studio/components/interfaces/Integrations/Landing/Landing.utils.ts b/apps/studio/components/interfaces/Integrations/Landing/Landing.utils.ts index 2fc1c9fe0886f..50024118dbd6b 100644 --- a/apps/studio/components/interfaces/Integrations/Landing/Landing.utils.ts +++ b/apps/studio/components/interfaces/Integrations/Landing/Landing.utils.ts @@ -11,6 +11,7 @@ import { type APIKey } from '@/data/api-keys/api-keys-query' import { type DatabaseExtension } from '@/data/database-extensions/database-extensions-query' import { type Schema } from '@/data/database/schemas-query' import { type FDW } from '@/data/fdw/fdws-query' +import { IntegrationStatus } from '@/data/partners/integration-status-query' import { type ProjectSecret } from '@/data/secrets/secrets-query' export const isStripeSyncEngineInstalled = (schemas: Schema[]) => { @@ -23,11 +24,19 @@ export const isOAuthInstalled = ({ integration, apiKeys, secrets, + partnerIntegrations: partnerIntegrations, }: { integration: IntegrationDefinition apiKeys: APIKey[] secrets: ProjectSecret[] + partnerIntegrations: IntegrationStatus[] }) => { + if (integration.installIdentificationMethod === 'integration_status') { + return partnerIntegrations.some( + (i) => i.listing_slug === integration.id && i.status === 'ready' + ) + } + if (integration.installIdentificationMethod === 'secret_key_prefix') { const prefix = integration.secretKeyPrefix if (!prefix) return false diff --git a/apps/studio/components/interfaces/Integrations/Landing/useInstalledIntegrations.tsx b/apps/studio/components/interfaces/Integrations/Landing/useInstalledIntegrations.tsx index 9c1326e360176..cc0510b12a6a7 100644 --- a/apps/studio/components/interfaces/Integrations/Landing/useInstalledIntegrations.tsx +++ b/apps/studio/components/interfaces/Integrations/Landing/useInstalledIntegrations.tsx @@ -11,6 +11,7 @@ import { useAPIKeysQuery } from '@/data/api-keys/api-keys-query' import { useDatabaseExtensionsQuery } from '@/data/database-extensions/database-extensions-query' import { useSchemasQuery } from '@/data/database/schemas-query' import { useFDWsQuery } from '@/data/fdw/fdws-query' +import { usePartnerIntegrationsQuery } from '@/data/partners/integration-status-query' import { useSecretsQuery } from '@/data/secrets/secrets-query' import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject' import { EMPTY_ARR } from '@/lib/void' @@ -44,6 +45,14 @@ export const useInstalledIntegrations = () => { ) }, [allIntegrations]) + const hasCallbackStatusIntegration = useMemo(() => { + return allIntegrations.some( + (integration) => + integration.type === 'oauth' && + integration.installIdentificationMethod === 'integration_status' + ) + }, [allIntegrations]) + const { data: apiKeys = EMPTY_ARR, error: apiKeysError, @@ -66,6 +75,17 @@ export const useInstalledIntegrations = () => { { enabled: hasEdgeFunctionSecretNameIntegration } ) + const { + data: partnerIntegrations = EMPTY_ARR, + error: partnerIntegrationsError, + isError: isErrorPartnerIntegrations, + isLoading: isPartnerIntegrationsLoading, + isSuccess: isSuccessPartnerIntegrations, + } = usePartnerIntegrationsQuery( + { projectRef: project?.ref }, + { enabled: hasCallbackStatusIntegration } + ) + const { data: wrappers = EMPTY_ARR, error: fdwError, @@ -115,7 +135,12 @@ export const useInstalledIntegrations = () => { return hasRequiredExtensions({ integration, extensions }) } if (integration.type === 'oauth') { - return isOAuthInstalled({ integration, apiKeys, secrets: edgeFunctionSecrets }) + return isOAuthInstalled({ + integration, + apiKeys, + partnerIntegrations, + secrets: edgeFunctionSecrets, + }) } return false }) @@ -128,28 +153,32 @@ export const useInstalledIntegrations = () => { schemasError || availableIntegrationsError || (hasSecretKeyPrefixIntegration ? apiKeysError : null) || - (hasEdgeFunctionSecretNameIntegration ? edgeFunctionSecretsError : null) + (hasEdgeFunctionSecretNameIntegration ? edgeFunctionSecretsError : null) || + (hasCallbackStatusIntegration ? partnerIntegrationsError : null) const isLoading = isSchemasLoading || isFDWLoading || isExtensionsLoading || isAvailableIntegrationsLoading || (hasSecretKeyPrefixIntegration && isApiKeysLoading) || - (hasEdgeFunctionSecretNameIntegration && isEdgeFunctionSecretsLoading) + (hasEdgeFunctionSecretNameIntegration && isEdgeFunctionSecretsLoading) || + (hasCallbackStatusIntegration && isPartnerIntegrationsLoading) const isError = isErrorFDWs || isErrorExtensions || isErrorSchemas || isErrorAvailableIntegrations || (hasSecretKeyPrefixIntegration && isErrorApiKeys) || - (hasEdgeFunctionSecretNameIntegration && isErrorEdgeFunctionSecrets) + (hasEdgeFunctionSecretNameIntegration && isErrorEdgeFunctionSecrets) || + (hasCallbackStatusIntegration && isErrorPartnerIntegrations) const isSuccess = isSuccessFDWs && isSuccessExtensions && isSuccessSchemas && isSuccessAvailableIntegrations && (!hasSecretKeyPrefixIntegration || isSuccessApiKeys) && - (!hasEdgeFunctionSecretNameIntegration || isSuccessEdgeFunctionSecrets) + (!hasEdgeFunctionSecretNameIntegration || isSuccessEdgeFunctionSecrets) && + (!hasCallbackStatusIntegration || isSuccessPartnerIntegrations) return { // show all integrations at once instead of showing partial results diff --git a/apps/studio/components/interfaces/JwtSecrets/jwt-settings.tsx b/apps/studio/components/interfaces/JwtSecrets/jwt-settings.tsx index 09d399dd17cf7..eeb0a070eb0a7 100644 --- a/apps/studio/components/interfaces/JwtSecrets/jwt-settings.tsx +++ b/apps/studio/components/interfaces/JwtSecrets/jwt-settings.tsx @@ -5,7 +5,7 @@ import { JwtSecretUpdateProgress, JwtSecretUpdateStatus, } from '@supabase/shared-types/out/events' -import { useFlag, useParams } from 'common' +import { IS_PLATFORM, useFlag, useParams } from 'common' import { AlertCircle, ChevronDown, @@ -119,7 +119,7 @@ export const JWTSettings = () => { 'custom_config_gotrue' ) - const { data } = useJwtSecretUpdatingStatusQuery({ projectRef }) + const { data } = useJwtSecretUpdatingStatusQuery({ projectRef }, { enabled: IS_PLATFORM }) const { data: config, isError } = useProjectPostgrestConfigQuery({ projectRef }) const { mutateAsync: updateJwt, isPending: isSubmittingJwtSecretUpdateRequest } = useJwtSecretUpdateMutation() @@ -127,14 +127,17 @@ export const JWTSettings = () => { const { can: canReadAPIKeys } = useAsyncCheckPermissions(PermissionAction.SECRETS_READ, '*') const { data: legacyKey, isPending } = useLegacyJWTSigningKeyQuery( { projectRef }, - { enabled: canReadAPIKeys, retry: false } + { enabled: IS_PLATFORM && canReadAPIKeys, retry: false } ) const { data: legacyAPIKeysStatus } = useLegacyAPIKeysStatusQuery( { projectRef }, - { enabled: canReadAPIKeys } + { enabled: IS_PLATFORM && canReadAPIKeys } ) - const { data: authConfig, isPending: isLoadingAuthConfig } = useAuthConfigQuery({ projectRef }) + const { data: authConfig, isPending: isLoadingAuthConfig } = useAuthConfigQuery( + { projectRef }, + { enabled: IS_PLATFORM } + ) const { mutate: updateAuthConfig, isPending: isUpdatingAuthConfig } = useAuthConfigUpdateMutation() @@ -206,6 +209,26 @@ export const JWTSettings = () => { toast.error(`Failed to update JWT secret: ${error.message}`) } } + + if (!IS_PLATFORM) { + return ( + + +
+ + + +
+
+
+ ) + } + return ( <> { } if (succeeded.length > 0) { - closeInviteDialog() + closeInviteSheet() } } @@ -228,7 +233,7 @@ export const InviteMemberButton = () => { const hasUnsavedChanges = form.formState.isDirty - const closeInviteDialog = () => { + const closeInviteSheet = () => { setProjectDropdownOpen(false) setIsOpen(false) form.reset(defaultValues) @@ -240,12 +245,12 @@ export const InviteMemberButton = () => { modalProps: discardChangesModalProps, } = useConfirmOnClose({ checkIsDirty: () => hasUnsavedChanges, - onClose: closeInviteDialog, + onClose: closeInviteSheet, }) return ( - - + + { @@ -274,12 +279,14 @@ export const InviteMemberButton = () => { Invite members - - - - Invite team members - - + + + + Invite team members + + Send invitations and choose the access each new team member receives. + + { } /> -
- - + + + ( - - - + label={role.name} + description={[ + ROLE_DESCRIPTIONS[role.name] ?? + 'Permissions are based on the configured organization role.', + disabledReason, + ] + .filter(Boolean) + .join(' ')} + /> + + + ) + })} + )} @@ -362,10 +373,11 @@ export const InviteMemberButton = () => { control={form.control} render={({ field }) => ( - + + + + + + )} + {isCli && ( + + Project settings are configured in{' '} + supabase/config.toml — applied on{' '} + supabase start. +

+ } + actions={} + /> + )} + {isSelfHosted && ( + Project settings are configured via environment variables.

} + actions={} + /> + )} + + + ) + } + return ( <> diff --git a/apps/studio/components/layouts/AppLayout/NoticeBanner.tsx b/apps/studio/components/layouts/AppLayout/NoticeBanner.tsx index 8424cab08f8ff..6680af603d113 100644 --- a/apps/studio/components/layouts/AppLayout/NoticeBanner.tsx +++ b/apps/studio/components/layouts/AppLayout/NoticeBanner.tsx @@ -9,7 +9,7 @@ import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject' // Update this whenever the banner content below changes so old client bundles // stop displaying outdated notices after the relevant date passes. -const BANNER_EXPIRES_AT = new Date('2026-06-03T15:00:00Z') +const BANNER_EXPIRES_AT = new Date('2026-06-09T15:00:00Z') const SUPAVISOR_UPDATE_REGIONS = { 'eu-central-1': { @@ -17,9 +17,9 @@ const SUPAVISOR_UPDATE_REGIONS = { end: Date.UTC(2026, 4, 26, 15, 0, 0), url: 'https://status.supabase.com/incidents/jy1tm4wfs68t', }, - 'eu-west-1': { - start: Date.UTC(2026, 5, 1, 13, 0, 0), - end: Date.UTC(2026, 5, 1, 15, 0, 0), + 'eu-west-2': { + start: Date.UTC(2026, 5, 9, 13, 0, 0), + end: Date.UTC(2026, 5, 9, 15, 0, 0), url: 'https://status.supabase.com/incidents/3t293hpd545z', }, 'us-west-1': { @@ -30,7 +30,7 @@ const SUPAVISOR_UPDATE_REGIONS = { 'us-east-1': { start: Date.UTC(2026, 5, 3, 13, 0, 0), end: Date.UTC(2026, 5, 3, 15, 0, 0), - url: 'https://status.supabase.com/incidents/7zgmgh2p343n', + url: 'https://status.supabase.com/incidents/y8rp6dwjyplw', }, } diff --git a/apps/studio/components/layouts/DocsLayout/DocsLayout.utils.tsx b/apps/studio/components/layouts/DocsLayout/DocsLayout.utils.tsx index d37fcf7ce12dc..a9c7448b3c7bb 100644 --- a/apps/studio/components/layouts/DocsLayout/DocsLayout.utils.tsx +++ b/apps/studio/components/layouts/DocsLayout/DocsLayout.utils.tsx @@ -48,6 +48,7 @@ export const generateDocsMenu = ( }, { title: 'Tables and Views', + key: 'tables', items: [ { name: 'Introduction', @@ -67,6 +68,7 @@ export const generateDocsMenu = ( }, { title: 'Functions', + key: 'functions', items: [ { name: 'Introduction', diff --git a/apps/studio/components/layouts/Navigation/LayoutHeader/LocalVersionPopover.tsx b/apps/studio/components/layouts/Navigation/LayoutHeader/LocalVersionPopover.tsx index 28d7343bdb21a..90221aedaed6a 100644 --- a/apps/studio/components/layouts/Navigation/LayoutHeader/LocalVersionPopover.tsx +++ b/apps/studio/components/layouts/Navigation/LayoutHeader/LocalVersionPopover.tsx @@ -24,12 +24,14 @@ import { getSemver, semverGte, semverLte } from './LocalVersionPopover.utils' import { DocsButton } from '@/components/ui/DocsButton' import { InlineLink } from '@/components/ui/InlineLink' import { useCLIReleaseVersionQuery } from '@/data/misc/cli-release-version-query' +import { useDeploymentMode } from '@/hooks/misc/useDeploymentMode' import { DOCS_URL } from '@/lib/constants' import { useTrack } from '@/lib/telemetry/track' export const LocalVersionPopover = () => { const track = useTrack() - const { data, isSuccess } = useCLIReleaseVersionQuery() + const { isCli } = useDeploymentMode() + const { data, isSuccess } = useCLIReleaseVersionQuery({ enabled: isCli }) const { current: currentCliVersion, latest: latestCliVersion } = data || {} const hasLatestCLIVersion = isSuccess && !!latestCliVersion diff --git a/apps/studio/components/layouts/Navigation/NavigationBar/NavigationBar.utils.test.tsx b/apps/studio/components/layouts/Navigation/NavigationBar/NavigationBar.utils.test.tsx index 5d2d3776f8fff..1c0779eb87c29 100644 --- a/apps/studio/components/layouts/Navigation/NavigationBar/NavigationBar.utils.test.tsx +++ b/apps/studio/components/layouts/Navigation/NavigationBar/NavigationBar.utils.test.tsx @@ -177,20 +177,14 @@ describe('generateOtherRoutes', () => { }) describe('generateSettingsRoutes', () => { - it('links to general settings on platform', () => { - const routes = generateSettingsRoutes(REF, { isPlatform: true }) + it('links to general settings', () => { + const routes = generateSettingsRoutes(REF) const settingsRoute = routes.find((r) => r.key === 'settings') expect(settingsRoute?.link).toBe(`/project/${REF}/settings/general`) }) - it('links to log-drains settings in self-hosted mode', () => { - const routes = generateSettingsRoutes(REF, { isPlatform: false }) - const settingsRoute = routes.find((r) => r.key === 'settings') - expect(settingsRoute?.link).toBe(`/project/${REF}/settings/log-drains`) - }) - it('returns a link as false when ref is undefined', () => { - const routes = generateSettingsRoutes(undefined, { isPlatform: true }) + const routes = generateSettingsRoutes(undefined) const settingsRoute = routes.find((r) => r.key === 'settings') expect(settingsRoute?.link).toBe(undefined) }) diff --git a/apps/studio/components/layouts/Navigation/NavigationBar/NavigationBar.utils.tsx b/apps/studio/components/layouts/Navigation/NavigationBar/NavigationBar.utils.tsx index 19a16c8d88dc3..f92018c55bda8 100644 --- a/apps/studio/components/layouts/Navigation/NavigationBar/NavigationBar.utils.tsx +++ b/apps/studio/components/layouts/Navigation/NavigationBar/NavigationBar.utils.tsx @@ -30,10 +30,6 @@ interface OtherFeatures { showLogs?: boolean } -interface SettingsFeatures { - isPlatform?: boolean -} - function getRouteContext(ref?: string, project?: Project): RouteContext { return { ref, @@ -210,17 +206,13 @@ export const generateOtherRoutes = ( ] } -export const generateSettingsRoutes = (ref?: string, features?: SettingsFeatures): Route[] => { - const isPlatform = features?.isPlatform ?? IS_PLATFORM - +export const generateSettingsRoutes = (ref?: string): Route[] => { return [ { key: 'settings', label: 'Project Settings', icon: , - link: - ref && - (isPlatform ? `/project/${ref}/settings/general` : `/project/${ref}/settings/log-drains`), + link: ref && `/project/${ref}/settings/general`, disabled: false, shortcutId: SHORTCUT_IDS.NAV_SETTINGS, }, diff --git a/apps/studio/components/layouts/ProjectSettingsLayout/SettingsMenu.selfhosted.test.tsx b/apps/studio/components/layouts/ProjectSettingsLayout/SettingsMenu.selfhosted.test.tsx index 86217131d7fac..f044991a6b4b8 100644 --- a/apps/studio/components/layouts/ProjectSettingsLayout/SettingsMenu.selfhosted.test.tsx +++ b/apps/studio/components/layouts/ProjectSettingsLayout/SettingsMenu.selfhosted.test.tsx @@ -38,16 +38,27 @@ vi.mock('@/components/interfaces/App/FeaturePreview/FeaturePreviewContext', () = })) describe('useGenerateSettingsMenu (self-hosted)', () => { - it('includes Log Drains in self-hosted mode', () => { + it('includes General, API Keys, JWT Keys, and Log Drains in self-hosted mode', () => { const { result } = renderHook(() => useGenerateSettingsMenu()) const configGroup = result.current.find((group) => group.title === 'Configuration') + expect(configGroup?.items.some((item) => item.key === 'general')).toBe(true) + expect(configGroup?.items.some((item) => item.key === 'api-keys')).toBe(true) + expect(configGroup?.items.some((item) => item.key === 'jwt')).toBe(true) expect(configGroup?.items.some((item) => item.key === 'log-drains')).toBe(true) expect(getShortcutId(configGroup?.items.find((item) => item.key === 'log-drains'))).toBe( SHORTCUT_IDS.NAV_PROJECT_SETTINGS_LOG_DRAINS ) }) + it('includes Data API and Vault integrations in self-hosted mode', () => { + const { result } = renderHook(() => useGenerateSettingsMenu()) + const integrationsGroup = result.current.find((group) => group.title === 'Integrations') + + expect(integrationsGroup?.items.some((item) => item.key === 'api')).toBe(true) + expect(integrationsGroup?.items.some((item) => item.key === 'vault')).toBe(true) + }) + it('does not include dashboard settings in self-hosted mode', () => { const { result } = renderHook(() => useGenerateSettingsMenu()) const configGroup = result.current.find((group) => group.title === 'Configuration') @@ -59,8 +70,13 @@ describe('useGenerateSettingsMenu (self-hosted)', () => { const { result } = renderHook(() => useGenerateSettingsMenu()) const configGroup = result.current.find((group) => group.title === 'Configuration') - expect(configGroup?.items.some((item) => item.key === 'general')).toBe(false) - expect(configGroup?.items.some((item) => item.key === 'api-keys')).toBe(false) + expect(configGroup?.items.some((item) => item.key === 'compute-and-disk')).toBe(false) expect(configGroup?.items.some((item) => item.key === 'infrastructure')).toBe(false) + expect(configGroup?.items.some((item) => item.key === 'addons')).toBe(false) + }) + + it('does not include billing group in self-hosted mode', () => { + const { result } = renderHook(() => useGenerateSettingsMenu()) + expect(result.current.some((group) => group.title === 'Billing')).toBe(false) }) }) diff --git a/apps/studio/components/layouts/ProjectSettingsLayout/SettingsMenu.utils.tsx b/apps/studio/components/layouts/ProjectSettingsLayout/SettingsMenu.utils.tsx index d53b85988f828..880b84e66e93b 100644 --- a/apps/studio/components/layouts/ProjectSettingsLayout/SettingsMenu.utils.tsx +++ b/apps/studio/components/layouts/ProjectSettingsLayout/SettingsMenu.utils.tsx @@ -26,6 +26,26 @@ export const useGenerateSettingsMenu = () => { { title: 'Configuration', items: [ + { + name: 'General', + key: 'general', + url: `/project/${ref}/settings/general`, + items: [], + }, + { + name: 'API Keys', + key: 'api-keys', + url: `/project/${ref}/settings/api-keys`, + items: [], + }, + { + name: 'JWT Keys', + key: 'jwt', + url: legacyJwtKeysEnabled + ? `/project/${ref}/settings/jwt` + : `/project/${ref}/settings/jwt/signing-keys`, + items: [], + }, { name: `Log Drains`, key: `log-drains`, @@ -35,6 +55,26 @@ export const useGenerateSettingsMenu = () => { }, ], }, + { + title: 'Integrations', + items: [ + { + name: 'Data API', + key: 'api', + url: `/project/${ref}/integrations/data_api/overview`, + items: [], + rightIcon: , + }, + { + name: 'Vault', + key: 'vault', + url: `/project/${ref}/integrations/vault/overview`, + items: [], + rightIcon: , + label: 'Beta', + }, + ], + }, ] } diff --git a/apps/studio/components/ui/LocalSetupGuide.tsx b/apps/studio/components/ui/LocalSetupGuide.tsx new file mode 100644 index 0000000000000..1c64045e0c8f2 --- /dev/null +++ b/apps/studio/components/ui/LocalSetupGuide.tsx @@ -0,0 +1,37 @@ +import type { ReactNode } from 'react' +import { Card, CardContent, CardHeader, CardTitle } from 'ui' + +import { DocsButton } from '@/components/ui/DocsButton' + +export type LocalSetupGuideVariant = 'cli' | 'selfHosted' + +interface LocalSetupGuideProps { + variant: LocalSetupGuideVariant + body: ReactNode + docsHref: string +} + +const VARIANT_TITLES: Record = { + cli: 'Local development & CLI', + selfHosted: 'Self-Hosted Supabase', +} + +/** + * Card used on `!IS_PLATFORM` pages to point users at the right docs for + * configuring a feature outside of Studio. Renders a single audience-specific + * card; call twice (one per variant) and gate each render on the matching + * `isCli` / `isSelfHosted` flag from `useDeploymentMode`. + */ +export const LocalSetupGuide = ({ variant, body, docsHref }: LocalSetupGuideProps) => { + return ( + + + {VARIANT_TITLES[variant]} + + +
{body}
+ +
+
+ ) +} diff --git a/apps/studio/components/ui/NotExposedEntitiesIndicator.tsx b/apps/studio/components/ui/NotExposedEntitiesIndicator.tsx new file mode 100644 index 0000000000000..428aca44a0a05 --- /dev/null +++ b/apps/studio/components/ui/NotExposedEntitiesIndicator.tsx @@ -0,0 +1,48 @@ +import { useParams } from 'common' +import Link from 'next/link' +import { type ReactNode } from 'react' +import { cn } from 'ui' + +interface NotExposedEntitiesIndicatorProps { + count: number + /** Singular noun, e.g. "table" or "function" */ + entityNoun: string + /** Plural noun, e.g. "tables" or "functions" */ + entityNounPlural: string + /** Optional callback fired when the link is clicked (e.g. to close a panel) */ + onNavigate?: () => void + /** Overrides the default layout classes (padding/size) — color/hover styling is always applied */ + className?: string +} + +/** + * Quiet link shown beneath a docs entity list when some entities are hidden + * because they aren't exposed to the Data API. Styled like a dimmer nav item and + * links to the Data API settings where the user can grant access. + */ +export const NotExposedEntitiesIndicator = ({ + count, + entityNoun, + entityNounPlural, + onNavigate, + className, +}: NotExposedEntitiesIndicatorProps): ReactNode => { + const { ref } = useParams() + + if (count <= 0) return null + + const noun = count === 1 ? entityNoun : entityNounPlural + + return ( + + {count} {noun} not exposed + + ) +} diff --git a/apps/studio/components/ui/ProductMenu/ProductMenu.types.ts b/apps/studio/components/ui/ProductMenu/ProductMenu.types.ts index 21cf7fd36bf01..26b84896e6fc8 100644 --- a/apps/studio/components/ui/ProductMenu/ProductMenu.types.ts +++ b/apps/studio/components/ui/ProductMenu/ProductMenu.types.ts @@ -10,6 +10,8 @@ export interface ProductMenuGroup { name?: string items: ProductMenuGroupItem[] link?: string + /** Optional node rendered after the group's items (e.g. a footer note) */ + footer?: ReactNode } export interface ProductMenuGroupItem { diff --git a/apps/studio/data/partners/integration-status-query.ts b/apps/studio/data/partners/integration-status-query.ts new file mode 100644 index 0000000000000..649491e104c79 --- /dev/null +++ b/apps/studio/data/partners/integration-status-query.ts @@ -0,0 +1,42 @@ +import { useQuery } from '@tanstack/react-query' + +import { partnersKeys } from './keys' +import type { components } from '@/data/api' +import { get, handleError } from '@/data/fetchers' +import type { ResponseError, UseCustomQueryOptions } from '@/types' + +export type IntegrationVariables = { + projectRef?: string +} + +export type IntegrationStatus = + components['schemas']['PartnerIntegrationListResponse']['integrations'][0] + +async function getIntegrations({ projectRef }: IntegrationVariables, signal?: AbortSignal) { + if (!projectRef) throw new Error('Project ref is required') + + const { data, error } = await get(`/platform/integrations/partners/{ref}`, { + params: { path: { ref: projectRef } }, + signal, + }) + + if (error) handleError(error) + return data.integrations +} + +export type IntegrationsData = Awaited> +export type IntegrationsError = ResponseError + +export const usePartnerIntegrationsQuery = ( + { projectRef }: IntegrationVariables, + { + enabled = true, + ...options + }: UseCustomQueryOptions = {} +) => + useQuery({ + queryKey: partnersKeys.getIntegrations(projectRef), + queryFn: ({ signal }) => getIntegrations({ projectRef }, signal), + enabled: enabled && typeof projectRef !== 'undefined', + ...options, + }) diff --git a/apps/studio/data/partners/keys.ts b/apps/studio/data/partners/keys.ts index eeff9d8ef3877..4689e196082c6 100644 --- a/apps/studio/data/partners/keys.ts +++ b/apps/studio/data/partners/keys.ts @@ -1,3 +1,4 @@ -export const stripeProjectsKeys = { - get: (arId: string | undefined) => ['stripe', 'projects', arId] as const, +export const partnersKeys = { + getIntegrations: (projectId?: string) => ['partners', 'integrations', projectId] as const, + getStripeProjects: (arId: string | undefined) => ['stripe', 'projects', arId] as const, } diff --git a/apps/studio/data/partners/stripe-projects-query.ts b/apps/studio/data/partners/stripe-projects-query.ts index 05afed1fe8289..ce5d6494c0acb 100644 --- a/apps/studio/data/partners/stripe-projects-query.ts +++ b/apps/studio/data/partners/stripe-projects-query.ts @@ -1,7 +1,7 @@ import { queryOptions } from '@tanstack/react-query' import type { components } from 'api-types' -import { stripeProjectsKeys } from './keys' +import { partnersKeys } from './keys' import { get, handleError } from '@/data/fetchers' type GetAccountRequestVariables = { @@ -30,7 +30,7 @@ export const accountRequestQueryOptions = ( { enabled = true }: { enabled?: boolean } = { enabled: true } ) => { return queryOptions({ - queryKey: stripeProjectsKeys.get(arId), + queryKey: partnersKeys.getStripeProjects(arId), queryFn: ({ signal }) => getAccountRequest({ arId }, signal), enabled: enabled && typeof arId !== 'undefined', }) diff --git a/apps/studio/data/privileges/exposed-docs-entities.test.ts b/apps/studio/data/privileges/exposed-docs-entities.test.ts new file mode 100644 index 0000000000000..f31c7d9322dbd --- /dev/null +++ b/apps/studio/data/privileges/exposed-docs-entities.test.ts @@ -0,0 +1,73 @@ +import { describe, expect, it } from 'vitest' + +import { partitionExposedDocsEntities, type ExposedEntityStatus } from './exposed-docs-entities' + +type SpecEntity = { name: string } +type StatusItem = { name: string; status: ExposedEntityStatus } + +const spec = (...names: string[]): SpecEntity[] => names.map((name) => ({ name })) +const status = (name: string, status: ExposedEntityStatus): StatusItem => ({ name, status }) + +describe('partitionExposedDocsEntities', () => { + it('fails open when statuses are undefined (not yet loaded)', () => { + const specEntities = spec('todos', 'profiles') + const result = partitionExposedDocsEntities(specEntities, undefined) + expect(result.visibleEntities).toEqual(specEntities) + expect(result.excludedCount).toBe(0) + }) + + it('keeps all entities when every entity is fully granted', () => { + const result = partitionExposedDocsEntities(spec('todos', 'profiles'), [ + status('todos', 'granted'), + status('profiles', 'granted'), + ]) + expect(result.visibleEntities.map((e) => e.name)).toEqual(['todos', 'profiles']) + expect(result.excludedCount).toBe(0) + }) + + it('hides and counts revoked entities', () => { + const result = partitionExposedDocsEntities(spec('todos', 'secret'), [ + status('todos', 'granted'), + status('secret', 'revoked'), + ]) + expect(result.visibleEntities.map((e) => e.name)).toEqual(['todos']) + expect(result.excludedCount).toBe(1) + }) + + it('treats custom (partial) grants as exposed', () => { + const result = partitionExposedDocsEntities(spec('partial'), [status('partial', 'custom')]) + expect(result.visibleEntities.map((e) => e.name)).toEqual(['partial']) + expect(result.excludedCount).toBe(0) + }) + + it('keeps an entity when a same-named entity in another schema is accessible', () => { + // e.g. public.foo (granted) vs private.foo (revoked) — both surface as `foo` + const result = partitionExposedDocsEntities(spec('foo'), [ + status('foo', 'revoked'), + status('foo', 'granted'), + ]) + expect(result.visibleEntities.map((e) => e.name)).toEqual(['foo']) + expect(result.excludedCount).toBe(0) + }) + + it('fails open per-entity when a spec entity has no matching status', () => { + const result = partitionExposedDocsEntities(spec('unknown'), [status('other', 'revoked')]) + expect(result.visibleEntities.map((e) => e.name)).toEqual(['unknown']) + expect(result.excludedCount).toBe(0) + }) + + it('only counts revoked entities that appear in the spec', () => { + const result = partitionExposedDocsEntities(spec('todos'), [ + status('todos', 'granted'), + status('revoked_not_in_spec', 'revoked'), + ]) + expect(result.visibleEntities.map((e) => e.name)).toEqual(['todos']) + expect(result.excludedCount).toBe(0) + }) + + it('handles an empty spec list', () => { + const result = partitionExposedDocsEntities([], [status('todos', 'revoked')]) + expect(result.visibleEntities).toEqual([]) + expect(result.excludedCount).toBe(0) + }) +}) diff --git a/apps/studio/data/privileges/exposed-docs-entities.ts b/apps/studio/data/privileges/exposed-docs-entities.ts new file mode 100644 index 0000000000000..37adbb187911e --- /dev/null +++ b/apps/studio/data/privileges/exposed-docs-entities.ts @@ -0,0 +1,55 @@ +export type ExposedEntityStatus = 'granted' | 'revoked' | 'custom' + +type ExposedEntityStatusItem = { + name: string + status: ExposedEntityStatus +} + +export type FilteredDocsEntities = { + visibleEntities: T[] + excludedCount: number +} + +/** + * Splits the entities listed in the PostgREST OpenAPI spec into those that are + * actually accessible via the Data API and those that are not. + * + * An entity is considered exposed when it has at least one API-role grant + * (`granted` or `custom`). It is excluded only when every entry matching its + * name is `revoked` (no API role has any privilege) — mirroring the + * granted/custom/revoked classification used by the Data API settings page. + * + * Fails open: when the grant statuses haven't loaded (or errored), all spec + * entities are returned so the docs are never blanked out. + */ +export function partitionExposedDocsEntities( + specEntities: T[], + exposedStatuses: ExposedEntityStatusItem[] | undefined +): FilteredDocsEntities { + if (!exposedStatuses) { + return { visibleEntities: specEntities, excludedCount: 0 } + } + + const accessibleNames = new Set() + const revokedNames = new Set() + for (const { name, status } of exposedStatuses) { + if (status === 'revoked') { + revokedNames.add(name) + } else { + accessibleNames.add(name) + } + } + + const visibleEntities: T[] = [] + let excludedCount = 0 + for (const entity of specEntities) { + const isExcluded = revokedNames.has(entity.name) && !accessibleNames.has(entity.name) + if (isExcluded) { + excludedCount += 1 + } else { + visibleEntities.push(entity) + } + } + + return { visibleEntities, excludedCount } +} diff --git a/apps/studio/data/privileges/exposed-functions-query.ts b/apps/studio/data/privileges/exposed-functions-query.ts new file mode 100644 index 0000000000000..9b42de932afc2 --- /dev/null +++ b/apps/studio/data/privileges/exposed-functions-query.ts @@ -0,0 +1,46 @@ +import { useQuery } from '@tanstack/react-query' + +import { + getExposedFunctions, + type ExposedFunction, + type ExposedFunctionsError, + type ExposedFunctionsVariables, +} from './exposed-functions-infinite-query' +import { privilegeKeys } from './keys' +import type { UseCustomQueryOptions } from '@/types' + +// The API Docs panel renders every function without virtualization, so we fetch +// the full grant-status list in a single request rather than paginating. +const ALL_EXPOSED_ENTITIES_LIMIT = 100_000 + +export type ExposedFunctionsAllData = ExposedFunction[] + +async function getAllExposedFunctions( + { projectRef, connectionString }: ExposedFunctionsVariables, + signal?: AbortSignal +): Promise { + const { functions } = await getExposedFunctions( + { projectRef, connectionString, page: 0, limit: ALL_EXPOSED_ENTITIES_LIMIT }, + signal + ) + return functions +} + +/** + * Returns the grant status (`granted` | `custom` | `revoked`) for every database + * function, used to filter unexposed functions out of the autogenerated Data API + * docs. + */ +export const useExposedFunctionsQuery = ( + { projectRef, connectionString }: ExposedFunctionsVariables, + { + enabled = true, + ...options + }: UseCustomQueryOptions = {} +) => + useQuery({ + queryKey: privilegeKeys.exposedFunctionsAll(projectRef), + queryFn: ({ signal }) => getAllExposedFunctions({ projectRef, connectionString }, signal), + enabled: enabled && typeof projectRef !== 'undefined', + ...options, + }) diff --git a/apps/studio/data/privileges/exposed-tables-query.ts b/apps/studio/data/privileges/exposed-tables-query.ts new file mode 100644 index 0000000000000..959d77a70b134 --- /dev/null +++ b/apps/studio/data/privileges/exposed-tables-query.ts @@ -0,0 +1,45 @@ +import { useQuery } from '@tanstack/react-query' + +import { + getExposedTables, + type ExposedTable, + type ExposedTablesError, + type ExposedTablesVariables, +} from './exposed-tables-infinite-query' +import { privilegeKeys } from './keys' +import type { UseCustomQueryOptions } from '@/types' + +// The API Docs panel renders every table without virtualization, so we fetch +// the full grant-status list in a single request rather than paginating. +const ALL_EXPOSED_ENTITIES_LIMIT = 100_000 + +export type ExposedTablesAllData = ExposedTable[] + +async function getAllExposedTables( + { projectRef, connectionString }: ExposedTablesVariables, + signal?: AbortSignal +): Promise { + const { tables } = await getExposedTables( + { projectRef, connectionString, page: 0, limit: ALL_EXPOSED_ENTITIES_LIMIT }, + signal + ) + return tables +} + +/** + * Returns the grant status (`granted` | `custom` | `revoked`) for every table, + * used to filter unexposed tables out of the autogenerated Data API docs. + */ +export const useExposedTablesQuery = ( + { projectRef, connectionString }: ExposedTablesVariables, + { + enabled = true, + ...options + }: UseCustomQueryOptions = {} +) => + useQuery({ + queryKey: privilegeKeys.exposedTablesAll(projectRef), + queryFn: ({ signal }) => getAllExposedTables({ projectRef, connectionString }, signal), + enabled: enabled && typeof projectRef !== 'undefined', + ...options, + }) diff --git a/apps/studio/data/privileges/keys.ts b/apps/studio/data/privileges/keys.ts index 873cb16e3807e..da4f5f43084ba 100644 --- a/apps/studio/data/privileges/keys.ts +++ b/apps/studio/data/privileges/keys.ts @@ -11,6 +11,10 @@ export const privilegeKeys = { 'exposed-tables-infinite', ...(search ? ([{ search }] as const) : []), ] as const, + exposedTablesAll: (projectRef: string | undefined) => + ['projects', projectRef, 'privileges', 'exposed-tables-all'] as const, + exposedFunctionsAll: (projectRef: string | undefined) => + ['projects', projectRef, 'privileges', 'exposed-functions-all'] as const, exposedTableCounts: (projectRef: string | undefined, selectedSchemas?: string[]) => [ 'projects', diff --git a/apps/studio/hooks/analytics/useDbQuery.tsx b/apps/studio/hooks/analytics/useDbQuery.tsx index c080a1157582d..5d83ce266f563 100644 --- a/apps/studio/hooks/analytics/useDbQuery.tsx +++ b/apps/studio/hooks/analytics/useDbQuery.tsx @@ -10,6 +10,7 @@ import { import { useReadReplicasQuery } from '@/data/read-replicas/replicas-query' import { executeSql } from '@/data/sql/execute-sql-query' import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject' +import { IS_PLATFORM } from '@/lib/constants' import { useDatabaseSelectorStateSnapshot } from '@/state/database-selector' export interface DbQueryHook { @@ -43,9 +44,16 @@ const useDbQuery = ({ const { data: databases } = useReadReplicasQuery({ projectRef: project?.ref }) const connectionString = (databases || []).find( (db) => db.identifier === state.selectedDatabaseId - )?.connectionString + )?.connection_string_read_only // default to using the read_only string const identifier = state.selectedDatabaseId + // When a read-replica is selected, require its connection string before fetching. + // Falling back to the primary's connection string would silently query the wrong database. + const isPrimarySelected = !state.selectedDatabaseId || state.selectedDatabaseId === project?.ref + const effectiveConnectionString = isPrimarySelected + ? (connectionString ?? project?.connectionString) + : connectionString + const resolvedSql = typeof sql === 'function' ? sql([]) : sql const { @@ -59,7 +67,7 @@ const useDbQuery = ({ 'projects', project?.ref, 'db', - { ...params, sql: resolvedSql, identifier }, + { ...params, sql: resolvedSql, identifier, connectionString: effectiveConnectionString }, where, orderBy, ], @@ -67,13 +75,17 @@ const useDbQuery = ({ return executeSql( { projectRef: project?.ref, - connectionString: connectionString || project?.connectionString, + connectionString: effectiveConnectionString, sql: resolvedSql, }, signal ).then((res) => res.result) as Promise }, - enabled: Boolean(resolvedSql), + // Don't run until we have a connection string for the selected database. + // For replicas this prevents a silent fallback to the primary before replicas load. + // In self-hosted mode (IS_PLATFORM=false) there is no real connection string, so we + // skip the check — executeSql works fine without one on self-hosted deployments. + enabled: Boolean(resolvedSql) && (!IS_PLATFORM || Boolean(effectiveConnectionString)), refetchOnWindowFocus: false, refetchOnReconnect: false, }) diff --git a/apps/studio/lib/api/self-hosted/constants.test.ts b/apps/studio/lib/api/self-hosted/constants.test.ts index 2a34793220507..9c5455ed7c001 100644 --- a/apps/studio/lib/api/self-hosted/constants.test.ts +++ b/apps/studio/lib/api/self-hosted/constants.test.ts @@ -102,4 +102,18 @@ describe('api/self-hosted/constants', () => { expect(POSTGRES_USER_READ_ONLY).toBe('supabase_read_only_user') }) }) + + describe('AUTH_JWT_SECRET', () => { + it('should use AUTH_JWT_SECRET when set', async () => { + vi.stubEnv('AUTH_JWT_SECRET', 'custom-jwt-secret-32-chars-long-xyz') + const { AUTH_JWT_SECRET } = await import('./constants') + expect(AUTH_JWT_SECRET).toBe('custom-jwt-secret-32-chars-long-xyz') + }) + + it('should fall back to DEFAULT_AUTH_JWT_SECRET when unset', async () => { + vi.stubEnv('AUTH_JWT_SECRET', '') + const { AUTH_JWT_SECRET, DEFAULT_AUTH_JWT_SECRET } = await import('./constants') + expect(AUTH_JWT_SECRET).toBe(DEFAULT_AUTH_JWT_SECRET) + }) + }) }) diff --git a/apps/studio/lib/api/self-hosted/constants.ts b/apps/studio/lib/api/self-hosted/constants.ts index d12f7ab9748b8..6e4f10f8b1309 100644 --- a/apps/studio/lib/api/self-hosted/constants.ts +++ b/apps/studio/lib/api/self-hosted/constants.ts @@ -13,3 +13,9 @@ export const POSTGRES_PASSWORD = process.env.POSTGRES_PASSWORD || 'postgres' export const POSTGRES_USER_READ_WRITE = process.env.POSTGRES_USER_READ_WRITE || 'supabase_admin' export const POSTGRES_USER_READ_ONLY = process.env.POSTGRES_USER_READ_ONLY || 'supabase_read_only_user' + +// Fallback used when AUTH_JWT_SECRET is not provided to the Studio container +// (e.g. local dev without docker-compose). The string is the same default +// shipped by the supabase/cli — keep them in sync. +export const DEFAULT_AUTH_JWT_SECRET = 'super-secret-jwt-token-with-at-least-32-characters-long' +export const AUTH_JWT_SECRET = process.env.AUTH_JWT_SECRET || DEFAULT_AUTH_JWT_SECRET diff --git a/apps/studio/lib/api/self-hosted/settings.test.ts b/apps/studio/lib/api/self-hosted/settings.test.ts index 4903332909cd9..f5cb08e0f5660 100644 --- a/apps/studio/lib/api/self-hosted/settings.test.ts +++ b/apps/studio/lib/api/self-hosted/settings.test.ts @@ -71,10 +71,10 @@ describe('api/self-hosted/settings', () => { const settings = getProjectSettings() expect(settings.service_api_keys).toHaveLength(2) - expect(settings.service_api_keys[0].name).toBe('service_role key') - expect(settings.service_api_keys[0].tags).toBe('service_role') - expect(settings.service_api_keys[1].name).toBe('anon key') - expect(settings.service_api_keys[1].tags).toBe('anon') + expect(settings.service_api_keys[0].name).toBe('anon key') + expect(settings.service_api_keys[0].tags).toBe('anon') + expect(settings.service_api_keys[1].name).toBe('service_role key') + expect(settings.service_api_keys[1].tags).toBe('service_role') }) it('should use environment variables when set', async () => { @@ -91,8 +91,8 @@ describe('api/self-hosted/settings', () => { expect(settings.jwt_secret).toBe('custom-jwt-secret-with-at-least-32-chars') expect(settings.name).toBe('My Custom Project') - expect(settings.service_api_keys[0].api_key).toBe('custom-service-key') - expect(settings.service_api_keys[1].api_key).toBe('custom-anon-key') + expect(settings.service_api_keys[0].api_key).toBe('custom-anon-key') + expect(settings.service_api_keys[1].api_key).toBe('custom-service-key') }) it('should use default JWT secret when not set', async () => { diff --git a/apps/studio/lib/api/self-hosted/settings.ts b/apps/studio/lib/api/self-hosted/settings.ts index 4a35bb2fbb8e0..bed53b34b3c18 100644 --- a/apps/studio/lib/api/self-hosted/settings.ts +++ b/apps/studio/lib/api/self-hosted/settings.ts @@ -1,6 +1,6 @@ import { components } from 'api-types' -import { POSTGRES_PORT } from './constants' +import { AUTH_JWT_SECRET, POSTGRES_PORT } from './constants' import { assertSelfHosted } from './util' import { PROJECT_DB_HOST, PROJECT_ENDPOINT, PROJECT_ENDPOINT_PROTOCOL } from '@/lib/constants/api' @@ -36,22 +36,21 @@ export function getProjectSettings() { db_port: POSTGRES_PORT, db_user: 'postgres', inserted_at: '2021-08-02T06:40:40.646Z', - jwt_secret: - process.env.AUTH_JWT_SECRET ?? 'super-secret-jwt-token-with-at-least-32-characters-long', + jwt_secret: AUTH_JWT_SECRET, name: process.env.DEFAULT_PROJECT_NAME || 'Default Project', ref: 'default', region: 'local', service_api_keys: [ - { - api_key: process.env.SUPABASE_SERVICE_KEY ?? '', - name: 'service_role key', - tags: 'service_role', - }, { api_key: process.env.SUPABASE_ANON_KEY ?? '', name: 'anon key', tags: 'anon', }, + { + api_key: process.env.SUPABASE_SERVICE_KEY ?? '', + name: 'service_role key', + tags: 'service_role', + }, ], ssl_enforced: false, status: 'ACTIVE_HEALTHY', diff --git a/apps/studio/lib/api/self-hosted/signing-keys.test.ts b/apps/studio/lib/api/self-hosted/signing-keys.test.ts new file mode 100644 index 0000000000000..69493f6509f7c --- /dev/null +++ b/apps/studio/lib/api/self-hosted/signing-keys.test.ts @@ -0,0 +1,39 @@ +import { beforeEach, describe, expect, it, vi } from 'vitest' + +import { getLegacySigningKey } from './signing-keys' + +vi.mock('./util', () => ({ + assertSelfHosted: vi.fn(), +})) + +describe('api/self-hosted/signing-keys', () => { + let mockAssertSelfHosted: ReturnType + + beforeEach(async () => { + vi.clearAllMocks() + vi.resetModules() + + const util = await import('./util') + mockAssertSelfHosted = vi.mocked(util.assertSelfHosted) + }) + + describe('getLegacySigningKey', () => { + it('should call assertSelfHosted', () => { + getLegacySigningKey() + + expect(mockAssertSelfHosted).toHaveBeenCalled() + }) + + it('should return a SigningKeyResponse-shaped legacy entry', () => { + const key = getLegacySigningKey() + + expect(key).toEqual({ + id: '00000000-0000-0000-0000-000000000000', + algorithm: 'HS256', + status: 'in_use', + created_at: '1970-01-01T00:00:00.000Z', + updated_at: '1970-01-01T00:00:00.000Z', + }) + }) + }) +}) diff --git a/apps/studio/lib/api/self-hosted/signing-keys.ts b/apps/studio/lib/api/self-hosted/signing-keys.ts new file mode 100644 index 0000000000000..86eb60d58f323 --- /dev/null +++ b/apps/studio/lib/api/self-hosted/signing-keys.ts @@ -0,0 +1,31 @@ +import { components } from 'api-types' + +import { assertSelfHosted } from './util' + +type SigningKeyResponse = components['schemas']['SigningKeyResponse'] + +const LEGACY_KEY_ID = '00000000-0000-0000-0000-000000000000' +const LEGACY_KEY_CREATED_AT = '1970-01-01T00:00:00.000Z' + +/** + * Returns a synthetic legacy signing key entry representing the symmetric + * `AUTH_JWT_SECRET` so the Legacy JWT Secret page can render with the + * "secret has been migrated" state on self-hosted. + * + * The asymmetric signing-key lifecycle (create/rotate/revoke) is not + * supported here — those endpoints remain unmocked, and the JWT Signing + * Keys page renders a docs-pointing admonition instead of a table. + * + * _Only call this from server-side self-hosted code._ + */ +export function getLegacySigningKey(): SigningKeyResponse { + assertSelfHosted() + + return { + id: LEGACY_KEY_ID, + algorithm: 'HS256', + status: 'in_use', + created_at: LEGACY_KEY_CREATED_AT, + updated_at: LEGACY_KEY_CREATED_AT, + } +} diff --git a/apps/studio/pages/api/platform/projects/[ref]/config/secrets/update-status.ts b/apps/studio/pages/api/platform/projects/[ref]/config/secrets/update-status.ts new file mode 100644 index 0000000000000..77fa4ea40445e --- /dev/null +++ b/apps/studio/pages/api/platform/projects/[ref]/config/secrets/update-status.ts @@ -0,0 +1,26 @@ +import { NextApiRequest, NextApiResponse } from 'next' + +import apiWrapper from '@/lib/api/apiWrapper' + +export default function updateStatus(req: NextApiRequest, res: NextApiResponse) { + return apiWrapper(req, res, handler) +} + +async function handler(req: NextApiRequest, res: NextApiResponse) { + const { method } = req + + switch (method) { + case 'GET': + return handleGet(req, res) + default: + res.setHeader('Allow', ['GET']) + res.status(405).json({ data: null, error: { message: `Method ${method} Not Allowed` } }) + } +} + +const handleGet = async (_req: NextApiRequest, res: NextApiResponse) => { + // Self-hosted Studio cannot trigger JWT secret rotations, so there is never + // an in-flight update. Return null so the consuming UI renders the steady + // state instead of spinning a loader against a 404'd endpoint. + return res.status(200).json({ update_status: null }) +} diff --git a/apps/studio/pages/api/v1/projects/[ref]/config/auth/signing-keys/index.ts b/apps/studio/pages/api/v1/projects/[ref]/config/auth/signing-keys/index.ts new file mode 100644 index 0000000000000..db5119e24a732 --- /dev/null +++ b/apps/studio/pages/api/v1/projects/[ref]/config/auth/signing-keys/index.ts @@ -0,0 +1,24 @@ +import { NextApiRequest, NextApiResponse } from 'next' + +import apiWrapper from '@/lib/api/apiWrapper' +import { getLegacySigningKey } from '@/lib/api/self-hosted/signing-keys' + +export default function signingKeys(req: NextApiRequest, res: NextApiResponse) { + return apiWrapper(req, res, handler) +} + +async function handler(req: NextApiRequest, res: NextApiResponse) { + const { method } = req + + switch (method) { + case 'GET': + return handleGet(req, res) + default: + res.setHeader('Allow', ['GET']) + res.status(405).json({ data: null, error: { message: `Method ${method} Not Allowed` } }) + } +} + +const handleGet = async (_req: NextApiRequest, res: NextApiResponse) => { + return res.status(200).json({ keys: [getLegacySigningKey()] }) +} diff --git a/apps/studio/pages/api/v1/projects/[ref]/config/auth/signing-keys/legacy.ts b/apps/studio/pages/api/v1/projects/[ref]/config/auth/signing-keys/legacy.ts new file mode 100644 index 0000000000000..e518e2bffe7a3 --- /dev/null +++ b/apps/studio/pages/api/v1/projects/[ref]/config/auth/signing-keys/legacy.ts @@ -0,0 +1,24 @@ +import { NextApiRequest, NextApiResponse } from 'next' + +import apiWrapper from '@/lib/api/apiWrapper' +import { getLegacySigningKey } from '@/lib/api/self-hosted/signing-keys' + +export default function legacySigningKey(req: NextApiRequest, res: NextApiResponse) { + return apiWrapper(req, res, handler) +} + +async function handler(req: NextApiRequest, res: NextApiResponse) { + const { method } = req + + switch (method) { + case 'GET': + return handleGet(req, res) + default: + res.setHeader('Allow', ['GET']) + res.status(405).json({ data: null, error: { message: `Method ${method} Not Allowed` } }) + } +} + +const handleGet = async (_req: NextApiRequest, res: NextApiResponse) => { + return res.status(200).json(getLegacySigningKey()) +} diff --git a/apps/studio/pages/project/[ref]/functions/index.tsx b/apps/studio/pages/project/[ref]/functions/index.tsx index 9d474c965783b..13a004b971fab 100644 --- a/apps/studio/pages/project/[ref]/functions/index.tsx +++ b/apps/studio/pages/project/[ref]/functions/index.tsx @@ -27,10 +27,7 @@ import { EdgeFunctionsSortOrder, } from '@/components/interfaces/EdgeFunctions/EdgeFunctionsSortDropdown' import { EdgeFunctionsListItem } from '@/components/interfaces/Functions/EdgeFunctionsListItem' -import { - FunctionsEmptyState, - FunctionsInstructionsLocal, -} from '@/components/interfaces/Functions/FunctionsEmptyState' +import { FunctionsEmptyState } from '@/components/interfaces/Functions/FunctionsEmptyState' import { TerminalInstructionsDialog } from '@/components/interfaces/Functions/TerminalInstructionsDialog' import { useFunctionsListShortcuts } from '@/components/interfaces/Functions/useFunctionsListShortcuts' import DefaultLayout from '@/components/layouts/DefaultLayout' @@ -119,7 +116,8 @@ const EdgeFunctionsPage: NextPageWithLayout = () => { ) : (

- Local functions can be found at supabase/functions folder. + Edge functions could not be read from disk. The functions directory may be + missing, not mounted into Studio, or unreadable.

))} @@ -226,7 +224,6 @@ const EdgeFunctionsPage: NextPageWithLayout = () => { )} )} - {!IS_PLATFORM && }
diff --git a/apps/studio/pages/project/[ref]/functions/secrets.tsx b/apps/studio/pages/project/[ref]/functions/secrets.tsx index fa2e1682ed948..5498e52723059 100644 --- a/apps/studio/pages/project/[ref]/functions/secrets.tsx +++ b/apps/studio/pages/project/[ref]/functions/secrets.tsx @@ -1,3 +1,4 @@ +import { Admonition } from 'ui-patterns/admonition' import { PageContainer } from 'ui-patterns/PageContainer' import { PageHeader, @@ -8,19 +9,82 @@ import { } from 'ui-patterns/PageHeader' import { PageSection, PageSectionContent } from 'ui-patterns/PageSection' +import { DefaultEdgeFunctionSecrets } from '@/components/interfaces/Functions/EdgeFunctionSecrets/DefaultEdgeFunctionSecrets' +import { DEFAULT_EDGE_FUNCTION_SECRETS } from '@/components/interfaces/Functions/EdgeFunctionSecrets/DefaultEdgeFunctionSecrets.utils' import { EdgeFunctionSecrets } from '@/components/interfaces/Functions/EdgeFunctionSecrets/EdgeFunctionSecrets' -import { FunctionsSecretsEmptyStateLocal } from '@/components/interfaces/Functions/FunctionsEmptyState' import { DefaultLayout } from '@/components/layouts/DefaultLayout' import EdgeFunctionsLayout from '@/components/layouts/EdgeFunctionsLayout/EdgeFunctionsLayout' -import { IS_PLATFORM } from '@/lib/constants' +import { DocsButton } from '@/components/ui/DocsButton' +import { useDeploymentMode } from '@/hooks/misc/useDeploymentMode' +import { DOCS_URL, IS_PLATFORM } from '@/lib/constants' import type { NextPageWithLayout } from '@/types' const SecretsPage: NextPageWithLayout = () => { + const { isCli, isSelfHosted } = useDeploymentMode() + + if (!IS_PLATFORM) { + return ( + + + + {isCli && ( + + Add custom secrets to{' '} + supabase/functions/.env, or pass{' '} + --env-file to{' '} + supabase functions serve. +

+ } + actions={} + /> + )} + {isSelfHosted && ( + Set custom secrets via environment variables.

} + actions={ + + } + /> + )} +
+
+
+

Default secrets

+

+ Reserved secrets available in every project +

+
+ +
+ !secret.isRuntime)} + /> +
+
+
+
+ ) + } + return ( - {IS_PLATFORM ? : } + diff --git a/apps/studio/pages/project/[ref]/index.tsx b/apps/studio/pages/project/[ref]/index.tsx index 8e1b42dd292a6..428d29742665e 100644 --- a/apps/studio/pages/project/[ref]/index.tsx +++ b/apps/studio/pages/project/[ref]/index.tsx @@ -1,13 +1,10 @@ -import { IS_PLATFORM } from 'common' - -import { Home } from '@/components/interfaces/Home/Home' import { ProjectHome } from '@/components/interfaces/ProjectHome/Home' import DefaultLayout from '@/components/layouts/DefaultLayout' import { ProjectLayoutWithAuth } from '@/components/layouts/ProjectLayout' import type { NextPageWithLayout } from '@/types' const HomePage: NextPageWithLayout = () => { - return IS_PLATFORM ? : + return } HomePage.getLayout = (page) => ( diff --git a/apps/studio/pages/project/[ref]/settings/api-keys/index.tsx b/apps/studio/pages/project/[ref]/settings/api-keys/index.tsx index cd744778580e5..3e895b1ba5514 100644 --- a/apps/studio/pages/project/[ref]/settings/api-keys/index.tsx +++ b/apps/studio/pages/project/[ref]/settings/api-keys/index.tsx @@ -1,7 +1,8 @@ import { PermissionAction } from '@supabase/shared-types/out/constants' -import { useParams } from 'common' +import { IS_PLATFORM, useParams } from 'common' import { useMemo } from 'react' import { Separator } from 'ui' +import { Admonition } from 'ui-patterns/admonition' import { ApiKeysCreateCallout, @@ -13,12 +14,16 @@ import ApiKeysLayout from '@/components/layouts/APIKeys/APIKeysLayout' import { DefaultLayout } from '@/components/layouts/DefaultLayout' import SettingsLayout from '@/components/layouts/ProjectSettingsLayout/SettingsLayout' import { DisableInteraction } from '@/components/ui/DisableInteraction' +import { DocsButton } from '@/components/ui/DocsButton' import { useAPIKeysQuery } from '@/data/api-keys/api-keys-query' import { useAsyncCheckPermissions } from '@/hooks/misc/useCheckPermissions' +import { useDeploymentMode } from '@/hooks/misc/useDeploymentMode' +import { DOCS_URL } from '@/lib/constants' import type { NextPageWithLayout } from '@/types' const ApiKeysNewPage: NextPageWithLayout = () => { const { ref: projectRef } = useParams() + const { isCli, isSelfHosted } = useDeploymentMode() const { can: canReadAPIKeys } = useAsyncCheckPermissions(PermissionAction.SECRETS_READ, '*') const { data: apiKeysData = [] } = useAPIKeysQuery( { @@ -34,6 +39,43 @@ const ApiKeysNewPage: NextPageWithLayout = () => { ) const hasNewApiKeys = newApiKeys.length > 0 + if (!IS_PLATFORM) { + return ( +
+ {isCli && ( + + The API keys are automatically managed by the Supabase CLI and are not manually + configurable. +

+ } + actions={} + /> + )} + {isSelfHosted && ( + + SUPABASE_PUBLISHABLE_KEY and{' '} + SUPABASE_SECRET_KEY are set via + environment variables. +

+ } + actions={} + /> + )} + + + +
+ ) + } + return ( <> {canReadAPIKeys && !hasNewApiKeys && } diff --git a/apps/studio/pages/project/[ref]/settings/api-keys/legacy.tsx b/apps/studio/pages/project/[ref]/settings/api-keys/legacy.tsx index 5e2d5c7885be0..0cc6bf6cd699a 100644 --- a/apps/studio/pages/project/[ref]/settings/api-keys/legacy.tsx +++ b/apps/studio/pages/project/[ref]/settings/api-keys/legacy.tsx @@ -1,3 +1,5 @@ +import { IS_PLATFORM } from 'common' + import ApiKeysLayout from '@/components/layouts/APIKeys/APIKeysLayout' import DefaultLayout from '@/components/layouts/DefaultLayout' import SettingsLayout from '@/components/layouts/ProjectSettingsLayout/SettingsLayout' @@ -9,7 +11,7 @@ const ApiKeysLegacyPage: NextPageWithLayout = () => { return ( <> - + {IS_PLATFORM && } ) } diff --git a/apps/studio/pages/project/[ref]/settings/general.tsx b/apps/studio/pages/project/[ref]/settings/general.tsx index a61ef128e55d8..381cd1ecfe312 100644 --- a/apps/studio/pages/project/[ref]/settings/general.tsx +++ b/apps/studio/pages/project/[ref]/settings/general.tsx @@ -1,6 +1,4 @@ import { IS_PLATFORM } from 'common' -import { useRouter } from 'next/router' -import { useEffect } from 'react' import { PageContainer } from 'ui-patterns/PageContainer' import { PageHeader, @@ -32,15 +30,11 @@ const ProjectSettings: NextPageWithLayout = () => { const isBranch = !!project?.parent_project_ref const { projectsTransfer: projectTransferEnabled, projectSettingsCustomDomains } = useIsFeatureEnabled(['projects:transfer', 'project_settings:custom_domains']) - const router = useRouter() - useEffect(() => { - if (!IS_PLATFORM) { - router.push(`/project/default/settings/log-drains`) - } - }, [router]) - - const { data: subscription } = useOrgSubscriptionQuery({ orgSlug: selectedOrganization?.slug }) + const { data: subscription } = useOrgSubscriptionQuery( + { orgSlug: selectedOrganization?.slug }, + { enabled: IS_PLATFORM } + ) const hasHipaaAddon = subscriptionHasHipaaAddon(subscription) return ( @@ -57,12 +51,16 @@ const ProjectSettings: NextPageWithLayout = () => { - - {/* this is only settable on compliance orgs, currently that means HIPAA orgs */} - {!isBranch && hasHipaaAddon && } - {projectSettingsCustomDomains && } - {!isBranch && projectTransferEnabled && } - {!isBranch && } + {IS_PLATFORM && ( + <> + + {/* this is only settable on compliance orgs, currently that means HIPAA orgs */} + {!isBranch && hasHipaaAddon && } + {projectSettingsCustomDomains && } + {!isBranch && projectTransferEnabled && } + {!isBranch && } + + )} ) diff --git a/apps/studio/pages/project/[ref]/settings/jwt/index.tsx b/apps/studio/pages/project/[ref]/settings/jwt/index.tsx index 724f9217660f5..7161166db7101 100644 --- a/apps/studio/pages/project/[ref]/settings/jwt/index.tsx +++ b/apps/studio/pages/project/[ref]/settings/jwt/index.tsx @@ -1,20 +1,56 @@ import { PermissionAction } from '@supabase/shared-types/out/constants' +import { IS_PLATFORM } from 'common' import { GenericSkeletonLoader } from 'ui-patterns/ShimmeringLoader' import { JWTSecretKeysTable } from '@/components/interfaces/JwtSecrets/jwt-secret-keys-table' import DefaultLayout from '@/components/layouts/DefaultLayout' import JWTKeysLayout from '@/components/layouts/JWTKeys/JWTKeysLayout' import SettingsLayout from '@/components/layouts/ProjectSettingsLayout/SettingsLayout' +import { LocalSetupGuide } from '@/components/ui/LocalSetupGuide' import NoPermission from '@/components/ui/NoPermission' import { useAsyncCheckPermissions } from '@/hooks/misc/useCheckPermissions' +import { useDeploymentMode } from '@/hooks/misc/useDeploymentMode' +import { DOCS_URL } from '@/lib/constants' import type { NextPageWithLayout } from '@/types' const JWTSigningKeysPage: NextPageWithLayout = () => { + const { isCli, isSelfHosted } = useDeploymentMode() const { can: canReadAPIKeys, isSuccess: isPermissionsLoaded } = useAsyncCheckPermissions( PermissionAction.READ, 'auth_signing_keys' ) + if (!IS_PLATFORM) { + return ( +
+ {isCli && ( + + The asymmetric key pair used to sign user session JWTs is configured by the Supabase + CLI. +

+ } + docsHref={`${DOCS_URL}/guides/local-development`} + /> + )} + {isSelfHosted && ( + + The asymmetric key pair used to sign user session JWTs is configured via environment + variables. +

+ } + docsHref={`${DOCS_URL}/guides/self-hosting/self-hosted-auth-keys`} + /> + )} +
+ ) + } + return ( <> {!isPermissionsLoaded ? ( diff --git a/apps/studio/tests/components/Organization/TeamSettings/InviteMemberButton.network.test.tsx b/apps/studio/tests/components/Organization/TeamSettings/InviteMemberButton.network.test.tsx new file mode 100644 index 0000000000000..c8138d6dc595e --- /dev/null +++ b/apps/studio/tests/components/Organization/TeamSettings/InviteMemberButton.network.test.tsx @@ -0,0 +1,261 @@ +import { fireEvent, screen, waitFor } from '@testing-library/react' +import userEvent from '@testing-library/user-event' +import { platformComponents as components } from 'api-types' +import { HttpResponse } from 'msw' +import { beforeEach, describe, expect, test, vi } from 'vitest' + +import { InviteMemberButton } from '@/components/interfaces/Organization/TeamSettings/InviteMemberButton' +import type { ProfileContextType } from '@/lib/profile' +import { createMockOrganizationResponse } from '@/tests/helpers' +import { customRender } from '@/tests/lib/custom-render' +import { addAPIMock, type APIErrorBody } from '@/tests/lib/msw' + +type OrganizationResponse = components['schemas']['OrganizationResponse'] +type Member = components['schemas']['Member'] +type InvitationResponse = components['schemas']['InvitationResponse'] +type OrganizationRoleResponse = components['schemas']['OrganizationRoleResponse'] +type ListEntitlementsResponse = components['schemas']['ListEntitlementsResponse'] +type CreateInvitationResponse = components['schemas']['CreateInvitationResponse'] +type AccessControlPermission = components['schemas']['AccessControlPermission'] + +const ORG_SLUG = 'test-org' + +const ROLE_IDS = { owner: 1, administrator: 2, developer: 3, readOnly: 4 } as const + +vi.mock('common', async (importOriginal) => { + const actual = (await importOriginal()) as typeof import('common') + return { + ...actual, + useParams: () => ({ slug: ORG_SLUG }), + useIsLoggedIn: () => true, + } +}) + +vi.mock('@/lib/constants', async (importOriginal) => { + const actual = await importOriginal>() + return { ...actual, IS_PLATFORM: true } +}) + +const PROFILE_CONTEXT: ProfileContextType = { + profile: { + id: 1, + auth0_id: 'auth0|test', + gotrue_id: 'gotrue-test', + username: 'testuser', + primary_email: 'me@example.com', + first_name: null, + last_name: null, + mobile: null, + is_alpha_user: false, + is_sso_user: false, + disabled_features: [], + free_project_limit: null, + }, + error: null, + isLoading: false, + isError: false, + isSuccess: true, +} + +const buildRole = (id: number, name: string): OrganizationRoleResponse['org_scoped_roles'][0] => ({ + id, + name, + base_role_id: id, + description: null, + projects: [], +}) + +const buildMember = (overrides: Partial): Member => ({ + gotrue_id: 'gotrue-test', + is_sso_user: false, + metadata: {}, + mfa_enabled: false, + primary_email: 'me@example.com', + role_ids: [ROLE_IDS.developer], + username: 'testuser', + ...overrides, +}) + +const buildPermission = (resource: string): AccessControlPermission => ({ + actions: ['write:Create', 'write:Delete'], + condition: null, + organization_id: 1, + organization_slug: ORG_SLUG, + project_ids: [], + project_refs: [], + resources: [resource], + restrictive: false, +}) + +function setupMocks(members: Member[] = [buildMember({})]) { + const invitePayloads: unknown[] = [] + + addAPIMock({ + method: 'get', + path: '/platform/organizations', + response: () => + HttpResponse.json([ + createMockOrganizationResponse({ id: 1, slug: ORG_SLUG, name: 'Test Org' }), + ]), + }) + + addAPIMock({ + method: 'get', + path: '/platform/profile/permissions', + response: () => + HttpResponse.json([ + buildPermission('user_invites'), + buildPermission('auth.subject_roles'), + ]), + }) + + addAPIMock({ + method: 'get', + path: '/platform/organizations/:slug/members', + response: () => HttpResponse.json(members), + }) + + addAPIMock({ + method: 'get', + path: '/platform/organizations/:slug/members/invitations', + response: () => HttpResponse.json({ invitations: [] }), + }) + + addAPIMock({ + method: 'get', + path: '/platform/organizations/:slug/roles', + response: () => + HttpResponse.json({ + org_scoped_roles: [ + buildRole(ROLE_IDS.owner, 'Owner'), + buildRole(ROLE_IDS.administrator, 'Administrator'), + buildRole(ROLE_IDS.developer, 'Developer'), + buildRole(ROLE_IDS.readOnly, 'Read-only'), + ], + // Unused by this component's org-scoped flow, but required by the schema + project_scoped_roles: [], + }), + }) + + // 404 with this message is how the query layer detects "no SSO provider" and + // resolves the config to null (see getOrgSSOConfig). + addAPIMock({ + method: 'get', + path: '/platform/organizations/:slug/sso', + response: () => + HttpResponse.json( + { message: 'Failed to find an existing SSO Provider' }, + { status: 404 } + ), + }) + + addAPIMock({ + method: 'get', + path: '/platform/organizations/:slug/entitlements', + response: () => HttpResponse.json({ entitlements: [] }), + }) + + addAPIMock({ + method: 'post', + path: '/platform/organizations/:slug/members/invitations', + response: async ({ request }) => { + invitePayloads.push(await request.json()) + return HttpResponse.json({ + succeeded: ['new@example.com'], + failed: [], + }) + }, + }) + + return { invitePayloads } +} + +async function openDialog() { + await waitFor(() => expect(screen.getByRole('button', { name: /invite members/i })).toBeEnabled()) + await userEvent.click(screen.getByRole('button', { name: /invite members/i })) + return screen.findByRole('dialog') +} + +describe('InviteMemberButton (network)', () => { + beforeEach(() => { + vi.clearAllMocks() + }) + + test('renders each role with its permission description and a roles docs link', async () => { + setupMocks() + customRender(, { profileContext: PROFILE_CONTEXT }) + await openDialog() + + // Every role is rendered as a selectable card + expect(await screen.findByText('Administrator')).toBeInTheDocument() + expect(screen.getByText('Owner')).toBeInTheDocument() + expect(screen.getByText('Developer')).toBeInTheDocument() + expect(screen.getByText('Read-only')).toBeInTheDocument() + + // The key safety message from the ticket: Administrator can delete projects + expect(screen.getByText(/including deleting projects/i)).toBeInTheDocument() + + // Roles documentation is one click away (the ticket's other complaint) + const docsLink = screen.getByRole('link', { name: /roles and permissions/i }) + expect(docsLink).toHaveAttribute( + 'href', + expect.stringContaining('/guides/platform/access-control') + ) + }) + + test('sends emails and the default Developer role_id in the request body', async () => { + const { invitePayloads } = setupMocks() + customRender(, { profileContext: PROFILE_CONTEXT }) + await openDialog() + await screen.findByText('Developer') + + fireEvent.change(screen.getByPlaceholderText(/name@example\.com/i), { + target: { value: 'new@example.com' }, + }) + fireEvent.click(screen.getByRole('button', { name: /send invitation/i })) + + await waitFor(() => expect(invitePayloads).toHaveLength(1)) + expect(invitePayloads[0]).toEqual({ + emails: ['new@example.com'], + role_id: ROLE_IDS.developer, + }) + }) + + test('sends the selected role_id when a different role is chosen', async () => { + const { invitePayloads } = setupMocks() + customRender(, { profileContext: PROFILE_CONTEXT }) + await openDialog() + + // Select the Administrator card via the new RadioGroupStacked + await userEvent.click(await screen.findByText('Administrator')) + + fireEvent.change(screen.getByPlaceholderText(/name@example\.com/i), { + target: { value: 'admin@example.com' }, + }) + fireEvent.click(screen.getByRole('button', { name: /send invitation/i })) + + await waitFor(() => expect(invitePayloads).toHaveLength(1)) + expect(invitePayloads[0]).toEqual({ + emails: ['admin@example.com'], + role_id: ROLE_IDS.administrator, + }) + }) + + test('lowercases and de-duplicates emails before sending', async () => { + const { invitePayloads } = setupMocks() + customRender(, { profileContext: PROFILE_CONTEXT }) + await openDialog() + await screen.findByText('Developer') + + fireEvent.change(screen.getByPlaceholderText(/name@example\.com/i), { + target: { value: 'New@Example.COM, new@example.com, second@example.com' }, + }) + fireEvent.click(screen.getByRole('button', { name: /send invitation/i })) + + await waitFor(() => expect(invitePayloads).toHaveLength(1)) + expect(invitePayloads[0]).toEqual({ + emails: ['new@example.com', 'second@example.com'], + role_id: ROLE_IDS.developer, + }) + }) +}) diff --git a/apps/studio/tests/components/Organization/TeamSettings/InviteMemberButton.test.tsx b/apps/studio/tests/components/Organization/TeamSettings/InviteMemberButton.test.tsx index 2420b822bef62..3706aeea3a4d0 100644 --- a/apps/studio/tests/components/Organization/TeamSettings/InviteMemberButton.test.tsx +++ b/apps/studio/tests/components/Organization/TeamSettings/InviteMemberButton.test.tsx @@ -53,7 +53,12 @@ vi.mock('@/data/organizations/organization-members-query', () => ({ })) const mockRoles = { - org_scoped_roles: [{ id: 1, name: 'Developer', description: null }], + org_scoped_roles: [ + { id: 4, name: 'Owner', description: null }, + { id: 3, name: 'Administrator', description: null }, + { id: 1, name: 'Developer', description: null }, + { id: 2, name: 'Read-only', description: null }, + ], } vi.mock('@/data/organization-members/organization-roles-query', () => ({ useOrganizationRolesV2Query: () => ({ data: mockRoles, isSuccess: true }), @@ -72,7 +77,10 @@ vi.mock('@/hooks/misc/useCheckEntitlements', () => ({ })) vi.mock('@/components/interfaces/Organization/TeamSettings/TeamSettings.utils', () => ({ - useGetRolesManagementPermissions: () => ({ rolesAddable: [1], rolesRemovable: [1] }), + useGetRolesManagementPermissions: () => ({ + rolesAddable: [1, 2, 3, 4], + rolesRemovable: [1, 2, 3, 4], + }), })) const mockInvite = vi.fn().mockResolvedValue({ succeeded: [], failed: [] }) @@ -126,6 +134,37 @@ describe('InviteMemberButton', () => { expect(screen.getByText('Invite team members')).toBeInTheDocument() }) + it('renders a stacked radio option with permission guidance for each role', async () => { + customRender() + await openDialog() + + expect(screen.getAllByRole('radio')).toHaveLength(4) + expect(screen.getByRole('link', { name: 'roles and permissions' })).toHaveAttribute( + 'href', + 'https://supabase.com/docs/guides/platform/access-control' + ) + expect( + screen.getByText( + 'Full access, including deleting the organization and transferring or deleting projects.' + ) + ).toBeInTheDocument() + expect( + screen.getByText( + 'Manage members, billing, and project settings, including deleting projects. Cannot manage organization settings or owners.' + ) + ).toBeInTheDocument() + expect( + screen.getByText( + 'Manage project content, including deleting data, users, files, and Edge Functions. Cannot change settings or delete projects.' + ) + ).toBeInTheDocument() + expect( + screen.getByText( + 'View resources without modifying or deleting them. SQL Editor access is limited to SELECT queries.' + ) + ).toBeInTheDocument() + }) + it('calls the mutation with a single email in an array', async () => { customRender() await submitForm('new@example.com') diff --git a/apps/studio/tests/pages/project/[ref]/index.test.tsx b/apps/studio/tests/pages/project/[ref]/index.test.tsx index 795489ab77932..26e5bfd32b0f2 100644 --- a/apps/studio/tests/pages/project/[ref]/index.test.tsx +++ b/apps/studio/tests/pages/project/[ref]/index.test.tsx @@ -1,12 +1,8 @@ import { screen } from '@testing-library/react' -import { beforeAll, describe, expect, test, vi } from 'vitest' +import { describe, expect, test, vi } from 'vitest' import { customRender as render } from '@/tests/lib/custom-render' -vi.mock('@/components/interfaces/Home/Home', () => ({ - Home: () =>
, -})) - vi.mock('@/components/interfaces/ProjectHome/Home', () => ({ ProjectHome: () =>
, })) @@ -23,35 +19,10 @@ vi.mock('@/lib/gotrue', () => ({ auth: { onAuthStateChange: vi.fn() }, })) -describe('when IS_PLATFORM is true', () => { - beforeAll(() => { - vi.doMock('common', async (importOriginal: () => Promise) => { - const mod = await importOriginal() - return { ...mod, IS_PLATFORM: true } - }) - }) - +describe('project home page', () => { test('renders ProjectHome', async () => { const { default: HomePage } = await import('@/pages/project/[ref]/index') render() expect(screen.getByTestId('project-home')).toBeInTheDocument() - expect(screen.queryByTestId('old-home')).not.toBeInTheDocument() - }) -}) - -describe('when IS_PLATFORM is false', () => { - beforeAll(() => { - vi.resetModules() - vi.doMock('common', async (importOriginal: () => Promise) => { - const mod = await importOriginal() - return { ...mod, IS_PLATFORM: false } - }) - }) - - test('renders Home', async () => { - const { default: HomePage } = await import('@/pages/project/[ref]/index') - render() - expect(screen.getByTestId('old-home')).toBeInTheDocument() - expect(screen.queryByTestId('project-home')).not.toBeInTheDocument() }) }) diff --git a/apps/studio/tests/pages/project/[ref]/settings/api-keys/index.test.tsx b/apps/studio/tests/pages/project/[ref]/settings/api-keys/index.test.tsx new file mode 100644 index 0000000000000..54cc1449d440e --- /dev/null +++ b/apps/studio/tests/pages/project/[ref]/settings/api-keys/index.test.tsx @@ -0,0 +1,139 @@ +import { render, screen } from '@testing-library/react' +import type { ReactNode } from 'react' +import { beforeEach, describe, expect, it, vi } from 'vitest' + +import ApiKeysPage from '@/pages/project/[ref]/settings/api-keys/index' + +const { mockIsPlatform, mockUseAsyncCheckPermissions, mockUseAPIKeysQuery, mockUseDeploymentMode } = + vi.hoisted(() => ({ + mockIsPlatform: { value: true }, + mockUseAsyncCheckPermissions: vi.fn(), + mockUseAPIKeysQuery: vi.fn(), + mockUseDeploymentMode: vi.fn(), + })) + +vi.mock('common', async () => { + const actual = await vi.importActual>('common') + return { + ...actual, + get IS_PLATFORM() { + return mockIsPlatform.value + }, + useParams: () => ({ ref: 'project-ref' }), + } +}) + +vi.mock('@/hooks/misc/useCheckPermissions', () => ({ + useAsyncCheckPermissions: mockUseAsyncCheckPermissions, +})) + +vi.mock('@/data/api-keys/api-keys-query', () => ({ + useAPIKeysQuery: mockUseAPIKeysQuery, +})) + +vi.mock('@/hooks/misc/useDeploymentMode', () => ({ + useDeploymentMode: mockUseDeploymentMode, +})) + +vi.mock('@/components/layouts/DefaultLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/layouts/ProjectSettingsLayout/SettingsLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/layouts/APIKeys/APIKeysLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/interfaces/APIKeys/ApiKeysIllustrations', () => ({ + ApiKeysCreateCallout: () =>
ApiKeysCreateCallout
, + ApiKeysFeedbackBanner: () =>
ApiKeysFeedbackBanner
, +})) + +vi.mock('@/components/interfaces/APIKeys/PublishableAPIKeys', () => ({ + PublishableAPIKeys: () =>
PublishableAPIKeys
, +})) + +vi.mock('@/components/interfaces/APIKeys/SecretAPIKeys', () => ({ + SecretAPIKeys: () =>
SecretAPIKeys
, +})) + +vi.mock('@/components/ui/DisableInteraction', () => ({ + DisableInteraction: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +describe('/project/[ref]/settings/api-keys', () => { + beforeEach(() => { + mockIsPlatform.value = true + mockUseAsyncCheckPermissions.mockReturnValue({ can: true, isLoading: false }) + mockUseDeploymentMode.mockReturnValue({ + isPlatform: true, + isCli: false, + isSelfHosted: false, + }) + mockUseAPIKeysQuery.mockReturnValue({ + data: [{ type: 'publishable' }, { type: 'secret' }], + }) + }) + + it('renders publishable and secret keys with the feedback banner on platform when keys exist', () => { + render() + + expect(screen.getByText('PublishableAPIKeys')).toBeInTheDocument() + expect(screen.getByText('SecretAPIKeys')).toBeInTheDocument() + expect(screen.getByText('ApiKeysFeedbackBanner')).toBeInTheDocument() + expect(screen.queryByText('ApiKeysCreateCallout')).not.toBeInTheDocument() + expect(screen.queryByText(/Local development with the Supabase CLI/i)).not.toBeInTheDocument() + expect(screen.queryByText(/Self-hosted Supabase/i)).not.toBeInTheDocument() + }) + + it('renders the create callout on platform when no new keys exist', () => { + mockUseAPIKeysQuery.mockReturnValue({ data: [] }) + + render() + + expect(screen.getByText('ApiKeysCreateCallout')).toBeInTheDocument() + expect(screen.queryByText('ApiKeysFeedbackBanner')).not.toBeInTheDocument() + }) + + it('renders the CLI admonition above the keys on self-hosted (CLI mode)', () => { + mockIsPlatform.value = false + mockUseDeploymentMode.mockReturnValue({ + isPlatform: false, + isCli: true, + isSelfHosted: false, + }) + + render() + + expect(screen.getByText(/Local development with the Supabase CLI/i)).toBeInTheDocument() + expect(screen.queryByText(/Self-hosted Supabase/i)).not.toBeInTheDocument() + expect(screen.getByText('PublishableAPIKeys')).toBeInTheDocument() + expect(screen.getByText('SecretAPIKeys')).toBeInTheDocument() + expect(screen.queryByText('ApiKeysCreateCallout')).not.toBeInTheDocument() + expect(screen.queryByText('ApiKeysFeedbackBanner')).not.toBeInTheDocument() + }) + + it('renders the self-hosted admonition above the keys on self-hosted (Docker mode)', () => { + mockIsPlatform.value = false + mockUseDeploymentMode.mockReturnValue({ + isPlatform: false, + isCli: false, + isSelfHosted: true, + }) + + render() + + expect(screen.getByText(/Self-hosted Supabase/i)).toBeInTheDocument() + expect(screen.queryByText(/Local development with the Supabase CLI/i)).not.toBeInTheDocument() + expect(screen.getByText('PublishableAPIKeys')).toBeInTheDocument() + expect(screen.getByText('SecretAPIKeys')).toBeInTheDocument() + expect(screen.queryByText('ApiKeysCreateCallout')).not.toBeInTheDocument() + expect(screen.queryByText('ApiKeysFeedbackBanner')).not.toBeInTheDocument() + }) +}) diff --git a/apps/studio/tests/pages/project/[ref]/settings/api-keys/legacy.test.tsx b/apps/studio/tests/pages/project/[ref]/settings/api-keys/legacy.test.tsx new file mode 100644 index 0000000000000..cc6fa7683d807 --- /dev/null +++ b/apps/studio/tests/pages/project/[ref]/settings/api-keys/legacy.test.tsx @@ -0,0 +1,64 @@ +import { render, screen } from '@testing-library/react' +import type { ReactNode } from 'react' +import { beforeEach, describe, expect, it, vi } from 'vitest' + +import ApiKeysLegacyPage from '@/pages/project/[ref]/settings/api-keys/legacy' + +const { mockIsPlatform } = vi.hoisted(() => ({ + mockIsPlatform: { value: true }, +})) + +vi.mock('common', async () => { + const actual = await vi.importActual>('common') + return { + ...actual, + get IS_PLATFORM() { + return mockIsPlatform.value + }, + } +}) + +vi.mock('@/components/layouts/DefaultLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/layouts/ProjectSettingsLayout/SettingsLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/layouts/APIKeys/APIKeysLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/ui/ProjectSettings/DisplayApiSettings', () => ({ + DisplayApiSettings: () =>
DisplayApiSettings
, +})) + +vi.mock('@/components/ui/ProjectSettings/ToggleLegacyApiKeys', () => ({ + ToggleLegacyApiKeysPanel: () =>
ToggleLegacyApiKeysPanel
, +})) + +describe('/project/[ref]/settings/api-keys/legacy', () => { + beforeEach(() => { + mockIsPlatform.value = true + }) + + it('renders both legacy keys and the disable toggle on platform', () => { + render() + + expect(screen.getByText('DisplayApiSettings')).toBeInTheDocument() + expect(screen.getByText('ToggleLegacyApiKeysPanel')).toBeInTheDocument() + }) + + it('renders legacy keys but hides the disable toggle on self-hosted', () => { + mockIsPlatform.value = false + + render() + + expect(screen.getByText('DisplayApiSettings')).toBeInTheDocument() + expect(screen.queryByText('ToggleLegacyApiKeysPanel')).not.toBeInTheDocument() + }) +}) diff --git a/apps/studio/tests/pages/project/[ref]/settings/jwt/index.test.tsx b/apps/studio/tests/pages/project/[ref]/settings/jwt/index.test.tsx new file mode 100644 index 0000000000000..8bffb73aab142 --- /dev/null +++ b/apps/studio/tests/pages/project/[ref]/settings/jwt/index.test.tsx @@ -0,0 +1,99 @@ +import { render, screen } from '@testing-library/react' +import type { ReactNode } from 'react' +import { beforeEach, describe, expect, it, vi } from 'vitest' + +import JWTSigningKeysPage from '@/pages/project/[ref]/settings/jwt/index' + +const { mockIsPlatform, mockUseAsyncCheckPermissions, mockUseDeploymentMode } = vi.hoisted(() => ({ + mockIsPlatform: { value: true }, + mockUseAsyncCheckPermissions: vi.fn(), + mockUseDeploymentMode: vi.fn(), +})) + +vi.mock('common', async () => { + const actual = await vi.importActual>('common') + return { + ...actual, + get IS_PLATFORM() { + return mockIsPlatform.value + }, + } +}) + +vi.mock('@/hooks/misc/useCheckPermissions', () => ({ + useAsyncCheckPermissions: mockUseAsyncCheckPermissions, +})) + +vi.mock('@/hooks/misc/useDeploymentMode', () => ({ + useDeploymentMode: mockUseDeploymentMode, +})) + +vi.mock('@/components/layouts/DefaultLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/layouts/ProjectSettingsLayout/SettingsLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/layouts/JWTKeys/JWTKeysLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/interfaces/JwtSecrets/jwt-secret-keys-table', () => ({ + JWTSecretKeysTable: () =>
JWTSecretKeysTable
, +})) + +vi.mock('@/components/ui/LocalSetupGuide', () => ({ + LocalSetupGuide: () =>
LocalSetupGuide
, +})) + +describe('/project/[ref]/settings/jwt', () => { + beforeEach(() => { + mockIsPlatform.value = true + mockUseAsyncCheckPermissions.mockReturnValue({ can: true, isSuccess: true }) + mockUseDeploymentMode.mockReturnValue({ + isPlatform: true, + isCli: false, + isSelfHosted: false, + }) + }) + + it('renders the JWT signing keys table on platform', () => { + render() + + expect(screen.getByText('JWTSecretKeysTable')).toBeInTheDocument() + expect(screen.queryByText('LocalSetupGuide')).not.toBeInTheDocument() + }) + + it('renders only the CLI LocalSetupGuide on self-hosted (CLI mode)', () => { + mockIsPlatform.value = false + mockUseDeploymentMode.mockReturnValue({ + isPlatform: false, + isCli: true, + isSelfHosted: false, + }) + + render() + + expect(screen.queryByText('JWTSecretKeysTable')).not.toBeInTheDocument() + expect(screen.getAllByText('LocalSetupGuide')).toHaveLength(1) + }) + + it('renders only the self-hosted LocalSetupGuide on self-hosted (Docker mode)', () => { + mockIsPlatform.value = false + mockUseDeploymentMode.mockReturnValue({ + isPlatform: false, + isCli: false, + isSelfHosted: true, + }) + + render() + + expect(screen.queryByText('JWTSecretKeysTable')).not.toBeInTheDocument() + expect(screen.getAllByText('LocalSetupGuide')).toHaveLength(1) + }) +}) diff --git a/apps/studio/tests/pages/project/[ref]/settings/jwt/legacy.test.tsx b/apps/studio/tests/pages/project/[ref]/settings/jwt/legacy.test.tsx new file mode 100644 index 0000000000000..ea67c0b36aeda --- /dev/null +++ b/apps/studio/tests/pages/project/[ref]/settings/jwt/legacy.test.tsx @@ -0,0 +1,74 @@ +import { screen } from '@testing-library/react' +import type { ReactNode } from 'react' +import { beforeEach, describe, expect, it, vi } from 'vitest' + +import JWTKeysLegacyPage from '@/pages/project/[ref]/settings/jwt/legacy' +import { customRender as render } from '@/tests/lib/custom-render' + +const { mockIsPlatform, mockUseIsFeatureEnabled, mockUseJwtSecretUpdatingStatusQuery } = vi.hoisted( + () => ({ + mockIsPlatform: { value: true }, + mockUseIsFeatureEnabled: vi.fn(), + mockUseJwtSecretUpdatingStatusQuery: vi.fn(), + }) +) + +vi.mock('common', async () => { + const actual = await vi.importActual>('common') + return { + ...actual, + get IS_PLATFORM() { + return mockIsPlatform.value + }, + useParams: () => ({ ref: 'project-ref' }), + } +}) + +vi.mock('@/hooks/misc/useIsFeatureEnabled', () => ({ + useIsFeatureEnabled: mockUseIsFeatureEnabled, +})) + +vi.mock('@/data/config/jwt-secret-updating-status-query', () => ({ + useJwtSecretUpdatingStatusQuery: mockUseJwtSecretUpdatingStatusQuery, +})) + +vi.mock('@/components/layouts/DefaultLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/layouts/ProjectSettingsLayout/SettingsLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/layouts/JWTKeys/JWTKeysLayout', () => ({ + __esModule: true, + default: ({ children }: { children: ReactNode }) =>
{children}
, +})) + +vi.mock('@/components/interfaces/JwtSecrets/jwt-settings', () => ({ + JWTSettings: () =>
JWTSettings
, +})) + +describe('/project/[ref]/settings/jwt/legacy', () => { + beforeEach(() => { + mockIsPlatform.value = true + mockUseIsFeatureEnabled.mockReturnValue({ projectSettingsLegacyJwtKeys: true }) + mockUseJwtSecretUpdatingStatusQuery.mockReturnValue({ data: undefined }) + }) + + it('renders the JWT settings on platform', () => { + render() + + expect(screen.getByText('JWTSettings')).toBeInTheDocument() + }) + + it('renders the JWT settings on self-hosted', () => { + mockIsPlatform.value = false + + render() + + expect(screen.getByText('JWTSettings')).toBeInTheDocument() + }) +}) diff --git a/apps/ui-library/public/r/infinite-query-hook.json b/apps/ui-library/public/r/infinite-query-hook.json index bd4c59f49760b..b1558bdf7aff0 100644 --- a/apps/ui-library/public/r/infinite-query-hook.json +++ b/apps/ui-library/public/r/infinite-query-hook.json @@ -12,8 +12,8 @@ "files": [ { "path": "registry/default/blocks/infinite-query-hook/hooks/use-infinite-query.ts", - "content": "'use client'\n\nimport { PostgrestQueryBuilder, type PostgrestClientOptions } from '@supabase/postgrest-js'\nimport { type SupabaseClient } from '@supabase/supabase-js'\nimport { useEffect, useRef, useSyncExternalStore } from 'react'\n\nimport { createClient } from '@/registry/default/fixtures/lib/supabase/client'\n\nconst supabase = createClient()\n\n// The following types are used to make the hook type-safe. It extracts the database type from the supabase client.\ntype SupabaseClientType = typeof supabase\n\n// Utility type to check if the type is any\ntype IfAny = 0 extends 1 & T ? Y : N\n\n// Extracts the database type from the supabase client. If the supabase client doesn't have a type, it will fallback properly.\ntype Database =\n SupabaseClientType extends SupabaseClient\n ? IfAny<\n U,\n {\n public: {\n Tables: Record\n Views: Record\n Functions: Record\n }\n },\n U\n >\n : {\n public: {\n Tables: Record\n Views: Record\n Functions: Record\n }\n }\n\n// Change this to the database schema you want to use\ntype DatabaseSchema = Database['public']\n\n// Extracts the table names from the database type\ntype SupabaseTableName = keyof DatabaseSchema['Tables']\n\n// Extracts the table definition from the database type\ntype SupabaseTableData = DatabaseSchema['Tables'][T]['Row']\n\n// Default client options for PostgrestQueryBuilder\ntype DefaultClientOptions = PostgrestClientOptions\n\ntype SupabaseSelectBuilder = ReturnType<\n PostgrestQueryBuilder<\n DefaultClientOptions,\n DatabaseSchema,\n DatabaseSchema['Tables'][T],\n T\n >['select']\n>\n\n// A function that modifies the query. Can be used to sort, filter, etc. If .range is used, it will be overwritten.\ntype SupabaseQueryHandler = (\n query: SupabaseSelectBuilder\n) => SupabaseSelectBuilder\n\ninterface UseInfiniteQueryProps {\n // The table name to query\n tableName: T\n // The columns to select, defaults to `*`\n columns?: string\n // The number of items to fetch per page, defaults to `20`\n pageSize?: number\n // A function that modifies the query. Can be used to sort, filter, etc. If .range is used, it will be overwritten.\n trailingQuery?: SupabaseQueryHandler\n}\n\ninterface StoreState {\n data: TData[]\n count: number\n isSuccess: boolean\n isLoading: boolean\n isFetching: boolean\n error: Error | null\n hasInitialFetch: boolean\n}\n\ntype Listener = () => void\n\nfunction createStore, T extends SupabaseTableName>(\n props: UseInfiniteQueryProps\n) {\n const { tableName, columns = '*', pageSize = 20, trailingQuery } = props\n\n let state: StoreState = {\n data: [],\n count: 0,\n isSuccess: false,\n isLoading: false,\n isFetching: false,\n error: null,\n hasInitialFetch: false,\n }\n\n const listeners = new Set()\n\n const notify = () => {\n listeners.forEach((listener) => listener())\n }\n\n const setState = (newState: Partial>) => {\n state = { ...state, ...newState }\n notify()\n }\n\n const fetchPage = async (skip: number) => {\n if (state.hasInitialFetch && (state.isFetching || state.count <= state.data.length)) return\n\n setState({ isFetching: true })\n\n let query = supabase\n .from(tableName)\n .select(columns, { count: 'exact' }) as unknown as SupabaseSelectBuilder\n\n if (trailingQuery) {\n query = trailingQuery(query)\n }\n const { data: newData, count, error } = await query.range(skip, skip + pageSize - 1)\n\n if (error) {\n console.error('An unexpected error occurred:', error)\n setState({ error })\n } else {\n setState({\n data: [...state.data, ...(newData as TData[])],\n count: count || 0,\n isSuccess: true,\n error: null,\n })\n }\n setState({ isFetching: false })\n }\n\n const fetchNextPage = async () => {\n if (state.isFetching) return\n await fetchPage(state.data.length)\n }\n\n const initialize = async () => {\n setState({ isLoading: true, isSuccess: false, data: [] })\n await fetchNextPage()\n setState({ isLoading: false, hasInitialFetch: true })\n }\n\n return {\n getState: () => state,\n subscribe: (listener: Listener) => {\n listeners.add(listener)\n return () => listeners.delete(listener)\n },\n fetchNextPage,\n initialize,\n }\n}\n\n// Empty initial state to avoid hydration errors.\nconst initialState: any = {\n data: [],\n count: 0,\n isSuccess: false,\n isLoading: false,\n isFetching: false,\n error: null,\n hasInitialFetch: false,\n}\n\nfunction useInfiniteQuery<\n TData extends SupabaseTableData,\n T extends SupabaseTableName = SupabaseTableName,\n>(props: UseInfiniteQueryProps) {\n const storeRef = useRef(createStore(props))\n\n const state = useSyncExternalStore(\n storeRef.current.subscribe,\n () => storeRef.current.getState(),\n () => initialState as StoreState\n )\n\n useEffect(() => {\n // Recreate store if props change\n if (\n storeRef.current.getState().hasInitialFetch &&\n (props.tableName !== props.tableName ||\n props.columns !== props.columns ||\n props.pageSize !== props.pageSize)\n ) {\n storeRef.current = createStore(props)\n }\n\n if (!state.hasInitialFetch && typeof window !== 'undefined') {\n storeRef.current.initialize()\n }\n }, [props.tableName, props.columns, props.pageSize, state.hasInitialFetch])\n\n return {\n data: state.data,\n count: state.count,\n isSuccess: state.isSuccess,\n isLoading: state.isLoading,\n isFetching: state.isFetching,\n error: state.error,\n hasMore: state.count > state.data.length,\n fetchNextPage: storeRef.current.fetchNextPage,\n }\n}\n\nexport {\n useInfiniteQuery,\n type SupabaseQueryHandler,\n type SupabaseTableData,\n type SupabaseTableName,\n type UseInfiniteQueryProps,\n}\n", + "content": "'use client'\n\nimport { PostgrestQueryBuilder, type PostgrestClientOptions } from '@supabase/postgrest-js'\nimport { type SupabaseClient } from '@supabase/supabase-js'\nimport { useEffect, useMemo, useRef, useSyncExternalStore } from 'react'\n\nimport { createClient } from '@/registry/default/fixtures/lib/supabase/client'\n\nconst supabase = createClient()\n\n// The following types are used to make the hook type-safe. It extracts the database type from the supabase client.\ntype SupabaseClientType = typeof supabase\n\n// Utility type to check if the type is any\ntype IfAny = 0 extends 1 & T ? Y : N\n\n// Extracts the database type from the supabase client. If the supabase client doesn't have a type, it will fallback properly.\ntype Database =\n SupabaseClientType extends SupabaseClient\n ? IfAny<\n U,\n {\n public: {\n Tables: Record\n Views: Record\n Functions: Record\n }\n },\n U\n >\n : {\n public: {\n Tables: Record\n Views: Record\n Functions: Record\n }\n }\n\n// Change this to the database schema you want to use\ntype DatabaseSchema = Database['public']\n\n// Extracts the table names from the database type\ntype SupabaseTableName = keyof DatabaseSchema['Tables']\n\n// Extracts the table definition from the database type\ntype SupabaseTableData = DatabaseSchema['Tables'][T]['Row']\n\n// Default client options for PostgrestQueryBuilder\ntype DefaultClientOptions = PostgrestClientOptions\n\ntype SupabaseSelectBuilder = ReturnType<\n PostgrestQueryBuilder<\n DefaultClientOptions,\n DatabaseSchema,\n DatabaseSchema['Tables'][T],\n T\n >['select']\n>\n\n// A function that modifies the query. Can be used to sort, filter, etc. If .range is used, it will be overwritten.\ntype SupabaseQueryHandler = (\n query: SupabaseSelectBuilder\n) => SupabaseSelectBuilder\n\ninterface UseInfiniteQueryProps {\n // The table name to query\n tableName: T\n // The columns to select, defaults to `*`\n columns?: string\n // The number of items to fetch per page, defaults to `20`\n pageSize?: number\n // A function that modifies the query. Can be used to sort, filter, etc. If .range is used, it will be overwritten.\n trailingQuery?: SupabaseQueryHandler\n // Optional key that identifies the current trailing query shape (e.g. filters/sort/search).\n // When this changes, the internal store is recreated so stale paginated rows are discarded.\n trailingQueryKey?: unknown\n}\n\ninterface StoreState {\n data: TData[]\n count: number\n isSuccess: boolean\n isLoading: boolean\n isFetching: boolean\n error: Error | null\n hasInitialFetch: boolean\n}\n\ntype Listener = () => void\n\ninterface StoreProps {\n tableName: T\n columns?: string\n pageSize?: number\n getTrailingQuery: () => SupabaseQueryHandler | undefined\n}\n\nfunction createStore, T extends SupabaseTableName>(\n props: StoreProps\n) {\n const { tableName, columns = '*', pageSize = 20, getTrailingQuery } = props\n\n let state: StoreState = {\n data: [],\n count: 0,\n isSuccess: false,\n isLoading: false,\n isFetching: false,\n error: null,\n hasInitialFetch: false,\n }\n\n const listeners = new Set()\n\n const notify = () => {\n listeners.forEach((listener) => listener())\n }\n\n const setState = (newState: Partial>) => {\n state = { ...state, ...newState }\n notify()\n }\n\n const fetchPage = async (skip: number) => {\n if (state.hasInitialFetch && (state.isFetching || state.count <= state.data.length)) return\n\n setState({ isFetching: true })\n\n let query = supabase\n .from(tableName)\n .select(columns, { count: 'exact' }) as unknown as SupabaseSelectBuilder\n\n const trailingQuery = getTrailingQuery()\n if (trailingQuery) {\n query = trailingQuery(query)\n }\n const { data: newData, count, error } = await query.range(skip, skip + pageSize - 1)\n\n if (error) {\n console.error('An unexpected error occurred:', error)\n setState({ error })\n } else {\n setState({\n data: [...state.data, ...(newData as TData[])],\n count: count || 0,\n isSuccess: true,\n error: null,\n })\n }\n setState({ isFetching: false })\n }\n\n const fetchNextPage = async () => {\n if (state.isFetching) return\n await fetchPage(state.data.length)\n }\n\n const initialize = async () => {\n setState({ isLoading: true, isSuccess: false, data: [] })\n await fetchNextPage()\n setState({ isLoading: false, hasInitialFetch: true })\n }\n\n return {\n getState: () => state,\n subscribe: (listener: Listener) => {\n listeners.add(listener)\n return () => listeners.delete(listener)\n },\n fetchNextPage,\n initialize,\n }\n}\n\n// Empty initial state to avoid hydration errors.\nconst initialState: any = {\n data: [],\n count: 0,\n isSuccess: false,\n isLoading: false,\n isFetching: false,\n error: null,\n hasInitialFetch: false,\n}\n\nfunction useInfiniteQuery<\n TData extends SupabaseTableData,\n T extends SupabaseTableName = SupabaseTableName,\n>(props: UseInfiniteQueryProps) {\n const tableName = props.tableName\n const columns = props.columns ?? '*'\n const pageSize = props.pageSize ?? 20\n const trailingQuery = props.trailingQuery\n const trailingQueryKey = props.trailingQueryKey\n const trailingQueryRef = useRef(trailingQuery)\n\n trailingQueryRef.current = trailingQuery\n\n const store = useMemo(\n () =>\n createStore({\n tableName,\n columns,\n pageSize,\n getTrailingQuery: () => trailingQueryRef.current,\n }),\n [tableName, columns, pageSize, trailingQueryKey]\n )\n\n const state = useSyncExternalStore(\n store.subscribe,\n () => store.getState(),\n () => initialState as StoreState\n )\n\n useEffect(() => {\n if (!state.hasInitialFetch && typeof window !== 'undefined') {\n store.initialize()\n }\n }, [state.hasInitialFetch, store])\n\n return {\n data: state.data,\n count: state.count,\n isSuccess: state.isSuccess,\n isLoading: state.isLoading,\n isFetching: state.isFetching,\n error: state.error,\n hasMore: state.count > state.data.length,\n fetchNextPage: store.fetchNextPage,\n }\n}\n\nexport {\n useInfiniteQuery,\n type SupabaseQueryHandler,\n type SupabaseTableData,\n type SupabaseTableName,\n type UseInfiniteQueryProps,\n}\n", "type": "registry:hook" } ] -} \ No newline at end of file +} diff --git a/apps/ui-library/registry/default/blocks/infinite-query-hook/hooks/use-infinite-query.ts b/apps/ui-library/registry/default/blocks/infinite-query-hook/hooks/use-infinite-query.ts index e06ea0ee97e72..1d83d3052bf4a 100644 --- a/apps/ui-library/registry/default/blocks/infinite-query-hook/hooks/use-infinite-query.ts +++ b/apps/ui-library/registry/default/blocks/infinite-query-hook/hooks/use-infinite-query.ts @@ -2,7 +2,7 @@ import { PostgrestQueryBuilder, type PostgrestClientOptions } from '@supabase/postgrest-js' import { type SupabaseClient } from '@supabase/supabase-js' -import { useEffect, useRef, useSyncExternalStore } from 'react' +import { useEffect, useMemo, useRef, useSyncExternalStore } from 'react' import { createClient } from '@/registry/default/fixtures/lib/supabase/client' @@ -71,6 +71,9 @@ interface UseInfiniteQueryProps + // Optional key that identifies the current trailing query shape (e.g. filters/sort/search). + // When this changes, the internal store is recreated so stale paginated rows are discarded. + trailingQueryKey?: unknown } interface StoreState { @@ -85,10 +88,17 @@ interface StoreState { type Listener = () => void +interface StoreProps { + tableName: T + columns?: string + pageSize?: number + getTrailingQuery: () => SupabaseQueryHandler | undefined +} + function createStore, T extends SupabaseTableName>( - props: UseInfiniteQueryProps + props: StoreProps ) { - const { tableName, columns = '*', pageSize = 20, trailingQuery } = props + const { tableName, columns = '*', pageSize = 20, getTrailingQuery } = props let state: StoreState = { data: [], @@ -120,6 +130,7 @@ function createStore, T extends SupabaseTable .from(tableName) .select(columns, { count: 'exact' }) as unknown as SupabaseSelectBuilder + const trailingQuery = getTrailingQuery() if (trailingQuery) { query = trailingQuery(query) } @@ -176,29 +187,37 @@ function useInfiniteQuery< TData extends SupabaseTableData, T extends SupabaseTableName = SupabaseTableName, >(props: UseInfiniteQueryProps) { - const storeRef = useRef(createStore(props)) + const tableName = props.tableName + const columns = props.columns ?? '*' + const pageSize = props.pageSize ?? 20 + const trailingQuery = props.trailingQuery + const trailingQueryKey = props.trailingQueryKey + const trailingQueryRef = useRef(trailingQuery) + + trailingQueryRef.current = trailingQuery + + const store = useMemo( + () => + createStore({ + tableName, + columns, + pageSize, + getTrailingQuery: () => trailingQueryRef.current, + }), + [tableName, columns, pageSize, trailingQueryKey] + ) const state = useSyncExternalStore( - storeRef.current.subscribe, - () => storeRef.current.getState(), + store.subscribe, + () => store.getState(), () => initialState as StoreState ) useEffect(() => { - // Recreate store if props change - if ( - storeRef.current.getState().hasInitialFetch && - (props.tableName !== props.tableName || - props.columns !== props.columns || - props.pageSize !== props.pageSize) - ) { - storeRef.current = createStore(props) - } - if (!state.hasInitialFetch && typeof window !== 'undefined') { - storeRef.current.initialize() + store.initialize() } - }, [props.tableName, props.columns, props.pageSize, state.hasInitialFetch]) + }, [state.hasInitialFetch, store]) return { data: state.data, @@ -208,7 +227,7 @@ function useInfiniteQuery< isFetching: state.isFetching, error: state.error, hasMore: state.count > state.data.length, - fetchNextPage: storeRef.current.fetchNextPage, + fetchNextPage: store.fetchNextPage, } } diff --git a/apps/www/pages/aup.mdx b/apps/www/pages/aup.mdx index b8d1a28fab1de..22a8f22d7f26e 100644 --- a/apps/www/pages/aup.mdx +++ b/apps/www/pages/aup.mdx @@ -10,7 +10,7 @@ export const meta = { # Acceptable Use Policy -_Last Modified: 25 February 2026_ +_Last Modified: 1 June 2026_ This Acceptable Use Policy (this "Policy") describes prohibited uses of the web services offered by Supabase, Inc. and its affiliates (the "Services") and the website located at https://supabase.com (the "Supabase Site"). By using the Services or accessing the Supabase Site, you agree to the latest version of this Policy. Violation of this Policy may result in the immediate suspension or termination of your Accounts and / or Services. @@ -21,7 +21,8 @@ By using the Services or accessing the Supabase Site, you agree to the latest ve **1.2. Illegal & Fraudulent Activities:** Any activity that violates applicable laws or regulations. This includes but is not limited to the dissemination of child sexual abuse material (CSAM), promoting fraudulent schemes (e.g., Ponzi or "make-money-fast" scams), and identity theft. **1.3. Infringing Content:** Content that infringes or misappropriates the intellectual property or proprietary rights of others, including wholesale copyright infringement (piracy) or hosting unauthorized streaming services. **1.4. Harmful Technology:** Viruses, malware, Trojan horses, or any technology intended to damage systems and/or surreptitiously intercept data. -**1.5. Obfuscation:** Using techniques to obfuscate code or application logic uploaded to the Supabase platform to hide malicious intent or bypass platform detection and security controls. +**1.5. Obfuscation:** Using techniques to obfuscate code or application logic uploaded to the Supabase platform to hide malicious intent or bypass platform detection and security controls. +**1.6. Privacy Violations, Doxxing, and Targeted Harassment:** You may not use the Services to publish, disclose, distribute, store, or facilitate the dissemination of another person's personal, confidential, or identifying information without an appropriate legal basis, authorization, or legitimate purpose. This includes using the Services to doxx, harass, intimidate, threaten, stalk, extort, facilitate abuse of, or otherwise target individuals. This provision does not prohibit lawful processing, publication, or distribution of information for legitimate purposes, including journalism, research, public-interest reporting, legal compliance, public records uses, or other activities protected by applicable law. ## 2. Artificial Intelligence and Content Manipulation diff --git a/e2e/studio/features/connect.spec.ts b/e2e/studio/features/connect.spec.ts index 0cb908f7740b7..50d8be1e8c977 100644 --- a/e2e/studio/features/connect.spec.ts +++ b/e2e/studio/features/connect.spec.ts @@ -43,7 +43,7 @@ test.describe('Connect', async () => { await expect(page.getByRole('heading', { level: 1 })).toBeVisible({ timeout: 30000 }) // Click the Connect button in the header - await page.getByRole('button', { name: 'Connect' }).click() + await page.getByRole('button', { name: 'Connect', exact: true }).click() // Verify the ConnectSheet opens await expect(page.getByRole('heading', { name: 'Connect to your project' })).toBeVisible({ @@ -58,9 +58,7 @@ test.describe('Connect', async () => { test.describe('Connect Sheet deep linking', async () => { test('pre-selects framework and variant from URL params', async ({ page, ref }) => { await page.goto( - toUrl( - `/project/${ref}?showConnect=true&connectTab=framework&framework=nextjs&using=pages` - ) + toUrl(`/project/${ref}?showConnect=true&connectTab=framework&framework=nextjs&using=pages`) ) await expect( @@ -125,9 +123,7 @@ test.describe('Connect Sheet deep linking', async () => { }) test('pre-selects direct connection method from URL params', async ({ page, ref }) => { - await page.goto( - toUrl(`/project/${ref}?showConnect=true&connectTab=direct&method=transaction`) - ) + await page.goto(toUrl(`/project/${ref}?showConnect=true&connectTab=direct&method=transaction`)) await expect( page.getByRole('heading', { name: 'Connect to your project' }), @@ -142,9 +138,7 @@ test.describe('Connect Sheet deep linking', async () => { test('closing the sheet clears all deep-link params from URL', async ({ page, ref }) => { await page.goto( - toUrl( - `/project/${ref}?showConnect=true&connectTab=framework&framework=nextjs&using=pages` - ) + toUrl(`/project/${ref}?showConnect=true&connectTab=framework&framework=nextjs&using=pages`) ) await expect( @@ -165,9 +159,7 @@ test.describe('Connect Sheet deep linking', async () => { }) test('changing mode clears previous mode params from URL', async ({ page, ref }) => { - await page.goto( - toUrl(`/project/${ref}?showConnect=true&connectTab=framework&framework=nextjs`) - ) + await page.goto(toUrl(`/project/${ref}?showConnect=true&connectTab=framework&framework=nextjs`)) await expect( page.getByRole('heading', { name: 'Connect to your project' }), diff --git a/packages/api-types/types/platform.d.ts b/packages/api-types/types/platform.d.ts index d67499e142fde..08ebaa05eb8f3 100644 --- a/packages/api-types/types/platform.d.ts +++ b/packages/api-types/types/platform.d.ts @@ -687,6 +687,23 @@ export interface paths { patch?: never trace?: never } + '/platform/integrations/partners/{ref}': { + parameters: { + query?: never + header?: never + path?: never + cookie?: never + } + /** Lists installed marketplace integrations for the given project. */ + get: operations['PartnerIntegrationsController_listIntegrations'] + put?: never + post?: never + delete?: never + options?: never + head?: never + patch?: never + trace?: never + } '/platform/integrations/partners/{ref}/{listing_slug}': { parameters: { query?: never @@ -694,7 +711,8 @@ export interface paths { path?: never cookie?: never } - get?: never + /** Gets the installation status of the given marketplace integration for the given project. */ + get: operations['PartnerIntegrationsController_getIntegration'] put?: never /** Creates a partner integration and returns the redirect URL */ post: operations['PartnerIntegrationsController_createIntegration'] @@ -988,6 +1006,23 @@ export interface paths { patch: operations['AuditLogDrainController_patchAuditLogDrain'] trace?: never } + '/platform/organizations/{slug}/analytics/audit-log-drains/{token}/test': { + parameters: { + query?: never + header?: never + path?: never + cookie?: never + } + get?: never + put?: never + /** Test an audit log drain connection */ + post: operations['AuditLogDrainController_testAuditLogDrain'] + delete?: never + options?: never + head?: never + patch?: never + trace?: never + } '/platform/organizations/{slug}/apps': { parameters: { query?: never @@ -2630,6 +2665,23 @@ export interface paths { patch: operations['LogDrainController_patchLogDrain'] trace?: never } + '/platform/projects/{ref}/analytics/log-drains/{token}/test': { + parameters: { + query?: never + header?: never + path?: never + cookie?: never + } + get?: never + put?: never + /** Test a log drain connection */ + post: operations['LogDrainController_testLogDrain'] + delete?: never + options?: never + head?: never + patch?: never + trace?: never + } '/platform/projects/{ref}/api-keys/temporary': { parameters: { query?: never @@ -2925,7 +2977,7 @@ export interface paths { /** Creates project's content folder */ post: operations['ContentFoldersController_createFolder'] /** Deletes project's content folders */ - delete: operations['ContentFoldersController_DeleteFolder'] + delete: operations['ContentFoldersController_deleteFolder'] options?: never head?: never patch?: never @@ -4519,6 +4571,26 @@ export interface paths { patch?: never trace?: never } + '/platform/support/verify-email': { + parameters: { + query?: never + header?: never + path?: never + cookie?: never + } + get?: never + put?: never + /** + * Verify a support conversation email + * @description Called by the Supabase dashboard when a user clicks their email verification link. Validates the token, checks org/project ownership, updates the Front conversation custom fields, and removes unverified tags. + */ + post: operations['VerifyEmailController_verifyEmail'] + delete?: never + options?: never + head?: never + patch?: never + trace?: never + } '/platform/telemetry/event': { parameters: { query?: never @@ -4881,6 +4953,10 @@ export interface components { title: string }[] } + BackendConnectionTest: { + 'connected?': boolean + reason: string + } BackupsResponse: { backups: { id: number @@ -5511,13 +5587,13 @@ export interface components { custom_supabase_internal_requests?: { ami: { /** - * @description Exact AWS instance type to provision (e.g. `t3.nano`, `t4g.nano`). When omitted the default for `desired_instance_size` is used. Only for internal use; rejected for user-facing requests in production. + * @description Exact AWS instance type to provision (e.g. `t3.nano`, `t4g.nano`). Hard pin — no ODCR fallback. Only for internal use; rejected for user-facing requests in production. * @enum {string} */ instance_type?: | 't4g.nano' - | 't3.nano' | 't3a.nano' + | 't3.nano' | 't4g.micro' | 't4g.small' | 't4g.medium' @@ -5537,6 +5613,11 @@ export interface components { | 'c8g.48xlarge' | 'r8g.48xlarge' | 'x8g.48xlarge' + /** + * @description Preferred architecture for WPP projects. Soft hint — the worker selects the cheapest region-available type for this arch and may cross to the other arch if no ODCR capacity is available. Cannot be set together with instance_type. Only for internal use. + * @enum {string} + */ + preferred_arch?: 'x86_64' | 'arm64' search_tags?: { [key: string]: string } @@ -8357,6 +8438,21 @@ export interface components { organization_id: number overdue_invoice_count: number } + PartnerIntegrationListResponse: { + integrations: { + listing_slug: string + partner_links?: { + dashboard?: string + manage?: string + } + /** @enum {string} */ + status: 'installing' | 'ready' | 'error' + user_alert?: { + message: string + } + version?: string + }[] + } PartnerIntegrationsResponse: { /** * Format: uri @@ -8364,6 +8460,21 @@ export interface components { */ redirectUrl: string } + PartnerIntegrationStatusResponse: { + install_state?: { + partner_links?: { + dashboard?: string + manage?: string + } + /** @enum {string} */ + status: 'installing' | 'ready' | 'error' + user_alert?: { + message: string + } + version?: string + } + installed: boolean + } PauseStatusResponse: { can_restore: boolean last_paused_on: string | null @@ -12134,6 +12245,13 @@ export interface components { VercelRedirectResponse: { url: string } + VerifyEmailBody: { + token: string + } + VerifyEmailResponse: { + /** @enum {string} */ + result: 'success' + } WorkflowRunResponse: { branch_id: string check_run_id: number | null @@ -14071,6 +14189,108 @@ export interface operations { } } } + PartnerIntegrationsController_listIntegrations: { + parameters: { + query?: never + header?: never + path: { + /** @description Project ref */ + ref: string + } + cookie?: never + } + requestBody?: never + responses: { + 200: { + headers: { + [name: string]: unknown + } + content: { + 'application/json': components['schemas']['PartnerIntegrationListResponse'] + } + } + /** @description Unauthorized */ + 401: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Forbidden action */ + 403: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Project not found */ + 404: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Rate limit exceeded */ + 429: { + headers: { + [name: string]: unknown + } + content?: never + } + } + } + PartnerIntegrationsController_getIntegration: { + parameters: { + query?: never + header?: never + path: { + /** @description The slug of the listing in the marketplace database */ + listing_slug: string + /** @description Supabase project ref */ + ref: string + } + cookie?: never + } + requestBody?: never + responses: { + 200: { + headers: { + [name: string]: unknown + } + content: { + 'application/json': components['schemas']['PartnerIntegrationStatusResponse'] + } + } + /** @description Unauthorized */ + 401: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Forbidden action */ + 403: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Project not found */ + 404: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Rate limit exceeded */ + 429: { + headers: { + [name: string]: unknown + } + content?: never + } + } + } PartnerIntegrationsController_createIntegration: { parameters: { query?: never @@ -15052,6 +15272,58 @@ export interface operations { } } } + AuditLogDrainController_testAuditLogDrain: { + parameters: { + query?: never + header?: never + path: { + /** @description Organization slug */ + slug: string + /** @description Audit log drain identifier */ + token: string + } + cookie?: never + } + requestBody?: never + responses: { + 200: { + headers: { + [name: string]: unknown + } + content: { + 'application/json': components['schemas']['BackendConnectionTest'] + } + } + /** @description Unauthorized */ + 401: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Forbidden action */ + 403: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Rate limit exceeded */ + 429: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Failed to test audit log drain */ + 500: { + headers: { + [name: string]: unknown + } + content?: never + } + } + } PlatformAppsController_listPlatformApps: { parameters: { query?: never @@ -21159,6 +21431,58 @@ export interface operations { } } } + LogDrainController_testLogDrain: { + parameters: { + query?: never + header?: never + path: { + /** @description Project ref */ + ref: string + /** @description Log drains identifier */ + token: string + } + cookie?: never + } + requestBody?: never + responses: { + 200: { + headers: { + [name: string]: unknown + } + content: { + 'application/json': components['schemas']['BackendConnectionTest'] + } + } + /** @description Unauthorized */ + 401: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Forbidden action */ + 403: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Rate limit exceeded */ + 429: { + headers: { + [name: string]: unknown + } + content?: never + } + /** @description Failed to test log drain */ + 500: { + headers: { + [name: string]: unknown + } + content?: never + } + } + } ApiKeysController_createTemporaryApiKey: { parameters: { query: { @@ -22468,7 +22792,7 @@ export interface operations { } } } - ContentFoldersController_DeleteFolder: { + ContentFoldersController_deleteFolder: { parameters: { query: { ids: string @@ -28390,6 +28714,30 @@ export interface operations { } } } + VerifyEmailController_verifyEmail: { + parameters: { + query?: never + header?: never + path?: never + cookie?: never + } + requestBody: { + content: { + 'application/json': components['schemas']['VerifyEmailBody'] + } + } + responses: { + /** @description Verification successful */ + 200: { + headers: { + [name: string]: unknown + } + content: { + 'application/json': components['schemas']['VerifyEmailResponse'] + } + } + } + } TelemetryEventController_sendServerEventV2: { parameters: { query?: never diff --git a/packages/common/constants/local-storage.ts b/packages/common/constants/local-storage.ts index 5deaa36a0963e..52c6e93fffeed 100644 --- a/packages/common/constants/local-storage.ts +++ b/packages/common/constants/local-storage.ts @@ -71,7 +71,7 @@ export const LOCAL_STORAGE_KEYS = { // Notice banner keys API_KEYS_FEEDBACK_DISMISSED: (ref: string) => `supabase-api-keys-feedback-dismissed-${ref}`, TERMS_OF_SERVICE_UPDATE: 'terms-of-service-update-2026-06-06', - SUPAVISOR_MAINTENANCE: (ref: string) => `supavisor-maintenance-2026-05-21-${ref}`, + SUPAVISOR_MAINTENANCE: (ref: string) => `supavisor-maintenance-2026-06-09-${ref}`, REPORT_DATERANGE: 'supabase-report-daterange', PROJECT_PAUSING_STARTED_AT: (ref: string) => `supabase-project-pausing-started-at-${ref}`, PROJECT_RESTORING_STARTED_AT: (ref: string) => `supabase-project-restoring-started-at-${ref}`, diff --git a/packages/common/marketplace.types.ts b/packages/common/marketplace.types.ts index bd7441796dfa7..6b459ba685a1c 100644 --- a/packages/common/marketplace.types.ts +++ b/packages/common/marketplace.types.ts @@ -41,12 +41,15 @@ export type Database = { installation_identification_method: | 'secret_key_prefix' | 'edge_function_secret_name' + | 'integration_status' + | 'oauth_authorization' | null installation_url: string | null installation_url_type: 'get' | 'post' | null listing_logo: string | null listing_tsv: unknown marketplace_url: string | null + oauth_client_id: string | null partner_logo: string | null partner_name: string | null partner_slug: string | null @@ -96,6 +99,20 @@ export type Database = { } Relationships: [] } + project_integration_status: { + Row: { + created_at: string | null + integration_id: string | null + listing_slug: string | null + partner_links: Json | null + project_ref: string | null + status: 'installing' | 'ready' | 'error' | null + updated_at: string | null + user_alert: Json | null + version: string | null + } + Relationships: [] + } } Functions: { get_redirect_url: { diff --git a/packages/ui/package.json b/packages/ui/package.json index 85a78d826b973..43f2ac880e048 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -43,8 +43,10 @@ "vaul": "^1.1.2" }, "devDependencies": { + "@hookform/resolvers": "^3.1.1", "@testing-library/jest-dom": "^6.6.0", "@testing-library/react": "^16.0.0", + "@testing-library/user-event": "^14.0.0", "@types/lodash": "4.17.5", "@types/node": "catalog:", "@types/react": "catalog:", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 01ab841096efd..cfb0d12dd474a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,20 +10,20 @@ catalogs: specifier: ^10.26.0 version: 10.27.0 '@supabase/auth-js': - specifier: 2.106.2 - version: 2.106.2 + specifier: 2.107.0 + version: 2.107.0 '@supabase/postgrest-js': - specifier: 2.106.2 - version: 2.106.2 + specifier: 2.107.0 + version: 2.107.0 '@supabase/realtime-js': - specifier: 2.106.2 - version: 2.106.2 + specifier: 2.107.0 + version: 2.107.0 '@supabase/ssr': specifier: 0.10.2 version: 0.10.2 '@supabase/supabase-js': - specifier: 2.106.2 - version: 2.106.2 + specifier: 2.107.0 + version: 2.107.0 '@types/node': specifier: ^22.0.0 version: 22.13.14 @@ -355,7 +355,7 @@ importers: version: 10.27.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.18(@babel/core@7.29.0(supports-color@8.1.1))(@opentelemetry/api@1.9.0)(@playwright/test@1.59.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(react@19.2.6)(supports-color@8.1.1)(webpack@5.105.4(esbuild@0.25.2)) '@supabase/supabase-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@tanstack/react-query': specifier: ^5.13.4 version: 5.83.0(react@19.2.6) @@ -940,7 +940,7 @@ importers: version: 9.1.0 '@supabase/auth-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@supabase/mcp-server-supabase': specifier: ^0.7.0 version: 0.7.0(@modelcontextprotocol/sdk@1.29.0(supports-color@8.1.1)(zod@3.25.76))(zod@3.25.76) @@ -949,7 +949,7 @@ importers: version: link:../../packages/pg-meta '@supabase/realtime-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@supabase/shared-types': specifier: 0.1.88 version: 0.1.88 @@ -958,7 +958,7 @@ importers: version: 0.1.6(encoding@0.1.13)(supports-color@8.1.1) '@supabase/supabase-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@tanstack/react-hotkeys': specifier: ^0.9.1 version: 0.9.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -1382,7 +1382,7 @@ importers: version: 0.1.0 '@supabase/postgrest-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@supabase/supa-mdx-lint': specifier: 0.2.6-alpha version: 0.2.6-alpha @@ -1527,10 +1527,10 @@ importers: version: 1.6.0 '@supabase/ssr': specifier: 'catalog:' - version: 0.10.2(@supabase/supabase-js@2.106.2) + version: 0.10.2(@supabase/supabase-js@2.107.0) '@supabase/supabase-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@tanstack/react-router': specifier: ^1.168.0 version: 1.168.18(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -1641,10 +1641,10 @@ importers: version: 10.27.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.18(@babel/core@7.29.0(supports-color@8.1.1))(@opentelemetry/api@1.9.0)(@playwright/test@1.59.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(react@19.2.6)(supports-color@8.1.1)(webpack@5.105.4(esbuild@0.25.2)) '@supabase/ssr': specifier: 'catalog:' - version: 0.10.2(@supabase/supabase-js@2.106.2) + version: 0.10.2(@supabase/supabase-js@2.107.0) '@supabase/supabase-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@vercel/og': specifier: ^0.6.2 version: 0.6.2 @@ -1897,13 +1897,13 @@ importers: dependencies: '@supabase/postgrest-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@supabase/ssr': specifier: 'catalog:' - version: 0.10.2(@supabase/supabase-js@2.106.2) + version: 0.10.2(@supabase/supabase-js@2.107.0) '@supabase/supabase-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@vueuse/core': specifier: ^14.1.0 version: 14.1.0(vue@3.5.30(typescript@6.0.2)) @@ -1949,7 +1949,7 @@ importers: version: 1.59.1 '@supabase/supabase-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 cross-fetch: specifier: ^4.1.0 version: 4.1.0(encoding@0.1.13) @@ -1977,7 +1977,7 @@ importers: version: 0.18.5 '@supabase/supabase-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 ai: specifier: 5.0.52 version: 5.0.52(zod@3.25.76) @@ -2068,10 +2068,10 @@ importers: dependencies: '@supabase/auth-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@supabase/supabase-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@types/dat.gui': specifier: ^0.7.12 version: 0.7.12 @@ -2454,12 +2454,18 @@ importers: specifier: ^1.1.2 version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) devDependencies: + '@hookform/resolvers': + specifier: ^3.1.1 + version: 3.3.1(react-hook-form@7.72.1(react@19.2.6)) '@testing-library/jest-dom': specifier: ^6.6.0 version: 6.6.3 '@testing-library/react': specifier: ^16.0.0 version: 16.0.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@testing-library/user-event': + specifier: ^14.0.0 + version: 14.6.1(@testing-library/dom@10.4.1) '@types/lodash': specifier: 4.17.5 version: 4.17.5 @@ -2513,7 +2519,7 @@ importers: version: 0.1.6(encoding@0.1.13)(supports-color@8.1.1) '@supabase/supabase-js': specifier: 'catalog:' - version: 2.106.2 + version: 2.107.0 '@tanstack/react-table': specifier: ^8.21.3 version: 8.21.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6) @@ -7623,12 +7629,12 @@ packages: '@supabase-labs/y-supabase@0.1.0': resolution: {integrity: sha512-1ItaKbcImgy7ueYfJcyVYihqCKi9RAee9MKBV8wcCqSMNsrWvw4ibhW8ai91kWsewsiWzIDXVPONgcUcxagk9g==} - '@supabase/auth-js@2.106.2': - resolution: {integrity: sha512-VcAjUErkHkhC5Jaf+g/G1qbkQrFh8edaCdHa7pxJmHUjkWKjT7UnYCtPA89XV0N0GIYRkEqJZw5V62CtOxTmBQ==} + '@supabase/auth-js@2.107.0': + resolution: {integrity: sha512-XA7x+WIeIvuC3GTZ2ey67QcBbGw4n+o5B7M+dMm9KT1lL3wX1B52DfEWW00WuPt/LnniJLLIn1WIm9YPtuxzKQ==} engines: {node: '>=20.0.0'} - '@supabase/functions-js@2.106.2': - resolution: {integrity: sha512-oRnr0QrL8H+zTO1YyQ1QjiHZU/957jvubbxSJTUm2XLAgzoGGV9Tahfyd+uvLsBLRVmXLtpU3oyCjdQIvkGMOA==} + '@supabase/functions-js@2.107.0': + resolution: {integrity: sha512-iMtRUmEj1KOgQd/a3MR4hnBlPnZc62DW8+z8aPpnzbxWkexEZUVL2fSgvvp15gqFg1V55e2yMGqgK+yhSQxp5w==} engines: {node: '>=20.0.0'} '@supabase/mcp-server-supabase@0.7.0': @@ -7647,12 +7653,12 @@ packages: '@supabase/phoenix@0.4.2': resolution: {integrity: sha512-YSAGnmDAfuleFCVt3CeurQZAhxRfXWeZIIkwp7NhYzQ1UwW6ePSnzsFAiUm/mbCkfoCf70QQHKW/K6RKh52a4A==} - '@supabase/postgrest-js@2.106.2': - resolution: {integrity: sha512-tDOzyPgp9pIRMR2x6C9+uDSJrnXSzxLtt3d7nC+Lrsy3jnJDHYfdQC/xcRyhJE/TOBJ0heSqRKR3UmejDjZxsw==} + '@supabase/postgrest-js@2.107.0': + resolution: {integrity: sha512-7ARs47/tyIjX7T0Ive20d4NY8zQYXsP5/P07jJWxffSIM2gpnSnGRnL/Fe15GPbdjsW2sTYeckHcyaoKbM6yWQ==} engines: {node: '>=20.0.0'} - '@supabase/realtime-js@2.106.2': - resolution: {integrity: sha512-LdRGT7DNhyZkPjubUv5bSdAZ0jSEX8wTHvx7htj7+K59TOZRvz4TuQK7tL2RWxyIZVeFMRluL04SzWS61rKnUA==} + '@supabase/realtime-js@2.107.0': + resolution: {integrity: sha512-cF2KYdR3JIn9YlWGeluY9S0G+otqTdL6hB8GzpatlEIY6fZudCcyFo6Dc3+X9tjeb+x9XcIyNAk9qhNAknjH1A==} engines: {node: '>=20.0.0'} '@supabase/shared-types@0.1.88': @@ -7666,8 +7672,8 @@ packages: peerDependencies: '@supabase/supabase-js': ^2.102.1 - '@supabase/storage-js@2.106.2': - resolution: {integrity: sha512-xgKCSYuev1YarV+iVqr+zlfgSyremnJtn8T0NCT8L4XmMv1CLtESc0Q6kNp8+mKWdX/8ND0nzm7OMKx08kwNAw==} + '@supabase/storage-js@2.107.0': + resolution: {integrity: sha512-/X8OOVwKBn8aVKuHAGOz2yLA0d2OauqhVuy4mNtN+o7wttHOgx1/j+pqOzlsjmhOHrYykF6AJNZhs3gKZzcMUw==} engines: {node: '>=20.0.0'} '@supabase/supa-mdx-lint-darwin@0.2.6-alpha': @@ -7805,8 +7811,8 @@ packages: resolution: {integrity: sha512-iqJHDk/ToyxFMa/um9A5gsp9jYN7iI0cIabNq9nyBpK/Yat/J9I2IIMueQwIMy3TsG6a2qdPyUkZkuPC37SdRg==} hasBin: true - '@supabase/supabase-js@2.106.2': - resolution: {integrity: sha512-2/RZ/1fmJx/MRSEDG2Xk8+J4JVk5clM9V0uSI6kUTrcS32KA89DtqI5RUOC9r6mzY3WBC9qexLjssIHjbLyVJA==} + '@supabase/supabase-js@2.107.0': + resolution: {integrity: sha512-ChKzdlWVweMUUhr0U79JhMmgm1haS/C5JquaiCDr70JaGARRtjjoY9rkIheXWybXxTSNzRiQs3Sk8IAg1HS3ZA==} engines: {node: '>=20.0.0'} '@swc/helpers@0.5.15': @@ -23809,15 +23815,15 @@ snapshots: '@supabase-labs/y-supabase@0.1.0': dependencies: - '@supabase/supabase-js': 2.106.2 + '@supabase/supabase-js': 2.107.0 y-protocols: 1.0.7(yjs@13.6.29) yjs: 13.6.29 - '@supabase/auth-js@2.106.2': + '@supabase/auth-js@2.107.0': dependencies: tslib: 2.8.1 - '@supabase/functions-js@2.106.2': + '@supabase/functions-js@2.107.0': dependencies: tslib: 2.8.1 @@ -23839,11 +23845,11 @@ snapshots: '@supabase/phoenix@0.4.2': {} - '@supabase/postgrest-js@2.106.2': + '@supabase/postgrest-js@2.107.0': dependencies: tslib: 2.8.1 - '@supabase/realtime-js@2.106.2': + '@supabase/realtime-js@2.107.0': dependencies: '@supabase/phoenix': 0.4.2 tslib: 2.8.1 @@ -23859,12 +23865,12 @@ snapshots: - encoding - supports-color - '@supabase/ssr@0.10.2(@supabase/supabase-js@2.106.2)': + '@supabase/ssr@0.10.2(@supabase/supabase-js@2.107.0)': dependencies: - '@supabase/supabase-js': 2.106.2 + '@supabase/supabase-js': 2.107.0 cookie: 1.0.2 - '@supabase/storage-js@2.106.2': + '@supabase/storage-js@2.107.0': dependencies: iceberg-js: 0.8.1 tslib: 2.8.1 @@ -23965,13 +23971,13 @@ snapshots: '@supabase/supa-mdx-lint-win32-x64': 0.3.2 node-pty: 1.0.0 - '@supabase/supabase-js@2.106.2': + '@supabase/supabase-js@2.107.0': dependencies: - '@supabase/auth-js': 2.106.2 - '@supabase/functions-js': 2.106.2 - '@supabase/postgrest-js': 2.106.2 - '@supabase/realtime-js': 2.106.2 - '@supabase/storage-js': 2.106.2 + '@supabase/auth-js': 2.107.0 + '@supabase/functions-js': 2.107.0 + '@supabase/postgrest-js': 2.107.0 + '@supabase/realtime-js': 2.107.0 + '@supabase/storage-js': 2.107.0 '@swc/helpers@0.5.15': dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 0b2b35a81133c..1f0a69f906502 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -8,11 +8,11 @@ blockExoticSubdeps: true catalog: '@sentry/nextjs': ^10.26.0 - '@supabase/auth-js': 2.106.2 - '@supabase/postgrest-js': 2.106.2 - '@supabase/realtime-js': 2.106.2 + '@supabase/auth-js': 2.107.0 + '@supabase/postgrest-js': 2.107.0 + '@supabase/realtime-js': 2.107.0 '@supabase/ssr': 0.10.2 - '@supabase/supabase-js': 2.106.2 + '@supabase/supabase-js': 2.107.0 '@types/node': ^22.0.0 '@types/react': ^19.2.14 '@types/react-dom': ^19.2.3